Warning, /multimedia/kdenlive/data/resourceproviders/archiveorg.json is written in an unsupported language. File is not indexed.

0001 {
0002     "name": "Internet Archive Movies",
0003     "homepage": "https://archive.org",
0004     "description": "",
0005     "type": "video",
0006     "logoUrl":"",
0007     "integration": "buildin",
0008     "attributionHtml":"",
0009     "apikey":"",
0010     "api": {
0011         "root": "https://archive.org",
0012         "search": {
0013             "req": {
0014                 "path": "/advancedsearch.php",
0015                 "method": "GET",
0016                 "params": [
0017                     { "key": "rows", "value": "%perpage%" },
0018                     { "key": "page", "value": "%pagenum%" },
0019                     { "key": "output", "value": "json"},
0020                     { "key": "fl[]", "value": "creator"},
0021                     { "key": "fl[]", "value": "description"},
0022                     { "key": "fl[]", "value": "identifier"},
0023                     { "key": "fl[]", "value": "licenseurl"},
0024                     { "key": "fl[]", "value": "title"},
0025                     { "key": "q", "value": "(%query%)+AND+mediatype:(movies)" }
0026                 ]
0027             },
0028             "res": {
0029                 "format": "json",
0030                 "resultCount":"response.numFound",
0031                 "list":"response.docs",
0032                 "name": "title",
0033                 "id":"identifier",
0034                 "url":"$http://archive.org/details/{identifier}",
0035                 "licenseUrl":"licenseurl",
0036                 "attributionText": "%generateDefault",
0037                 "description": "description",
0038                 "author": "creator",
0039                 "width": "width",
0040                 "height": "height",
0041                 "imageUrl": "image"
0042             }
0043         },
0044         "downloadUrls": {
0045             "req": {
0046                 "path": "/details/%id%",
0047                 "method": "GET",
0048                 "params": [
0049                     { "key": "output", "value": "json"}
0050                 ]
0051             },
0052             "res": {
0053                 "format": "json",
0054                 "downloadUrls": {"key":"files", "isObject":true, "url":"$http://archive.org/download/%id%{&}", "format": "format", "name":"${source} {format} {width}x{height}"}
0055             }
0056         }
0057     }
0058 }