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

0001 {
0002     "name": "Freesound",
0003     "homepage": "https://freesound.org",
0004     "type": "sound",
0005     "integration": "buildin",
0006     "downloadOAuth2": true,
0007     "clientkey": "%freesound_apikey%",
0008     "api": {
0009         "root": "https://freesound.org/apiv2",
0010         "oauth2": {
0011             "authorizationUrl": "https://freesound.org/apiv2/oauth2/authorize/",
0012             "accessTokenUrl": "https://freesound.org/apiv2/oauth2/access_token/",
0013             "clientId": "fFo1lNyrTSJDp5PAGgKg"
0014         },
0015         "search": {
0016             "req": {
0017                 "path": "/search/text/",
0018                 "method": "GET",
0019                 "params": [
0020                     { "key": "format", "value": "json" },
0021                     { "key": "fields", "value": "id,url,name,description,license,filesize,duration,username,download,previews,images,type" },
0022                     { "key": "filter", "value": "license:(\"Attribution\"+OR+\"Creative+Commons+0\")"},
0023                     { "key": "page_size", "value": "%perpage%" },
0024                     { "key": "page", "value": "%pagenum%" },
0025                     { "key": "query", "value": "%query%" },
0026                     { "key": "token", "value": "%clientkey%" }
0027                 ]
0028             },
0029             "res": {
0030                 "format": "json",
0031                 "resultCount":"count",
0032                 "list":"results",
0033                 "name":"name",
0034                 "filetype":"type",
0035                 "id":"id",
0036                 "url":"url",
0037                 "licenseUrl":"license",
0038                 "description": "description",
0039                 "author": "username",
0040                 "authorUrl": "$https://freesound.org/people/{username}",
0041                 "duration": "duration",
0042                 "filesize":"filesize",
0043                 "downloadUrl": "download",
0044                 "previewUrl": "previews.preview-hq-mp3",
0045                 "imageUrl": "images.waveform_m"
0046             }
0047         }
0048     }
0049 }