List of videos

Query parameters

q - Free search query.

page_size - How many items per page. If set to 0 it will list all items. Default is 50 items.

ordering - Order results by specified field. Prepend a minus for descending order. I.e. ?ordering=-id.

creator__email - the email of the video's creator

framerate - the framerate in hz * 1000

has_tono_records - if the tono flag is set (true/false)

is_filler - if this is a filler video (true/false)

name - the exact name/title of the video

name__icontains - substring is part of name/title of the video

organization - Frikanalen ID of organization behind video

played_count_web - the number of times this video was played on the web

played_count_web__gt - greater than

played_count_web__gte - greater than or equal

played_count_web__lt - less than

played_count_web__lte - less than or equal

publish_on_web - if this video is published ont the web (true/false)

proper_import - if the uploaded video was properly imported (true/false)

ref_url - the exact reference url

ref_url__startswith - the reference url start with this string

ref_url__icontains - the reference url contain this string

GET /api/videos/?format=api&offset=1300&ordering=has_tono_records
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 3454,
    "next": "https://forrige.frikanalen.no/api/videos/?format=api&limit=50&offset=1350&ordering=has_tono_records",
    "previous": "https://forrige.frikanalen.no/api/videos/?format=api&limit=50&offset=1250&ordering=has_tono_records",
    "results": [
        {
            "id": 625453,
            "name": "Eckankar: God is Love",
            "header": "God is Love",
            "description": "",
            "files": {
                "theora": "https://upload.frikanalen.no/media/625453/theora/God_Is_Love.ogv",
                "largeThumb": "https://upload.frikanalen.no/media/625453/large_thumb/God_Is_Love.jpg",
                "smallThumb": "https://upload.frikanalen.no/media/625453/small_thumb/God_Is_Love.jpg",
                "broadcast": "https://upload.frikanalen.no/media/625453/broadcast/God_Is_Love.avi"
            },
            "creator": "info@eckankar.no",
            "organization": {
                "id": 131,
                "name": "ECKANKAR Norge",
                "homepage": null,
                "description": "",
                "postalAddress": "",
                "streetAddress": "",
                "editorId": 2094,
                "editorName": "Kjell Aarhus",
                "editorEmail": "info@eckankar.no",
                "editorMsisdn": "",
                "fkmember": false
            },
            "duration": "00:29:03",
            "categories": [
                "Religion og livssyn"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": false,
            "isFiller": false,
            "refUrl": "",
            "createdTime": "2015-09-14T20:05:10Z",
            "updatedTime": "2020-09-15T21:54:51.551375Z",
            "uploadedTime": "2015-09-14T20:05:12Z",
            "ogvUrl": "https://upload.frikanalen.no/media/625453/theora/God_Is_Love.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/625453/large_thumb/God_Is_Love.jpg"
        },
        {
            "id": 627984,
            "name": "Appell for Libanon",
            "header": "",
            "description": "",
            "files": {
                "theora": "https://upload.frikanalen.no/media/627984/theora/Apell for Libanon..ogv",
                "broadcast": "https://upload.frikanalen.no/media/627984/broadcast/Apell for Libanon..dv",
                "largeThumb": "https://upload.frikanalen.no/media/627984/large_thumb/Apell for Libanon..jpg",
                "original": "https://upload.frikanalen.no/media/627984/original/Apell for Libanon..mp4"
            },
            "creator": "linstad@urtehagen.com",
            "organization": {
                "id": 137,
                "name": "Trond Ali Linstad",
                "homepage": null,
                "description": "",
                "postalAddress": "0187 Oslo",
                "streetAddress": "Norbygata 13",
                "editorId": 2216,
                "editorName": "Trond Ali Linstad",
                "editorEmail": "linstad@urtehagen.com",
                "editorMsisdn": "+47 406 16 181",
                "fkmember": true
            },
            "duration": "00:08:08.240000",
            "categories": [
                "Samfunn og politikk"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": false,
            "refUrl": "",
            "createdTime": "2024-11-25T14:38:21.862209Z",
            "updatedTime": "2024-11-25T14:44:07.898998Z",
            "uploadedTime": "2024-11-25T14:39:32.523365Z",
            "ogvUrl": "https://upload.frikanalen.no/media/627984/theora/Apell for Libanon..ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/627984/large_thumb/Apell for Libanon..jpg"
        },
        {
            "id": 625685,
            "name": "It's not LAMP: Web app packaging in Sandstorm - Debconf 16",
            "header": "This talk covers how web app packaging works for the free software [Sandstorm.io](https://sandstorm.io/) project. This talk covers how Sandstorm achieves one-click installs of web apps for unprivileged users. To do this, Sandstorm's packaging tools do a few strange things:\n\n- Every app package is a tiny Debian derivative, often as small as 20MB.\n\n- Apps have no Internet connectivity to the outside world.\n\n- Sandstorm uses a FUSE filesystem to identify which files are needed to run the app.\n\n- An app bundles all its needed services, as well as files, resulting in one MySQL service per app.\n\n- Users click and run one _instance_ of an app like Etherpad per document, which is all handled transparently via a web app, a strategy that has neutralized 95% of 0-day web app vulnerabilities, based on our analysis.\n\n- Developers on Mac OS and Windows can create packages for Sandstorm, even though Sandstorm is Linux-only, due to an emphasis on Linux VMs in our development tools.\n\nSomehow we manage to make this scale reasonably well. Additionally, it is popular with upstream authors: of the >50 web apps packaged for Sandstorm, about 1/3 are maintained by their upstreams.\n\nThis talk focuses on how the Sandstorm packaging tools work, with community insights as well as technical ones, with the hopes of showing Debian how to more effectively package web apps for end users.\n\nTalk (45 mins) session with Asheesh Laroia and Sandstorm.io during Debconf 16",
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/625685/theora/Its_not_LAMP_Web_app_packaging_in_Sandstorm.ogv",
                "broadcast": "https://upload.frikanalen.no/media/625685/broadcast/Its_not_LAMP_Web_app_packaging_in_Sandstorm.dv",
                "largeThumb": "https://upload.frikanalen.no/media/625685/large_thumb/Its_not_LAMP_Web_app_packaging_in_Sandstorm.jpg",
                "smallThumb": "https://upload.frikanalen.no/media/625685/small_thumb/Its_not_LAMP_Web_app_packaging_in_Sandstorm.jpg",
                "original": "https://upload.frikanalen.no/media/625685/original/Its_not_LAMP_Web_app_packaging_in_Sandstorm.webm"
            },
            "creator": "pere@hungry.com",
            "organization": {
                "id": 82,
                "name": "NUUG",
                "homepage": "https://www.nuug.no/",
                "description": "Forening NUUG er for alle som er interessert i fri programvare, åpne standarder og Unix-lignende operativsystemer.",
                "postalAddress": "Norwegian Unix User Group\r\nCSS Mailboks 70, Middelthunsgate 25\r\n0368 OSLO",
                "streetAddress": "",
                "editorId": 2240,
                "editorName": "Peter M. M. Hansteen",
                "editorEmail": "peter@bsdly.net",
                "editorMsisdn": "",
                "fkmember": true
            },
            "duration": "00:47:22.140000",
            "categories": [
                "Samfunn og politikk"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": true,
            "refUrl": "https://debconf16.debconf.org/talks/85/",
            "createdTime": "2016-07-20T22:38:31.483593Z",
            "updatedTime": "2018-11-10T18:29:26.870457Z",
            "uploadedTime": "2016-07-20T22:38:39.344198Z",
            "ogvUrl": "https://upload.frikanalen.no/media/625685/theora/Its_not_LAMP_Web_app_packaging_in_Sandstorm.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/625685/large_thumb/Its_not_LAMP_Web_app_packaging_in_Sandstorm.jpg"
        },
        {
            "id": 625927,
            "name": "An introduction to Freifunk",
            "header": "Starting with the history of Freifunk, Andreas will give an overview on Freifunk's goals and vision. It is also a history about their devices and the software they use for that. Another topic will be their social and political impact in Germany and the EU. He will also talk about how Freifunk organizes with more than 400 local communities. There will be enough time and room for questions, as well.\r\n\r\nAndreas Bräu studied computer science in the early 2000s and now works as a software developer in Berlin. Freifunk came to his life in 2006. Since then he did a lot, i.e. some firmware development, creating web sites, organizing community meetings.\r\n\r\nNUUG talk from 2017-09-12.",
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/625927/theora/20170912-freifunk-frikanalen.ogv",
                "smallThumb": "https://upload.frikanalen.no/media/625927/small_thumb/20170912-freifunk-frikanalen.jpg",
                "broadcast": "https://upload.frikanalen.no/media/625927/broadcast/20170912-freifunk-frikanalen.dv",
                "largeThumb": "https://upload.frikanalen.no/media/625927/large_thumb/20170912-freifunk-frikanalen.jpg"
            },
            "creator": "pere@hungry.com",
            "organization": {
                "id": 82,
                "name": "NUUG",
                "homepage": "https://www.nuug.no/",
                "description": "Forening NUUG er for alle som er interessert i fri programvare, åpne standarder og Unix-lignende operativsystemer.",
                "postalAddress": "Norwegian Unix User Group\r\nCSS Mailboks 70, Middelthunsgate 25\r\n0368 OSLO",
                "streetAddress": "",
                "editorId": 2240,
                "editorName": "Peter M. M. Hansteen",
                "editorEmail": "peter@bsdly.net",
                "editorMsisdn": "",
                "fkmember": true
            },
            "duration": "01:37:10.120000",
            "categories": [
                "Samfunn og politikk"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": true,
            "refUrl": "https://www.nuug.no/aktiviteter/20170912-freifunk/",
            "createdTime": "2017-10-09T11:16:08.356387Z",
            "updatedTime": "2018-11-10T18:29:26.563427Z",
            "uploadedTime": "2017-10-09T11:18:53.978862Z",
            "ogvUrl": "https://upload.frikanalen.no/media/625927/theora/20170912-freifunk-frikanalen.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/625927/large_thumb/20170912-freifunk-frikanalen.jpg"
        },
        {
            "id": 624300,
            "name": "Kritisk til hemmeligholdelse",
            "header": "Men Arne Treholt står fast ved at han aldri har gitt bort opplysninger som har kunnet skade rikets sikkerhet.",
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/624300/theora/5331_ac7797738f0744688fe9c642eb2df4ca.ogv",
                "original": "https://upload.frikanalen.no/media/624300/original/orig_51d2500e1c384ba9a0e10963e199ece0.mov",
                "smallThumb": "https://upload.frikanalen.no/media/624300/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/624300/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/624300/broadcast/5331_7c4b0619f7b74dfb822ff4a60d70d2ee.avi",
                "largeThumb": "https://upload.frikanalen.no/media/624300/large_thumb/large.jpg"
            },
            "creator": "ingrid.solem@stv.no",
            "organization": {
                "id": 19,
                "name": "Student TV Trondheim",
                "homepage": null,
                "description": "",
                "postalAddress": null,
                "streetAddress": null,
                "editorId": null,
                "editorName": "Ingen redaktør!",
                "editorEmail": null,
                "editorMsisdn": null,
                "fkmember": false
            },
            "duration": "00:03:43.840000",
            "categories": [
                "Samfunn og politikk"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": true,
            "refUrl": "",
            "createdTime": "2011-02-14T14:48:43.620000Z",
            "updatedTime": "2018-11-10T18:29:28.697673Z",
            "uploadedTime": "2011-02-14T14:48:43.620000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/624300/theora/5331_ac7797738f0744688fe9c642eb2df4ca.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/624300/large_thumb/large.jpg"
        },
        {
            "id": 625072,
            "name": "AR6332 Arena",
            "header": "Wenche Olsen - Stortings repr.\nTrond Eriksen - daglig leder i ES\nKnut Harald Hareide - Leder KrF\nRoald Strand - Ernæringspesialist",
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/625072/theora/orig_4fb453383f5a4892b4d53672a05bf83e.ogv",
                "original": "https://upload.frikanalen.no/media/625072/original/orig_4fb453383f5a4892b4d53672a05bf83e.mpg",
                "smallThumb": "https://upload.frikanalen.no/media/625072/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/625072/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/625072/broadcast/6575_09591f6fb9c944b68396cbf40ac0aa08.avi",
                "largeThumb": "https://upload.frikanalen.no/media/625072/large_thumb/large.jpg"
            },
            "creator": "bjorn.gjellum@estv.no",
            "organization": {
                "id": 36,
                "name": "Evangeliesenteret",
                "homepage": null,
                "description": "",
                "postalAddress": null,
                "streetAddress": null,
                "editorId": null,
                "editorName": "Ingen redaktør!",
                "editorEmail": null,
                "editorMsisdn": null,
                "fkmember": false
            },
            "duration": "00:24:10",
            "categories": [
                "Samfunn og politikk"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": true,
            "refUrl": "",
            "createdTime": "2012-11-19T13:53:20.733000Z",
            "updatedTime": "2018-11-10T18:29:27.692558Z",
            "uploadedTime": "2012-11-19T13:53:20.733000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/625072/theora/orig_4fb453383f5a4892b4d53672a05bf83e.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/625072/large_thumb/large.jpg"
        },
        {
            "id": 625071,
            "name": "New Life - Program 08 2012",
            "header": null,
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/625071/theora/6522_6ff3035d42da48ebb4b974ae39d7e44a.ogv",
                "smallThumb": "https://upload.frikanalen.no/media/625071/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/625071/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/625071/broadcast/6522_6ff3035d42da48ebb4b974ae39d7e44a.avi",
                "largeThumb": "https://upload.frikanalen.no/media/625071/large_thumb/large.jpg"
            },
            "creator": "gunnar@newlife.no",
            "organization": {
                "id": 81,
                "name": "New Life Mission",
                "homepage": null,
                "description": "",
                "postalAddress": null,
                "streetAddress": null,
                "editorId": 1187,
                "editorName": "Gunnar Enok Nilsen",
                "editorEmail": "gunnar@newlife.no",
                "editorMsisdn": "",
                "fkmember": false
            },
            "duration": "00:23:30.800000",
            "categories": [
                "Religion og livssyn"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": false,
            "refUrl": "",
            "createdTime": "2012-10-26T14:28:34.763000Z",
            "updatedTime": "2018-11-10T18:29:27.693905Z",
            "uploadedTime": "2012-10-26T14:28:34.763000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/625071/theora/6522_6ff3035d42da48ebb4b974ae39d7e44a.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/625071/large_thumb/large.jpg"
        },
        {
            "id": 624296,
            "name": "07_11 Østfoldkirken",
            "header": null,
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/624296/theora/5276_d22f4f36b0c842c28aba57258c024c88.ogv",
                "original": "https://upload.frikanalen.no/media/624296/original/orig_109090c28e5d4d81905fb995e9342e03.mpg",
                "smallThumb": "https://upload.frikanalen.no/media/624296/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/624296/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/624296/broadcast/5276_1796a37096ab48fe9fffe0ef0513551f.avi",
                "largeThumb": "https://upload.frikanalen.no/media/624296/large_thumb/large.jpg"
            },
            "creator": "post@lundeandersen.com",
            "organization": {
                "id": 51,
                "name": "Østfoldkirken",
                "homepage": null,
                "description": "",
                "postalAddress": null,
                "streetAddress": null,
                "editorId": 1437,
                "editorName": "Thomas Andersen",
                "editorEmail": "post@lundeandersen.com",
                "editorMsisdn": "",
                "fkmember": false
            },
            "duration": "00:28:48",
            "categories": [
                "Religion og livssyn"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": false,
            "refUrl": "http://www.la-media.no",
            "createdTime": "2011-02-04T13:35:39.667000Z",
            "updatedTime": "2018-11-10T18:29:28.703150Z",
            "uploadedTime": "2011-02-04T13:35:39.667000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/624296/theora/5276_d22f4f36b0c842c28aba57258c024c88.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/624296/large_thumb/large.jpg"
        },
        {
            "id": 624295,
            "name": "Akkurat Nå! 20. februar",
            "header": null,
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/624295/theora/5344_2885183853784b74817b4626e9b3eca7.ogv",
                "original": "https://upload.frikanalen.no/media/624295/original/orig_1bfca47d7163420ba6128714c1a38548.avi",
                "smallThumb": "https://upload.frikanalen.no/media/624295/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/624295/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/624295/broadcast/5344_1b33e50222d54556a704fef044c98751.avi",
                "largeThumb": "https://upload.frikanalen.no/media/624295/large_thumb/large.jpg"
            },
            "creator": "bjorn.gjellum@estv.no",
            "organization": {
                "id": 36,
                "name": "Evangeliesenteret",
                "homepage": null,
                "description": "",
                "postalAddress": null,
                "streetAddress": null,
                "editorId": null,
                "editorName": "Ingen redaktør!",
                "editorEmail": null,
                "editorMsisdn": null,
                "fkmember": false
            },
            "duration": "00:50:11.080000",
            "categories": [
                "Samfunn og politikk"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": true,
            "refUrl": "",
            "createdTime": "2011-02-17T07:15:09.697000Z",
            "updatedTime": "2018-11-10T18:29:28.704524Z",
            "uploadedTime": "2011-02-17T07:15:09.697000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/624295/theora/5344_2885183853784b74817b4626e9b3eca7.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/624295/large_thumb/large.jpg"
        },
        {
            "id": 625667,
            "name": "Daily Tech News Show 12. July 2016",
            "header": "",
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/625667/theora/DTNS20160712.ogv",
                "broadcast": "https://upload.frikanalen.no/media/625667/broadcast/DTNS20160712.dv",
                "original": "https://upload.frikanalen.no/media/625667/original/DTNS20160712.mp4",
                "largeThumb": "https://upload.frikanalen.no/media/625667/large_thumb/DTNS20160712.jpg",
                "smallThumb": "https://upload.frikanalen.no/media/625667/small_thumb/DTNS20160712.jpg"
            },
            "creator": "pere@hungry.com",
            "organization": {
                "id": 82,
                "name": "NUUG",
                "homepage": "https://www.nuug.no/",
                "description": "Forening NUUG er for alle som er interessert i fri programvare, åpne standarder og Unix-lignende operativsystemer.",
                "postalAddress": "Norwegian Unix User Group\r\nCSS Mailboks 70, Middelthunsgate 25\r\n0368 OSLO",
                "streetAddress": "",
                "editorId": 2240,
                "editorName": "Peter M. M. Hansteen",
                "editorEmail": "peter@bsdly.net",
                "editorMsisdn": "",
                "fkmember": true
            },
            "duration": "00:53:56.190000",
            "categories": [
                "Samfunn og politikk"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": false,
            "refUrl": "http://www.dailytechnewsshow.com/?p=6910vid",
            "createdTime": "2016-07-15T22:17:46.837875Z",
            "updatedTime": "2018-11-10T18:29:26.898087Z",
            "uploadedTime": "2016-07-15T22:17:53.424948Z",
            "ogvUrl": "https://upload.frikanalen.no/media/625667/theora/DTNS20160712.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/625667/large_thumb/DTNS20160712.jpg"
        },
        {
            "id": 625666,
            "name": "Daily Tech News Show 11. July 2016",
            "header": "",
            "description": null,
            "files": {
                "broadcast": "https://upload.frikanalen.no/media/625666/broadcast/DTNS20160711.dv",
                "theora": "https://upload.frikanalen.no/media/625666/theora/DTNS20160711.ogv",
                "original": "https://upload.frikanalen.no/media/625666/original/DTNS20160711.mp4",
                "largeThumb": "https://upload.frikanalen.no/media/625666/large_thumb/DTNS20160711.jpg",
                "smallThumb": "https://upload.frikanalen.no/media/625666/small_thumb/DTNS20160711.jpg"
            },
            "creator": "pere@hungry.com",
            "organization": {
                "id": 82,
                "name": "NUUG",
                "homepage": "https://www.nuug.no/",
                "description": "Forening NUUG er for alle som er interessert i fri programvare, åpne standarder og Unix-lignende operativsystemer.",
                "postalAddress": "Norwegian Unix User Group\r\nCSS Mailboks 70, Middelthunsgate 25\r\n0368 OSLO",
                "streetAddress": "",
                "editorId": 2240,
                "editorName": "Peter M. M. Hansteen",
                "editorEmail": "peter@bsdly.net",
                "editorMsisdn": "",
                "fkmember": true
            },
            "duration": "00:55:30.670000",
            "categories": [
                "Samfunn og politikk"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": false,
            "refUrl": "http://www.dailytechnewsshow.com/?p=6899vid",
            "createdTime": "2016-07-15T21:24:52.537484Z",
            "updatedTime": "2018-11-10T18:29:26.899473Z",
            "uploadedTime": "2016-07-15T21:25:03.792416Z",
            "ogvUrl": "https://upload.frikanalen.no/media/625666/theora/DTNS20160711.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/625666/large_thumb/DTNS20160711.jpg"
        },
        {
            "id": 624291,
            "name": "Ti Minutter & Livshjelp",
            "header": "Ti Minutter med Svenn Thommy Fjeldberg og Livshjelp med Bill Stenberg",
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/624291/theora/5351_fec3106cd6d64519b525cdfb55640a04.ogv",
                "original": "https://upload.frikanalen.no/media/624291/original/orig_fda2e9b34e9a4b7cad2c73730e66aab7.avi",
                "smallThumb": "https://upload.frikanalen.no/media/624291/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/624291/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/624291/broadcast/5351_e048902adc974bdba367347c52f5341d.avi",
                "largeThumb": "https://upload.frikanalen.no/media/624291/large_thumb/large.jpg"
            },
            "creator": "tvom@glorynet.eu",
            "organization": {
                "id": 12,
                "name": "The voice of mission",
                "homepage": null,
                "description": "",
                "postalAddress": null,
                "streetAddress": null,
                "editorId": null,
                "editorName": "Ingen redaktør!",
                "editorEmail": null,
                "editorMsisdn": null,
                "fkmember": false
            },
            "duration": "00:29:00",
            "categories": [
                "Religion og livssyn"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": false,
            "refUrl": "",
            "createdTime": "2011-02-17T13:05:09.710000Z",
            "updatedTime": "2018-11-10T18:29:28.708690Z",
            "uploadedTime": "2011-02-17T13:05:09.710000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/624291/theora/5351_fec3106cd6d64519b525cdfb55640a04.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/624291/large_thumb/large.jpg"
        },
        {
            "id": 624290,
            "name": "De Gode Nyheder",
            "header": "De Gode Nyheder med Erling Ilsøe Nielsen",
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/624290/theora/5346_4cc00bc76bef44b1b29a19e8ed33e0f1.ogv",
                "original": "https://upload.frikanalen.no/media/624290/original/orig_55617f1ba2df43b4a5931e5fc62d8c05.avi",
                "smallThumb": "https://upload.frikanalen.no/media/624290/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/624290/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/624290/broadcast/5346_514b26af980a4ad0986275d111cd644e.avi",
                "largeThumb": "https://upload.frikanalen.no/media/624290/large_thumb/large.jpg"
            },
            "creator": "tvom@glorynet.eu",
            "organization": {
                "id": 12,
                "name": "The voice of mission",
                "homepage": null,
                "description": "",
                "postalAddress": null,
                "streetAddress": null,
                "editorId": null,
                "editorName": "Ingen redaktør!",
                "editorEmail": null,
                "editorMsisdn": null,
                "fkmember": false
            },
            "duration": "00:29:00",
            "categories": [
                "Religion og livssyn"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": false,
            "refUrl": "",
            "createdTime": "2011-02-17T11:47:37.010000Z",
            "updatedTime": "2018-11-10T18:29:28.710039Z",
            "uploadedTime": "2011-02-17T11:47:37.010000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/624290/theora/5346_4cc00bc76bef44b1b29a19e8ed33e0f1.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/624290/large_thumb/large.jpg"
        },
        {
            "id": 624288,
            "name": "KickOff",
            "header": null,
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/624288/theora/5350_136f24d44f58400bbbbb943542f13b74.ogv",
                "smallThumb": "https://upload.frikanalen.no/media/624288/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/624288/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/624288/broadcast/5350_d60879db23194830b08634d45c8f68e5.avi",
                "largeThumb": "https://upload.frikanalen.no/media/624288/large_thumb/large.jpg"
            },
            "creator": "gautebd@gmail.com",
            "organization": {
                "id": 116,
                "name": "Student TV Bergen",
                "homepage": null,
                "description": "",
                "postalAddress": null,
                "streetAddress": null,
                "editorId": 1975,
                "editorName": "Gaute Bugge Drangsholt",
                "editorEmail": "gautebd@gmail.com",
                "editorMsisdn": "",
                "fkmember": false
            },
            "duration": "00:01:52.440000",
            "categories": [
                "Kultur"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": false,
            "refUrl": "",
            "createdTime": "2011-02-17T12:58:25.777000Z",
            "updatedTime": "2018-11-10T18:29:28.716461Z",
            "uploadedTime": "2011-02-17T12:58:25.777000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/624288/theora/5350_136f24d44f58400bbbbb943542f13b74.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/624288/large_thumb/large.jpg"
        },
        {
            "id": 624287,
            "name": "Helse & Kællan",
            "header": "Helse med Eva Britt Fjeldberg og Kællan med Carl Henrik Karlsson",
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/624287/theora/orig_b2a3bc24548343749c20b67b1fbdc151.ogv",
                "original": "https://upload.frikanalen.no/media/624287/original/orig_b2a3bc24548343749c20b67b1fbdc151.avi",
                "smallThumb": "https://upload.frikanalen.no/media/624287/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/624287/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/624287/broadcast/5345_96dc665004714315b4348999a74743c8.avi",
                "largeThumb": "https://upload.frikanalen.no/media/624287/large_thumb/large.jpg"
            },
            "creator": "tvom@glorynet.eu",
            "organization": {
                "id": 12,
                "name": "The voice of mission",
                "homepage": null,
                "description": "",
                "postalAddress": null,
                "streetAddress": null,
                "editorId": null,
                "editorName": "Ingen redaktør!",
                "editorEmail": null,
                "editorMsisdn": null,
                "fkmember": false
            },
            "duration": "00:28:06.600000",
            "categories": [
                "Religion og livssyn"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": false,
            "refUrl": "",
            "createdTime": "2011-02-17T08:07:10.393000Z",
            "updatedTime": "2018-11-10T18:29:28.718325Z",
            "uploadedTime": "2011-02-17T08:07:10.393000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/624287/theora/orig_b2a3bc24548343749c20b67b1fbdc151.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/624287/large_thumb/large.jpg"
        },
        {
            "id": 625082,
            "name": "Empo tv - del 114",
            "header": "",
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/625082/theora/6535_7e3011bd5830474996a715b3aecaff52.ogv",
                "smallThumb": "https://upload.frikanalen.no/media/625082/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/625082/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/625082/broadcast/6535_872b58205bde43cda1ff3169479c2473.avi",
                "largeThumb": "https://upload.frikanalen.no/media/625082/large_thumb/large.jpg"
            },
            "creator": "prosjektmedarbeidere@empo.no",
            "organization": {
                "id": 66,
                "name": "Empo AS",
                "homepage": "https://www.empo.no/",
                "description": "",
                "postalAddress": "Teglevegen 27\r\n1400 SKI",
                "streetAddress": "",
                "editorId": 2159,
                "editorName": "Rune Hagerup",
                "editorEmail": "rune.hagerup@empo.no",
                "editorMsisdn": "+47 978 41 612",
                "fkmember": true
            },
            "duration": "00:15:00",
            "categories": [
                "Velferd"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": false,
            "isFiller": false,
            "refUrl": "http://www.empotv.no",
            "createdTime": "2012-11-07T10:52:21.703000Z",
            "updatedTime": "2020-08-30T19:41:14.317130Z",
            "uploadedTime": "2012-11-07T10:52:21.703000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/625082/theora/6535_7e3011bd5830474996a715b3aecaff52.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/625082/large_thumb/large.jpg"
        },
        {
            "id": 624284,
            "name": "Den norske kirke i eksil 78",
            "header": null,
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/624284/theora/orig_386c4cfc4c83455e815ac609e6845f78.ogv",
                "original": "https://upload.frikanalen.no/media/624284/original/orig_386c4cfc4c83455e815ac609e6845f78.mp4",
                "smallThumb": "https://upload.frikanalen.no/media/624284/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/624284/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/624284/broadcast/5343_0a9b38ebab0f4635ad0d5e085fecd3bd.avi",
                "largeThumb": "https://upload.frikanalen.no/media/624284/large_thumb/large.jpg"
            },
            "creator": "omoeg@broadpark.no",
            "organization": {
                "id": 86,
                "name": "Den norske kirke i eksil",
                "homepage": null,
                "description": "",
                "postalAddress": null,
                "streetAddress": null,
                "editorId": 1086,
                "editorName": "Olav Grimdalen",
                "editorEmail": "omoeg@broadpark.no",
                "editorMsisdn": "",
                "fkmember": false
            },
            "duration": "00:25:55.200000",
            "categories": [
                "Religion og livssyn"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": false,
            "refUrl": "",
            "createdTime": "2011-02-16T08:29:11.623000Z",
            "updatedTime": "2018-11-10T18:29:28.722707Z",
            "uploadedTime": "2011-02-16T08:29:11.623000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/624284/theora/orig_386c4cfc4c83455e815ac609e6845f78.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/624284/large_thumb/large.jpg"
        },
        {
            "id": 624281,
            "name": "Verden Gjenfødelse 20110228",
            "header": "Verdens Gjenfødelse\nmed Hans Bratterud",
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/624281/theora/5324_b0cb626b035740a89c5bcbd9671eb144.ogv",
                "original": "https://upload.frikanalen.no/media/624281/original/orig_7ef2b6bee4554ec49d8a7a848eef2d9c.avi",
                "smallThumb": "https://upload.frikanalen.no/media/624281/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/624281/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/624281/broadcast/5324_2a3f3036372f4b1085ec48efd1b3d46d.avi",
                "largeThumb": "https://upload.frikanalen.no/media/624281/large_thumb/large.jpg"
            },
            "creator": "tvom@glorynet.eu",
            "organization": {
                "id": 12,
                "name": "The voice of mission",
                "homepage": null,
                "description": "",
                "postalAddress": null,
                "streetAddress": null,
                "editorId": null,
                "editorName": "Ingen redaktør!",
                "editorEmail": null,
                "editorMsisdn": null,
                "fkmember": false
            },
            "duration": "00:29:00",
            "categories": [
                "Religion og livssyn"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": false,
            "refUrl": "",
            "createdTime": "2011-02-14T11:51:12.710000Z",
            "updatedTime": "2018-11-10T18:29:28.724156Z",
            "uploadedTime": "2011-02-14T11:51:12.710000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/624281/theora/5324_b0cb626b035740a89c5bcbd9671eb144.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/624281/large_thumb/large.jpg"
        },
        {
            "id": 625660,
            "name": "Daily Tech News Show 04. July 2016",
            "header": "",
            "description": null,
            "files": {
                "largeThumb": "https://upload.frikanalen.no/media/625660/large_thumb/DTNS-2800---Announcing-New-Headlines-Show.jpg",
                "smallThumb": "https://upload.frikanalen.no/media/625660/small_thumb/DTNS-2800---Announcing-New-Headlines-Show.jpg",
                "theora": "https://upload.frikanalen.no/media/625660/theora/DTNS-2800---Announcing-New-Headlines-Show.ogv",
                "original": "https://upload.frikanalen.no/media/625660/original/DTNS-2800---Announcing-New-Headlines-Show.mp4",
                "broadcast": "https://upload.frikanalen.no/media/625660/broadcast/DTNS-2800---Announcing-New-Headlines-Show.dv"
            },
            "creator": "pere@hungry.com",
            "organization": {
                "id": 82,
                "name": "NUUG",
                "homepage": "https://www.nuug.no/",
                "description": "Forening NUUG er for alle som er interessert i fri programvare, åpne standarder og Unix-lignende operativsystemer.",
                "postalAddress": "Norwegian Unix User Group\r\nCSS Mailboks 70, Middelthunsgate 25\r\n0368 OSLO",
                "streetAddress": "",
                "editorId": 2240,
                "editorName": "Peter M. M. Hansteen",
                "editorEmail": "peter@bsdly.net",
                "editorMsisdn": "",
                "fkmember": true
            },
            "duration": "00:14:15.380000",
            "categories": [
                "Samfunn og politikk"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": false,
            "refUrl": "http://www.dailytechnewsshow.com/?p=6828vid",
            "createdTime": "2016-07-05T21:55:13.479602Z",
            "updatedTime": "2018-11-10T18:29:26.907817Z",
            "uploadedTime": "2016-07-05T21:55:22.880558Z",
            "ogvUrl": "https://upload.frikanalen.no/media/625660/theora/DTNS-2800---Announcing-New-Headlines-Show.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/625660/large_thumb/DTNS-2800---Announcing-New-Headlines-Show.jpg"
        },
        {
            "id": 624279,
            "name": "Studentersamfundets nye leder",
            "header": "Etter fem timer med utspørring og debatt mot Eivind Rindal, ble Erling Kjelstrup valgt til Samfundets nye leder.",
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/624279/theora/5325_4dfa80fbdc2f4986bcdcb82129de049a.ogv",
                "original": "https://upload.frikanalen.no/media/624279/original/orig_6c1d1cb0f1b3498483c5030f74565b34.mov",
                "smallThumb": "https://upload.frikanalen.no/media/624279/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/624279/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/624279/broadcast/5325_ee52c72ca1404a91b2be0bb866bbd18d.avi",
                "largeThumb": "https://upload.frikanalen.no/media/624279/large_thumb/large.jpg"
            },
            "creator": "ingrid.solem@stv.no",
            "organization": {
                "id": 19,
                "name": "Student TV Trondheim",
                "homepage": null,
                "description": "",
                "postalAddress": null,
                "streetAddress": null,
                "editorId": null,
                "editorName": "Ingen redaktør!",
                "editorEmail": null,
                "editorMsisdn": null,
                "fkmember": false
            },
            "duration": "00:03:07.400000",
            "categories": [
                "Samfunn og politikk"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": true,
            "refUrl": "",
            "createdTime": "2011-02-14T14:17:05.923000Z",
            "updatedTime": "2018-11-10T18:29:28.728440Z",
            "uploadedTime": "2011-02-14T14:17:05.923000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/624279/theora/5325_4dfa80fbdc2f4986bcdcb82129de049a.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/624279/large_thumb/large.jpg"
        },
        {
            "id": 624307,
            "name": "Empo tv - del 36",
            "header": "Empo tv er talerøret for mennesker med utviklingshemming. Vi lager tv for alle. Vi sender på Frikanalen, din lokal-tv og på nett: empotv.no",
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/624307/theora/5028_2dee65247d004402a847315183be5a26.ogv",
                "smallThumb": "https://upload.frikanalen.no/media/624307/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/624307/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/624307/broadcast/5028_80cd709e51dd4e87af807c0cb505a123.avi",
                "largeThumb": "https://upload.frikanalen.no/media/624307/large_thumb/large.jpg"
            },
            "creator": "prosjektmedarbeidere@empo.no",
            "organization": {
                "id": 66,
                "name": "Empo AS",
                "homepage": "https://www.empo.no/",
                "description": "",
                "postalAddress": "Teglevegen 27\r\n1400 SKI",
                "streetAddress": "",
                "editorId": 2159,
                "editorName": "Rune Hagerup",
                "editorEmail": "rune.hagerup@empo.no",
                "editorMsisdn": "+47 978 41 612",
                "fkmember": true
            },
            "duration": "00:14:55.360000",
            "categories": [
                "Velferd"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": false,
            "isFiller": false,
            "refUrl": "http://www.empotv.no",
            "createdTime": "2010-12-02T13:19:25.837000Z",
            "updatedTime": "2020-08-30T19:57:26.549467Z",
            "uploadedTime": "2010-12-02T13:19:25.837000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/624307/theora/5028_2dee65247d004402a847315183be5a26.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/624307/large_thumb/large.jpg"
        },
        {
            "id": 625854,
            "name": "Daily Tech News Show 01. December 2016",
            "header": "",
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/625854/theora/DTNS20161201.ogv",
                "broadcast": "https://upload.frikanalen.no/media/625854/broadcast/DTNS20161201.dv",
                "largeThumb": "https://upload.frikanalen.no/media/625854/large_thumb/DTNS20161201.jpg",
                "original": "https://upload.frikanalen.no/media/625854/original/DTNS20161201.mp4",
                "smallThumb": "https://upload.frikanalen.no/media/625854/small_thumb/DTNS20161201.jpg"
            },
            "creator": "pere@hungry.com",
            "organization": {
                "id": 82,
                "name": "NUUG",
                "homepage": "https://www.nuug.no/",
                "description": "Forening NUUG er for alle som er interessert i fri programvare, åpne standarder og Unix-lignende operativsystemer.",
                "postalAddress": "Norwegian Unix User Group\r\nCSS Mailboks 70, Middelthunsgate 25\r\n0368 OSLO",
                "streetAddress": "",
                "editorId": 2240,
                "editorName": "Peter M. M. Hansteen",
                "editorEmail": "peter@bsdly.net",
                "editorMsisdn": "",
                "fkmember": true
            },
            "duration": "01:03:29.910000",
            "categories": [
                "Samfunn og politikk"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": false,
            "refUrl": "http://www.dailytechnewsshow.com/?p=8132vid",
            "createdTime": "2016-12-20T09:30:37.525533Z",
            "updatedTime": "2018-11-10T18:29:26.620122Z",
            "uploadedTime": "2016-12-20T09:30:42.262825Z",
            "ogvUrl": "https://upload.frikanalen.no/media/625854/theora/DTNS20161201.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/625854/large_thumb/DTNS20161201.jpg"
        },
        {
            "id": 625684,
            "name": "Software Heritage: Building the Universal Software Archive - Debconf 16",
            "header": "In the past few decades, software has become a critical part of every single bit of infrastructure running the world, from the tiniest devices we embed in our bodies to improve our health, to the biggest human creations. Software is the key to accessing all the digital information we're constantly creating, and therefore is an essential part of our cultural heritage. But software is just a bunch of bits. Unlike antique stone carvings, software gets lost, deleted, or corrupted.\n\nSoftware Heritage has set out to build the biggest archive of free software ever conceived. Our mission is to collect, preserve, organise and facilitate the sharing of all the available free software. We are laying down foundations on which a wealth of applications can be built, ranging from cultural heritage, to research and industry.\n\nWe started working in May 2015, and (as of April 2016) we have archived 2.2 billion unique files, more than 480 million project revisions across more than 16 million data sources, among which  Debian source packages from snapshot.debian.org, public GitHub repositories, and the GNU project's FTP archive.\n\nThis presentation will cover in more detail the why and the how of Software Heritage, as well as opportunities for the community to help us fulfill our goals.\n\nTalk (45 mins) session with Nicolas Dandrimont during Debconf 16",
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/625684/theora/Software_Heritage_Building_the_Universal_Software_Archive.ogv",
                "broadcast": "https://upload.frikanalen.no/media/625684/broadcast/Software_Heritage_Building_the_Universal_Software_Archive.dv",
                "largeThumb": "https://upload.frikanalen.no/media/625684/large_thumb/Software_Heritage_Building_the_Universal_Software_Archive.jpg",
                "original": "https://upload.frikanalen.no/media/625684/original/Software_Heritage_Building_the_Universal_Software_Archive.webm",
                "smallThumb": "https://upload.frikanalen.no/media/625684/small_thumb/Software_Heritage_Building_the_Universal_Software_Archive.jpg"
            },
            "creator": "pere@hungry.com",
            "organization": {
                "id": 82,
                "name": "NUUG",
                "homepage": "https://www.nuug.no/",
                "description": "Forening NUUG er for alle som er interessert i fri programvare, åpne standarder og Unix-lignende operativsystemer.",
                "postalAddress": "Norwegian Unix User Group\r\nCSS Mailboks 70, Middelthunsgate 25\r\n0368 OSLO",
                "streetAddress": "",
                "editorId": 2240,
                "editorName": "Peter M. M. Hansteen",
                "editorEmail": "peter@bsdly.net",
                "editorMsisdn": "",
                "fkmember": true
            },
            "duration": "00:27:50.920000",
            "categories": [
                "Samfunn og politikk"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": true,
            "refUrl": "https://debconf16.debconf.org/talks/42/",
            "createdTime": "2016-07-20T21:54:04.545318Z",
            "updatedTime": "2018-11-10T18:29:26.872630Z",
            "uploadedTime": "2016-07-20T21:54:09.449006Z",
            "ogvUrl": "https://upload.frikanalen.no/media/625684/theora/Software_Heritage_Building_the_Universal_Software_Archive.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/625684/large_thumb/Software_Heritage_Building_the_Universal_Software_Archive.jpg"
        },
        {
            "id": 624275,
            "name": "Haiku, et OS basert på BeOS",
            "header": "Haiku er et BeOS-kompatibelt operativsystem som er fullstendig fri programvare. Haiku stresser minimalisme i bruk og simplisitet i funksjonalitet, og sikter seg inn på hverdagsbrukere, og personer med behov for gode muligheter for multimedia.\n\nForedraget gir en kort innføring i Haiku. Det vil bli gått nærmere inn på hovedtrekkene som skiller Haiku fra andre operativsystemers funksjonalitet og oppbygning. Det vil også bli trukket inn prosjektets historie og fremtidsvisjoner. Det vil bli vist en demo av en relativt fersk revisjon med diverse applikasjoner Martin Hebnes Pedersen er fulltidsstudent ved Høgskolen i Bergen, der han tar en bachelorgrad i dataingeniør. Ved siden av studiet har han i det siste året jobbet en del med Haiku, og har blant annet utviklet en Twitterklient for operativsystemet",
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/624275/theora/5323_f7ec4f44792d46b786b7e5af25e809fb.ogv",
                "smallThumb": "https://upload.frikanalen.no/media/624275/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/624275/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/624275/broadcast/5323_f7ec4f44792d46b786b7e5af25e809fb.avi",
                "largeThumb": "https://upload.frikanalen.no/media/624275/large_thumb/large.jpg"
            },
            "creator": "jarle@bjorgeengen.net",
            "organization": {
                "id": 82,
                "name": "NUUG",
                "homepage": "https://www.nuug.no/",
                "description": "Forening NUUG er for alle som er interessert i fri programvare, åpne standarder og Unix-lignende operativsystemer.",
                "postalAddress": "Norwegian Unix User Group\r\nCSS Mailboks 70, Middelthunsgate 25\r\n0368 OSLO",
                "streetAddress": "",
                "editorId": 2240,
                "editorName": "Peter M. M. Hansteen",
                "editorEmail": "peter@bsdly.net",
                "editorMsisdn": "",
                "fkmember": true
            },
            "duration": "01:00:16.500000",
            "categories": [
                "Samfunn og politikk"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": true,
            "refUrl": "http://www.nuug.no",
            "createdTime": "2011-02-12T21:27:00.263000Z",
            "updatedTime": "2018-11-10T18:29:28.734214Z",
            "uploadedTime": "2011-02-12T21:27:00.263000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/624275/theora/5323_f7ec4f44792d46b786b7e5af25e809fb.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/624275/large_thumb/large.jpg"
        },
        {
            "id": 624274,
            "name": "Den norske kirke i eksil 77",
            "header": "Er programmet så lite interessant at folk gidder ikke å se på det. Hva er feil.",
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/624274/theora/orig_f04d4fc8e7f44434b4f81611286b0ec9.ogv",
                "original": "https://upload.frikanalen.no/media/624274/original/orig_f04d4fc8e7f44434b4f81611286b0ec9.mp4",
                "smallThumb": "https://upload.frikanalen.no/media/624274/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/624274/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/624274/broadcast/5322_917fb2f3ffe54f4b8205171cf1ee0da9.avi",
                "largeThumb": "https://upload.frikanalen.no/media/624274/large_thumb/large.jpg"
            },
            "creator": "omoeg@broadpark.no",
            "organization": {
                "id": 86,
                "name": "Den norske kirke i eksil",
                "homepage": null,
                "description": "",
                "postalAddress": null,
                "streetAddress": null,
                "editorId": 1086,
                "editorName": "Olav Grimdalen",
                "editorEmail": "omoeg@broadpark.no",
                "editorMsisdn": "",
                "fkmember": false
            },
            "duration": "00:25:56.960000",
            "categories": [
                "Religion og livssyn"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": false,
            "refUrl": "",
            "createdTime": "2011-02-12T09:58:35.960000Z",
            "updatedTime": "2018-11-10T18:29:28.735670Z",
            "uploadedTime": "2011-02-12T09:58:35.960000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/624274/theora/orig_f04d4fc8e7f44434b4f81611286b0ec9.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/624274/large_thumb/large.jpg"
        },
        {
            "id": 624273,
            "name": "Bør Maria Amelie bli?",
            "header": "Samfundsdebattant og AUF`ar Eivind Rindal og Sivert Bjørndal frå FPU tar debatten.",
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/624273/theora/5215_995d47029a424f158a0a37857ac3229f.ogv",
                "smallThumb": "https://upload.frikanalen.no/media/624273/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/624273/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/624273/broadcast/5215_376dccd40e4c4ddea0288d1bd32324d3.avi",
                "largeThumb": "https://upload.frikanalen.no/media/624273/large_thumb/large.jpg"
            },
            "creator": "red@stv.no",
            "organization": {
                "id": 19,
                "name": "Student TV Trondheim",
                "homepage": null,
                "description": "",
                "postalAddress": null,
                "streetAddress": null,
                "editorId": null,
                "editorName": "Ingen redaktør!",
                "editorEmail": null,
                "editorMsisdn": null,
                "fkmember": false
            },
            "duration": "00:03:21",
            "categories": [
                "Samfunn og politikk"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": true,
            "refUrl": "http://www.stv.no/",
            "createdTime": "2011-01-31T15:37:34.770000Z",
            "updatedTime": "2018-11-10T18:29:28.737143Z",
            "uploadedTime": "2011-01-31T15:37:34.770000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/624273/theora/5215_995d47029a424f158a0a37857ac3229f.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/624273/large_thumb/large.jpg"
        },
        {
            "id": 625683,
            "name": "Surviving the Next 23 Years of Free Software - Debconf 16",
            "header": "Let's face it, GNU/Linux is no youngster! Many developers are aging and as with any large group of people, we must plan for the sad but inevitable loss of contributors. We have already lost a number of extremely important people in our community. In this talk, Karen will discuss the legal and social implications of this transition and possible mechanisms we can put in place to address them.\n\nTalk (45 mins) session with Karen Sandler during Debconf 16",
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/625683/theora/Surviving_the_Next_23_Years_of_Free_Software.ogv",
                "broadcast": "https://upload.frikanalen.no/media/625683/broadcast/Surviving_the_Next_23_Years_of_Free_Software.dv",
                "largeThumb": "https://upload.frikanalen.no/media/625683/large_thumb/Surviving_the_Next_23_Years_of_Free_Software.jpg",
                "smallThumb": "https://upload.frikanalen.no/media/625683/small_thumb/Surviving_the_Next_23_Years_of_Free_Software.jpg",
                "original": "https://upload.frikanalen.no/media/625683/original/Surviving_the_Next_23_Years_of_Free_Software.webm"
            },
            "creator": "pere@hungry.com",
            "organization": {
                "id": 82,
                "name": "NUUG",
                "homepage": "https://www.nuug.no/",
                "description": "Forening NUUG er for alle som er interessert i fri programvare, åpne standarder og Unix-lignende operativsystemer.",
                "postalAddress": "Norwegian Unix User Group\r\nCSS Mailboks 70, Middelthunsgate 25\r\n0368 OSLO",
                "streetAddress": "",
                "editorId": 2240,
                "editorName": "Peter M. M. Hansteen",
                "editorEmail": "peter@bsdly.net",
                "editorMsisdn": "",
                "fkmember": true
            },
            "duration": "00:48:18.880000",
            "categories": [
                "Samfunn og politikk"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": true,
            "refUrl": "https://debconf16.debconf.org/talks/57/",
            "createdTime": "2016-07-20T21:10:57.849893Z",
            "updatedTime": "2018-11-10T18:29:26.874262Z",
            "uploadedTime": "2016-07-20T21:11:03.209613Z",
            "ogvUrl": "https://upload.frikanalen.no/media/625683/theora/Surviving_the_Next_23_Years_of_Free_Software.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/625683/large_thumb/Surviving_the_Next_23_Years_of_Free_Software.jpg"
        },
        {
            "id": 624227,
            "name": "Inside Israel Februar 2011",
            "header": null,
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/624227/theora/orig_9629ff4ffe3c4a28a654158d289e4775.ogv",
                "original": "https://upload.frikanalen.no/media/624227/original/orig_9629ff4ffe3c4a28a654158d289e4775.avi",
                "smallThumb": "https://upload.frikanalen.no/media/624227/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/624227/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/624227/broadcast/5214_c802154a9670433aad429c1f0a8d81a7.avi",
                "largeThumb": "https://upload.frikanalen.no/media/624227/large_thumb/large.jpg"
            },
            "creator": "dagjul@frisurf.no",
            "organization": {
                "id": 110,
                "name": "IKAJ, Internasjonale Kristne Ambassade Jerusalem",
                "homepage": null,
                "description": "",
                "postalAddress": null,
                "streetAddress": null,
                "editorId": 1076,
                "editorName": "Dag Øyvind Juliussen",
                "editorEmail": "dagjul@frisurf.no",
                "editorMsisdn": "",
                "fkmember": false
            },
            "duration": "00:25:59.960000",
            "categories": [
                "Samfunn og politikk"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": true,
            "refUrl": "",
            "createdTime": "2011-01-31T09:46:51.937000Z",
            "updatedTime": "2018-11-10T18:29:28.799647Z",
            "uploadedTime": "2011-01-31T09:46:51.937000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/624227/theora/orig_9629ff4ffe3c4a28a654158d289e4775.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/624227/large_thumb/large.jpg"
        },
        {
            "id": 627983,
            "name": "Diesen, Mercouris og Mearsheimer",
            "header": "",
            "description": "Slutten på krigen i Ukraina",
            "files": {
                "theora": "https://upload.frikanalen.no/media/627983/theora/Diesen_Mearsheimer_V.ogv",
                "broadcast": "https://upload.frikanalen.no/media/627983/broadcast/Diesen_Mearsheimer_V.dv",
                "original": "https://upload.frikanalen.no/media/627983/original/Diesen_Mearsheimer_V.mp4",
                "largeThumb": "https://upload.frikanalen.no/media/627983/large_thumb/Diesen_Mearsheimer_V.jpg"
            },
            "creator": "ola@frikanalen.no",
            "organization": {
                "id": 112,
                "name": "PROION",
                "homepage": null,
                "description": "",
                "postalAddress": "Åsvegen 115\r\n2740 ROA",
                "streetAddress": "Åsvegen 115\r\n2740 ROA",
                "editorId": 2249,
                "editorName": "Ola Tellesbø",
                "editorEmail": "ola@frikanalen.no",
                "editorMsisdn": "+47 400 41 813",
                "fkmember": true
            },
            "duration": "00:29:55.440000",
            "categories": [
                "Samfunn og politikk"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": false,
            "refUrl": "",
            "createdTime": "2024-11-24T22:05:53.973489Z",
            "updatedTime": "2025-01-01T22:31:48.145158Z",
            "uploadedTime": "2024-11-24T22:08:12Z",
            "ogvUrl": "https://upload.frikanalen.no/media/627983/theora/Diesen_Mearsheimer_V.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/627983/large_thumb/Diesen_Mearsheimer_V.jpg"
        },
        {
            "id": 624271,
            "name": "Stoltenberg lover flere NTNU-s",
            "header": null,
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/624271/theora/4773_8898cc1d996d4f269eff677e3370dac0.ogv",
                "original": "https://upload.frikanalen.no/media/624271/original/orig_49ee888747584b3c9d2517b0472b7549.avi",
                "smallThumb": "https://upload.frikanalen.no/media/624271/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/624271/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/624271/broadcast/4773_1be917c601654a64a7df522a673eff69.avi",
                "largeThumb": "https://upload.frikanalen.no/media/624271/large_thumb/large.jpg"
            },
            "creator": "red@stv.no",
            "organization": {
                "id": 19,
                "name": "Student TV Trondheim",
                "homepage": null,
                "description": "",
                "postalAddress": null,
                "streetAddress": null,
                "editorId": null,
                "editorName": "Ingen redaktør!",
                "editorEmail": null,
                "editorMsisdn": null,
                "fkmember": false
            },
            "duration": "00:01:52.600000",
            "categories": [
                "Kultur"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": true,
            "refUrl": "http://www.stv.no/",
            "createdTime": "2010-09-27T15:14:40.357000Z",
            "updatedTime": "2018-11-10T18:29:28.739996Z",
            "uploadedTime": "2010-09-27T15:14:40.357000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/624271/theora/4773_8898cc1d996d4f269eff677e3370dac0.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/624271/large_thumb/large.jpg"
        },
        {
            "id": 624270,
            "name": "Været",
            "header": null,
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/624270/theora/4608_d6f7a7621dd7422bafa63968a9c6add1.ogv",
                "original": "https://upload.frikanalen.no/media/624270/original/orig_b53f1f774ef74cafbf91aa6e60d39fad.avi",
                "smallThumb": "https://upload.frikanalen.no/media/624270/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/624270/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/624270/broadcast/4608_de4fa7cafa3c4e76804f0b4fa0c9e8fb.avi",
                "largeThumb": "https://upload.frikanalen.no/media/624270/large_thumb/large.jpg"
            },
            "creator": "red@stv.no",
            "organization": {
                "id": 19,
                "name": "Student TV Trondheim",
                "homepage": null,
                "description": "",
                "postalAddress": null,
                "streetAddress": null,
                "editorId": null,
                "editorName": "Ingen redaktør!",
                "editorEmail": null,
                "editorMsisdn": null,
                "fkmember": false
            },
            "duration": "00:01:44.480000",
            "categories": [
                "Kultur"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": true,
            "refUrl": "http://www.stv.no/",
            "createdTime": "2010-08-10T19:20:43.913000Z",
            "updatedTime": "2018-11-10T18:29:28.741449Z",
            "uploadedTime": "2010-08-10T19:20:43.913000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/624270/theora/4608_d6f7a7621dd7422bafa63968a9c6add1.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/624270/large_thumb/large.jpg"
        },
        {
            "id": 625682,
            "name": "Professional Open-Source Radio Astronomy - Debconf 16",
            "header": "The Square Kilometer Array radio astronomy telescope will be one of the world's largest scientific instruments, spanning half the globe, with components distributed across Africa and Australia.\n\nThe MeerKAT telescope, one of its precursors, is currently under construction in South Africa and uses fully open-source software and hardware for primary signal processing operations. When completed next year, it will be the world's most sensitive L-band array.\n\nThis talk will discuss the telescopes and their unique challenges which drive the development of open-source hardware and software to process the deluge of data. I will introduce four generations of open-source FPGA hardware along with the collaboratively-developed ecosystem of software and DSP libraries.\n\nOpen Weekend session with Jason Manley during Debconf 16",
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/625682/theora/Professional_OpenSource_Radio_Astronomy.ogv",
                "broadcast": "https://upload.frikanalen.no/media/625682/broadcast/Professional_OpenSource_Radio_Astronomy.dv",
                "original": "https://upload.frikanalen.no/media/625682/original/Professional_OpenSource_Radio_Astronomy.webm",
                "smallThumb": "https://upload.frikanalen.no/media/625682/small_thumb/Professional_OpenSource_Radio_Astronomy.jpg",
                "largeThumb": "https://upload.frikanalen.no/media/625682/large_thumb/Professional_OpenSource_Radio_Astronomy.jpg"
            },
            "creator": "pere@hungry.com",
            "organization": {
                "id": 82,
                "name": "NUUG",
                "homepage": "https://www.nuug.no/",
                "description": "Forening NUUG er for alle som er interessert i fri programvare, åpne standarder og Unix-lignende operativsystemer.",
                "postalAddress": "Norwegian Unix User Group\r\nCSS Mailboks 70, Middelthunsgate 25\r\n0368 OSLO",
                "streetAddress": "",
                "editorId": 2240,
                "editorName": "Peter M. M. Hansteen",
                "editorEmail": "peter@bsdly.net",
                "editorMsisdn": "",
                "fkmember": true
            },
            "duration": "00:37:39.880000",
            "categories": [
                "Samfunn og politikk"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": true,
            "refUrl": "https://debconf16.debconf.org/talks/113/",
            "createdTime": "2016-07-20T15:01:07.299487Z",
            "updatedTime": "2018-11-10T18:29:26.875899Z",
            "uploadedTime": "2016-07-20T15:01:12.645352Z",
            "ogvUrl": "https://upload.frikanalen.no/media/625682/theora/Professional_OpenSource_Radio_Astronomy.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/625682/large_thumb/Professional_OpenSource_Radio_Astronomy.jpg"
        },
        {
            "id": 624268,
            "name": "Walk of peace",
            "header": "Vinneren av isfits designkonkurranse",
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/624268/theora/5116_b5cb11e6f1ce4ca09e45eeed848f68ad.ogv",
                "original": "https://upload.frikanalen.no/media/624268/original/orig_85480e11ba574ee8a8d94376b31f9ece.avi",
                "smallThumb": "https://upload.frikanalen.no/media/624268/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/624268/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/624268/broadcast/5116_fef67c84e1f24e9182bf2fdea52b186f.avi",
                "largeThumb": "https://upload.frikanalen.no/media/624268/large_thumb/large.jpg"
            },
            "creator": "red@stv.no",
            "organization": {
                "id": 19,
                "name": "Student TV Trondheim",
                "homepage": null,
                "description": "",
                "postalAddress": null,
                "streetAddress": null,
                "editorId": null,
                "editorName": "Ingen redaktør!",
                "editorEmail": null,
                "editorMsisdn": null,
                "fkmember": false
            },
            "duration": "00:01:37.520000",
            "categories": [
                "Samfunn og politikk"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": false,
            "refUrl": "http://www.stv.no/",
            "createdTime": "2010-12-21T16:18:59.527000Z",
            "updatedTime": "2018-11-10T18:29:28.744376Z",
            "uploadedTime": "2010-12-21T16:18:59.527000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/624268/theora/5116_b5cb11e6f1ce4ca09e45eeed848f68ad.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/624268/large_thumb/large.jpg"
        },
        {
            "id": 624267,
            "name": "Flammende demonstrasjon",
            "header": "Flammende demonstrasjon til støtte for Maria Amelie.",
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/624267/theora/5243_697a4f2866e748a5b9e2eaa204e52162.ogv",
                "original": "https://upload.frikanalen.no/media/624267/original/orig_e0f83b52cf154f55b91a8f505de6cff5.avi",
                "smallThumb": "https://upload.frikanalen.no/media/624267/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/624267/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/624267/broadcast/5243_07365288cafa46cf8ccaf0ad00e851a6.avi",
                "largeThumb": "https://upload.frikanalen.no/media/624267/large_thumb/large.jpg"
            },
            "creator": "red@stv.no",
            "organization": {
                "id": 19,
                "name": "Student TV Trondheim",
                "homepage": null,
                "description": "",
                "postalAddress": null,
                "streetAddress": null,
                "editorId": null,
                "editorName": "Ingen redaktør!",
                "editorEmail": null,
                "editorMsisdn": null,
                "fkmember": false
            },
            "duration": "00:01:49.320000",
            "categories": [
                "Samfunn og politikk"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": true,
            "refUrl": "http://www.stv.no/",
            "createdTime": "2011-01-31T21:34:28.960000Z",
            "updatedTime": "2018-11-10T18:29:28.745753Z",
            "uploadedTime": "2011-01-31T21:34:28.960000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/624267/theora/5243_697a4f2866e748a5b9e2eaa204e52162.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/624267/large_thumb/large.jpg"
        },
        {
            "id": 625664,
            "name": "TED - Adam Savage: My love letter to cosplay",
            "header": "Adam Savage makes things and builds experiments, and he uses costumes to add humor, color and clarity to the stories he tells. Tracing his lifelong love of costumes — from a childhood space helmet made of an ice cream tub to a No-Face costume he wore to Comic-Con — Savage explores the world of cosplay and the meaning it creates for its community. \"We're connecting with something important inside of us,\" he says. \"The costumes are how we reveal ourselves to each other.\"\r\n\r\nTED talk downloaded from The Internet Archive.",
            "description": null,
            "files": {
                "original": "https://upload.frikanalen.no/media/625664/original/AdamSavage_2016.mp4",
                "largeThumb": "https://upload.frikanalen.no/media/625664/large_thumb/AdamSavage_2016.jpg",
                "broadcast": "https://upload.frikanalen.no/media/625664/broadcast/AdamSavage_2016.dv",
                "theora": "https://upload.frikanalen.no/media/625664/theora/AdamSavage_2016.ogv",
                "smallThumb": "https://upload.frikanalen.no/media/625664/small_thumb/AdamSavage_2016.jpg"
            },
            "creator": "pere@hungry.com",
            "organization": {
                "id": 82,
                "name": "NUUG",
                "homepage": "https://www.nuug.no/",
                "description": "Forening NUUG er for alle som er interessert i fri programvare, åpne standarder og Unix-lignende operativsystemer.",
                "postalAddress": "Norwegian Unix User Group\r\nCSS Mailboks 70, Middelthunsgate 25\r\n0368 OSLO",
                "streetAddress": "",
                "editorId": 2240,
                "editorName": "Peter M. M. Hansteen",
                "editorEmail": "peter@bsdly.net",
                "editorMsisdn": "",
                "fkmember": true
            },
            "duration": "00:13:11.710000",
            "categories": [
                "Samfunn og politikk"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": true,
            "refUrl": "https://archive.org/details/AdamSavage_2016",
            "createdTime": "2016-07-15T19:00:04.309358Z",
            "updatedTime": "2018-11-10T18:29:26.902236Z",
            "uploadedTime": "2016-07-15T19:57:09.255810Z",
            "ogvUrl": "https://upload.frikanalen.no/media/625664/theora/AdamSavage_2016.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/625664/large_thumb/AdamSavage_2016.jpg"
        },
        {
            "id": 623931,
            "name": "Dem Gode nyheterna 111010",
            "header": "De gude Nyheterna med Erilng I. Nilssen",
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/623931/theora/4759_8462679c0a2245db9b7b3b76fbe03ec9.ogv",
                "smallThumb": "https://upload.frikanalen.no/media/623931/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/623931/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/623931/broadcast/4759_d40aa7fa06af404fb6df92e59683a98f.avi",
                "largeThumb": "https://upload.frikanalen.no/media/623931/large_thumb/large.jpg"
            },
            "creator": "tvom@glorynet.eu",
            "organization": {
                "id": 12,
                "name": "The voice of mission",
                "homepage": null,
                "description": "",
                "postalAddress": null,
                "streetAddress": null,
                "editorId": null,
                "editorName": "Ingen redaktør!",
                "editorEmail": null,
                "editorMsisdn": null,
                "fkmember": false
            },
            "duration": "00:29:08.040000",
            "categories": [
                "Religion og livssyn"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": false,
            "refUrl": "",
            "createdTime": "2010-09-21T11:10:50.027000Z",
            "updatedTime": "2018-11-10T18:29:29.176061Z",
            "uploadedTime": "2010-09-21T11:10:50.027000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/623931/theora/4759_8462679c0a2245db9b7b3b76fbe03ec9.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/623931/large_thumb/large.jpg"
        },
        {
            "id": 624264,
            "name": "Spill og spillsamfund",
            "header": null,
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/624264/theora/5317_badb041259644e78969ac076ca8f68bd.ogv",
                "original": "https://upload.frikanalen.no/media/624264/original/orig_6a94ddd9329342c4871c86d2bb4917d2.avi",
                "smallThumb": "https://upload.frikanalen.no/media/624264/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/624264/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/624264/broadcast/5317_72edee75beec4501b9394d542efa0c1a.avi",
                "largeThumb": "https://upload.frikanalen.no/media/624264/large_thumb/large.jpg"
            },
            "creator": "ingrid.solem@stv.no",
            "organization": {
                "id": 19,
                "name": "Student TV Trondheim",
                "homepage": null,
                "description": "",
                "postalAddress": null,
                "streetAddress": null,
                "editorId": null,
                "editorName": "Ingen redaktør!",
                "editorEmail": null,
                "editorMsisdn": null,
                "fkmember": false
            },
            "duration": "00:01:58.200000",
            "categories": [
                "Samfunn og politikk"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": true,
            "refUrl": "",
            "createdTime": "2011-02-12T08:43:48.280000Z",
            "updatedTime": "2018-11-10T18:29:28.749922Z",
            "uploadedTime": "2011-02-12T08:43:48.280000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/624264/theora/5317_badb041259644e78969ac076ca8f68bd.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/624264/large_thumb/large.jpg"
        },
        {
            "id": 624263,
            "name": "Sanntidssystem",
            "header": null,
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/624263/theora/5316_3ffa54beb02846569d603df31738c5db.ogv",
                "original": "https://upload.frikanalen.no/media/624263/original/orig_609b63e33d6245d39cd5d7911d434d44.avi",
                "smallThumb": "https://upload.frikanalen.no/media/624263/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/624263/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/624263/broadcast/5316_47dc59dc087146178d9892cbf38ea35b.avi",
                "largeThumb": "https://upload.frikanalen.no/media/624263/large_thumb/large.jpg"
            },
            "creator": "ingrid.solem@stv.no",
            "organization": {
                "id": 19,
                "name": "Student TV Trondheim",
                "homepage": null,
                "description": "",
                "postalAddress": null,
                "streetAddress": null,
                "editorId": null,
                "editorName": "Ingen redaktør!",
                "editorEmail": null,
                "editorMsisdn": null,
                "fkmember": false
            },
            "duration": "00:01:16.320000",
            "categories": [
                "Samfunn og politikk"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": true,
            "refUrl": "",
            "createdTime": "2011-02-12T08:43:13.047000Z",
            "updatedTime": "2018-11-10T18:29:28.751424Z",
            "uploadedTime": "2011-02-12T08:43:13.047000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/624263/theora/5316_3ffa54beb02846569d603df31738c5db.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/624263/large_thumb/large.jpg"
        },
        {
            "id": 625057,
            "name": "Den norske kirke i eksil 123",
            "header": null,
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/625057/theora/orig_6a25365808e74eb188104f89546cb50b.ogv",
                "original": "https://upload.frikanalen.no/media/625057/original/orig_6a25365808e74eb188104f89546cb50b.mpg",
                "smallThumb": "https://upload.frikanalen.no/media/625057/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/625057/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/625057/broadcast/6571_ec90f7f9667643648fa17270d681d8db.avi",
                "largeThumb": "https://upload.frikanalen.no/media/625057/large_thumb/large.jpg"
            },
            "creator": "omoeg@broadpark.no",
            "organization": {
                "id": 86,
                "name": "Den norske kirke i eksil",
                "homepage": null,
                "description": "",
                "postalAddress": null,
                "streetAddress": null,
                "editorId": 1086,
                "editorName": "Olav Grimdalen",
                "editorEmail": "omoeg@broadpark.no",
                "editorMsisdn": "",
                "fkmember": false
            },
            "duration": "00:26:05",
            "categories": [
                "Religion og livssyn"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": false,
            "refUrl": "",
            "createdTime": "2012-11-14T08:27:04.060000Z",
            "updatedTime": "2018-11-10T18:29:27.713312Z",
            "uploadedTime": "2012-11-14T08:27:04.060000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/625057/theora/orig_6a25365808e74eb188104f89546cb50b.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/625057/large_thumb/large.jpg"
        },
        {
            "id": 625681,
            "name": "The Electronic Struggle - Debconf 16",
            "header": "The role of information technology in the struggle for freedom, including the IBM apartheid case -- (the dompas, my correspondence with Mondo2000, Wired Magazine and Khulumani), nascent online protests, modem activism  (West Coast, Silicon Valley and Cape Town), the dawn of information rights in South Africa, (Article 14 Privacy, 32 Access to Information),  NetDemocracy and Constitution Building during 1995-1996 (canvassing of Communication Minister's Jay Naidoo and Pallo Jordan, iCafe sessions), some important milestones along the way, Electronic Freedom Charter, recent activism around the Cybercrime Bill, Privacy and Information Access, and other bills eroding communications freedom.\n\nOpen Weekend session with David Robert Lewis during Debconf 16",
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/625681/theora/The_Electronic_Struggle.ogv",
                "broadcast": "https://upload.frikanalen.no/media/625681/broadcast/The_Electronic_Struggle.dv",
                "smallThumb": "https://upload.frikanalen.no/media/625681/small_thumb/The_Electronic_Struggle.jpg",
                "original": "https://upload.frikanalen.no/media/625681/original/The_Electronic_Struggle.webm",
                "largeThumb": "https://upload.frikanalen.no/media/625681/large_thumb/The_Electronic_Struggle.jpg"
            },
            "creator": "pere@hungry.com",
            "organization": {
                "id": 82,
                "name": "NUUG",
                "homepage": "https://www.nuug.no/",
                "description": "Forening NUUG er for alle som er interessert i fri programvare, åpne standarder og Unix-lignende operativsystemer.",
                "postalAddress": "Norwegian Unix User Group\r\nCSS Mailboks 70, Middelthunsgate 25\r\n0368 OSLO",
                "streetAddress": "",
                "editorId": 2240,
                "editorName": "Peter M. M. Hansteen",
                "editorEmail": "peter@bsdly.net",
                "editorMsisdn": "",
                "fkmember": true
            },
            "duration": "00:50:10.880000",
            "categories": [
                "Samfunn og politikk"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": true,
            "refUrl": "https://debconf16.debconf.org/talks/112/",
            "createdTime": "2016-07-20T08:15:36.946218Z",
            "updatedTime": "2018-11-10T18:29:26.877560Z",
            "uploadedTime": "2016-07-20T08:15:47.309019Z",
            "ogvUrl": "https://upload.frikanalen.no/media/625681/theora/The_Electronic_Struggle.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/625681/large_thumb/The_Electronic_Struggle.jpg"
        },
        {
            "id": 624260,
            "name": "Akkurat Nå! 13. februar 2011",
            "header": null,
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/624260/theora/5303_6e4e0360db014e35aef629b6d914d60d.ogv",
                "original": "https://upload.frikanalen.no/media/624260/original/orig_9e910b7c763a40b7bc8696d89f7a189e.avi",
                "smallThumb": "https://upload.frikanalen.no/media/624260/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/624260/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/624260/broadcast/5303_0767674a7ed34f9ab73ae54cdc4836fd.avi",
                "largeThumb": "https://upload.frikanalen.no/media/624260/large_thumb/large.jpg"
            },
            "creator": "bjorn.gjellum@estv.no",
            "organization": {
                "id": 36,
                "name": "Evangeliesenteret",
                "homepage": null,
                "description": "",
                "postalAddress": null,
                "streetAddress": null,
                "editorId": null,
                "editorName": "Ingen redaktør!",
                "editorEmail": null,
                "editorMsisdn": null,
                "fkmember": false
            },
            "duration": "00:52:33.720000",
            "categories": [
                "Samfunn og politikk"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": false,
            "refUrl": "",
            "createdTime": "2011-02-11T15:22:56.797000Z",
            "updatedTime": "2018-11-10T18:29:28.755996Z",
            "uploadedTime": "2011-02-11T15:22:56.797000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/624260/theora/5303_6e4e0360db014e35aef629b6d914d60d.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/624260/large_thumb/large.jpg"
        },
        {
            "id": 624259,
            "name": "06_11 Østfoldkirken",
            "header": null,
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/624259/theora/5275_279cb7b8f6cf4a84b03545e63579c366.ogv",
                "original": "https://upload.frikanalen.no/media/624259/original/orig_fb07bb0c791a408f8e01fbfa07582909.mpg",
                "smallThumb": "https://upload.frikanalen.no/media/624259/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/624259/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/624259/broadcast/5275_fe2efe8651e245cabe3c4d47b186c175.avi",
                "largeThumb": "https://upload.frikanalen.no/media/624259/large_thumb/large.jpg"
            },
            "creator": "post@lundeandersen.com",
            "organization": {
                "id": 51,
                "name": "Østfoldkirken",
                "homepage": null,
                "description": "",
                "postalAddress": null,
                "streetAddress": null,
                "editorId": 1437,
                "editorName": "Thomas Andersen",
                "editorEmail": "post@lundeandersen.com",
                "editorMsisdn": "",
                "fkmember": false
            },
            "duration": "00:28:48",
            "categories": [
                "Religion og livssyn"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": false,
            "refUrl": "http://www.la-media.no",
            "createdTime": "2011-02-04T13:35:22.400000Z",
            "updatedTime": "2018-11-10T18:29:28.757434Z",
            "uploadedTime": "2011-02-04T13:35:22.400000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/624259/theora/5275_279cb7b8f6cf4a84b03545e63579c366.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/624259/large_thumb/large.jpg"
        },
        {
            "id": 624258,
            "name": "Hap 1",
            "header": null,
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/624258/theora/5302_39fcb84037b040ce8cce70f212bbfc53.ogv",
                "smallThumb": "https://upload.frikanalen.no/media/624258/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/624258/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/624258/broadcast/5302_b6f44a7b61054724836bc5137de6b87e.avi",
                "largeThumb": "https://upload.frikanalen.no/media/624258/large_thumb/large.jpg"
            },
            "creator": "geir.sandvik@norea.no",
            "organization": {
                "id": 60,
                "name": "Norea Mediemisjon",
                "homepage": null,
                "description": "",
                "postalAddress": null,
                "streetAddress": null,
                "editorId": 1062,
                "editorName": "Geir Sandvik",
                "editorEmail": "geir.sandvik@norea.no",
                "editorMsisdn": "",
                "fkmember": false
            },
            "duration": "00:15:00",
            "categories": [],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": false,
            "refUrl": "",
            "createdTime": "2011-02-11T13:49:14.707000Z",
            "updatedTime": "2018-11-10T18:29:28.758810Z",
            "uploadedTime": "2011-02-11T13:49:14.707000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/624258/theora/5302_39fcb84037b040ce8cce70f212bbfc53.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/624258/large_thumb/large.jpg"
        },
        {
            "id": 625054,
            "name": "AR6321 Arena",
            "header": "Arena med Bjørn Gjellum.",
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/625054/theora/orig_f9b8f19a0966411995267d8ce8765723.ogv",
                "original": "https://upload.frikanalen.no/media/625054/original/orig_f9b8f19a0966411995267d8ce8765723.mpg",
                "smallThumb": "https://upload.frikanalen.no/media/625054/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/625054/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/625054/broadcast/6564_b9bb5187960c437bb24e01842348d882.avi",
                "largeThumb": "https://upload.frikanalen.no/media/625054/large_thumb/large.jpg"
            },
            "creator": "bjorn.gjellum@estv.no",
            "organization": {
                "id": 36,
                "name": "Evangeliesenteret",
                "homepage": null,
                "description": "",
                "postalAddress": null,
                "streetAddress": null,
                "editorId": null,
                "editorName": "Ingen redaktør!",
                "editorEmail": null,
                "editorMsisdn": null,
                "fkmember": false
            },
            "duration": "00:25:49",
            "categories": [
                "Samfunn og politikk"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": true,
            "refUrl": "",
            "createdTime": "2012-11-13T11:32:24.180000Z",
            "updatedTime": "2018-11-10T18:29:27.717358Z",
            "uploadedTime": "2012-11-13T11:32:24.180000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/625054/theora/orig_f9b8f19a0966411995267d8ce8765723.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/625054/large_thumb/large.jpg"
        },
        {
            "id": 625680,
            "name": "What is Debian? - Debconf 16",
            "header": "A friendly introduction to free software, open source, and Debian, with an opportunity for the audience to ask questions.\n\nOpen Weekend session with Bdale Garbee, Allison Randal, Neil McGovern, Bernelle Verster, Steve McIntyre and John Sullivan during Debconf 16",
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/625680/theora/What_is_Open_Source_and_how_does_Debian_fit_in_to_that.ogv",
                "broadcast": "https://upload.frikanalen.no/media/625680/broadcast/What_is_Open_Source_and_how_does_Debian_fit_in_to_that.dv",
                "smallThumb": "https://upload.frikanalen.no/media/625680/small_thumb/What_is_Open_Source_and_how_does_Debian_fit_in_to_that.jpg",
                "original": "https://upload.frikanalen.no/media/625680/original/What_is_Open_Source_and_how_does_Debian_fit_in_to_that.webm",
                "largeThumb": "https://upload.frikanalen.no/media/625680/large_thumb/What_is_Open_Source_and_how_does_Debian_fit_in_to_that.jpg"
            },
            "creator": "pere@hungry.com",
            "organization": {
                "id": 82,
                "name": "NUUG",
                "homepage": "https://www.nuug.no/",
                "description": "Forening NUUG er for alle som er interessert i fri programvare, åpne standarder og Unix-lignende operativsystemer.",
                "postalAddress": "Norwegian Unix User Group\r\nCSS Mailboks 70, Middelthunsgate 25\r\n0368 OSLO",
                "streetAddress": "",
                "editorId": 2240,
                "editorName": "Peter M. M. Hansteen",
                "editorEmail": "peter@bsdly.net",
                "editorMsisdn": "",
                "fkmember": true
            },
            "duration": "00:43:01.880000",
            "categories": [
                "Samfunn og politikk"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": true,
            "refUrl": "https://debconf16.debconf.org/talks/120/",
            "createdTime": "2016-07-20T07:10:24.249022Z",
            "updatedTime": "2018-11-10T18:29:26.879342Z",
            "uploadedTime": "2016-07-20T07:10:29.322512Z",
            "ogvUrl": "https://upload.frikanalen.no/media/625680/theora/What_is_Open_Source_and_how_does_Debian_fit_in_to_that.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/625680/large_thumb/What_is_Open_Source_and_how_does_Debian_fit_in_to_that.jpg"
        },
        {
            "id": 624253,
            "name": "De Levende Ord",
            "header": "De Levende Ord med Tommy M. Josefsson",
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/624253/theora/5289_37f0d311e5194b62b302d0ff031d63cd.ogv",
                "original": "https://upload.frikanalen.no/media/624253/original/orig_75d36a204b554c59812cf4cf666cdef3.avi",
                "smallThumb": "https://upload.frikanalen.no/media/624253/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/624253/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/624253/broadcast/5289_27c49c8fe8a94000b7df7cbad0b8a19f.avi",
                "largeThumb": "https://upload.frikanalen.no/media/624253/large_thumb/large.jpg"
            },
            "creator": "tvom@glorynet.eu",
            "organization": {
                "id": 12,
                "name": "The voice of mission",
                "homepage": null,
                "description": "",
                "postalAddress": null,
                "streetAddress": null,
                "editorId": null,
                "editorName": "Ingen redaktør!",
                "editorEmail": null,
                "editorMsisdn": null,
                "fkmember": false
            },
            "duration": "00:29:00",
            "categories": [
                "Religion og livssyn"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": false,
            "refUrl": "",
            "createdTime": "2011-02-10T08:36:23.317000Z",
            "updatedTime": "2018-11-10T18:29:28.764317Z",
            "uploadedTime": "2011-02-10T08:36:23.317000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/624253/theora/5289_37f0d311e5194b62b302d0ff031d63cd.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/624253/large_thumb/large.jpg"
        },
        {
            "id": 624252,
            "name": "Verdens Gjenfødelse",
            "header": "Verdens Gjenfødelse\nmed Hans Bratterud",
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/624252/theora/5286_6dc630514c3c406e83e9cb373cfa3c2b.ogv",
                "original": "https://upload.frikanalen.no/media/624252/original/orig_cd6ed6d242724bfd943cbb6ff3258850.avi",
                "smallThumb": "https://upload.frikanalen.no/media/624252/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/624252/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/624252/broadcast/5286_59fd4ada7fa542b8acde3efeb104b706.avi",
                "largeThumb": "https://upload.frikanalen.no/media/624252/large_thumb/large.jpg"
            },
            "creator": "tvom@glorynet.eu",
            "organization": {
                "id": 12,
                "name": "The voice of mission",
                "homepage": null,
                "description": "",
                "postalAddress": null,
                "streetAddress": null,
                "editorId": null,
                "editorName": "Ingen redaktør!",
                "editorEmail": null,
                "editorMsisdn": null,
                "fkmember": false
            },
            "duration": "00:28:55.720000",
            "categories": [
                "Religion og livssyn"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": false,
            "refUrl": "",
            "createdTime": "2011-02-10T08:08:35.493000Z",
            "updatedTime": "2018-11-10T18:29:28.765805Z",
            "uploadedTime": "2011-02-10T08:08:35.493000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/624252/theora/5286_6dc630514c3c406e83e9cb373cfa3c2b.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/624252/large_thumb/large.jpg"
        },
        {
            "id": 624251,
            "name": "TED - Lær alle barn om mat",
            "header": "TED-prisvinner Jamie Oliver deler mektige historier fra sitt anti-overvektsprosjekt i Huntington, West Virginia, samt et sjokkerende bilde av sukkeret som vi spiser, når han gjør et frontalangrep på vår mat-ignoranse.",
            "description": "",
            "files": {
                "theora": "https://upload.frikanalen.no/media/624251/theora/5288_a841ed0b494f429487d9679fadf45c19.ogv",
                "smallThumb": "https://upload.frikanalen.no/media/624251/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/624251/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/624251/broadcast/5288_0e015652fcc0441499ce3e4336b31f1b.avi",
                "largeThumb": "https://upload.frikanalen.no/media/624251/large_thumb/large.jpg"
            },
            "creator": "jarle@bjorgeengen.net",
            "organization": {
                "id": 82,
                "name": "NUUG",
                "homepage": "https://www.nuug.no/",
                "description": "Forening NUUG er for alle som er interessert i fri programvare, åpne standarder og Unix-lignende operativsystemer.",
                "postalAddress": "Norwegian Unix User Group\r\nCSS Mailboks 70, Middelthunsgate 25\r\n0368 OSLO",
                "streetAddress": "",
                "editorId": 2240,
                "editorName": "Peter M. M. Hansteen",
                "editorEmail": "peter@bsdly.net",
                "editorMsisdn": "",
                "fkmember": true
            },
            "duration": "00:20:18.720000",
            "categories": [
                "Samfunn og politikk"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": true,
            "refUrl": "http://www.nuug.no",
            "createdTime": "2011-02-10T08:22:09Z",
            "updatedTime": "2018-11-10T18:29:28.767236Z",
            "uploadedTime": "2011-02-10T08:22:09Z",
            "ogvUrl": "https://upload.frikanalen.no/media/624251/theora/5288_a841ed0b494f429487d9679fadf45c19.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/624251/large_thumb/large.jpg"
        },
        {
            "id": 624250,
            "name": "TED - Verden trenger alle hjerner",
            "header": "Temple Grandin fick diagnosen autism som barn, och talar om hur hennes sinne fungerar. Hon delar med sig av sin förmåga att \"tänka bildligt\", som har hjälpt henne lösa problem typiska hjärnor missar. Hon argumenterar att världen behöver människor i autismspektrumet: bildliga tänkare, mönstertänkande och alla möjliga smarta nördar.",
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/624250/theora/5284_a4d1c4a20a5f4b75857951364bf06eb7.ogv",
                "smallThumb": "https://upload.frikanalen.no/media/624250/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/624250/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/624250/broadcast/5284_a4d1c4a20a5f4b75857951364bf06eb7.avi",
                "largeThumb": "https://upload.frikanalen.no/media/624250/large_thumb/large.jpg"
            },
            "creator": "jarle@bjorgeengen.net",
            "organization": {
                "id": 82,
                "name": "NUUG",
                "homepage": "https://www.nuug.no/",
                "description": "Forening NUUG er for alle som er interessert i fri programvare, åpne standarder og Unix-lignende operativsystemer.",
                "postalAddress": "Norwegian Unix User Group\r\nCSS Mailboks 70, Middelthunsgate 25\r\n0368 OSLO",
                "streetAddress": "",
                "editorId": 2240,
                "editorName": "Peter M. M. Hansteen",
                "editorEmail": "peter@bsdly.net",
                "editorMsisdn": "",
                "fkmember": true
            },
            "duration": "00:19:39.540000",
            "categories": [
                "Samfunn og politikk"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": true,
            "refUrl": "http://www.nuug.no",
            "createdTime": "2011-02-08T15:30:14.220000Z",
            "updatedTime": "2018-11-10T18:29:28.768682Z",
            "uploadedTime": "2011-02-08T15:30:14.220000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/624250/theora/5284_a4d1c4a20a5f4b75857951364bf06eb7.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/624250/large_thumb/large.jpg"
        },
        {
            "id": 623558,
            "name": "17_10 Østfoldkirken",
            "header": null,
            "description": null,
            "files": {
                "theora": "https://upload.frikanalen.no/media/623558/theora/4193_a516b53265c14fe2886eb27c81b7201c.ogv",
                "original": "https://upload.frikanalen.no/media/623558/original/orig_cfe32188125f496f806d846fcada61ea.mpg",
                "smallThumb": "https://upload.frikanalen.no/media/623558/small_thumb/small.jpg",
                "medThumb": "https://upload.frikanalen.no/media/623558/med_thumb/medium.jpg",
                "broadcast": "https://upload.frikanalen.no/media/623558/broadcast/4193_be912ad129864a24bf2afd3d7a84669d.avi",
                "largeThumb": "https://upload.frikanalen.no/media/623558/large_thumb/large.jpg"
            },
            "creator": "post@lundeandersen.com",
            "organization": {
                "id": 51,
                "name": "Østfoldkirken",
                "homepage": null,
                "description": "",
                "postalAddress": null,
                "streetAddress": null,
                "editorId": 1437,
                "editorName": "Thomas Andersen",
                "editorEmail": "post@lundeandersen.com",
                "editorMsisdn": "",
                "fkmember": false
            },
            "duration": "00:28:10",
            "categories": [
                "Religion og livssyn"
            ],
            "framerate": 25000,
            "properImport": true,
            "hasTonoRecords": false,
            "publishOnWeb": true,
            "isFiller": false,
            "refUrl": "http://www.la-media.no",
            "createdTime": "2010-04-06T08:32:09.873000Z",
            "updatedTime": "2018-11-10T18:29:29.648463Z",
            "uploadedTime": "2010-04-06T08:32:09.873000Z",
            "ogvUrl": "https://upload.frikanalen.no/media/623558/theora/4193_a516b53265c14fe2886eb27c81b7201c.ogv",
            "largeThumbnailUrl": "https://upload.frikanalen.no/media/623558/large_thumb/large.jpg"
        }
    ]
}