{"id":9825543,"url":"https://github.com/Fausto95/jw-player-api","last_synced_at":"2025-08-28T14:32:19.732Z","repository":{"id":57287691,"uuid":"148830762","full_name":"Fausto95/jw-player-api","owner":"Fausto95","description":"A library wrapper around JW Player API","archived":true,"fork":false,"pushed_at":"2022-04-06T08:39:52.000Z","size":192,"stargazers_count":10,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-08-04T18:13:01.215Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/jwplayer-sdk","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Fausto95.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-09-14T19:04:00.000Z","updated_at":"2023-03-08T16:51:24.000Z","dependencies_parsed_at":"2022-09-06T22:11:25.974Z","dependency_job_id":null,"html_url":"https://github.com/Fausto95/jw-player-api","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Fausto95%2Fjw-player-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Fausto95%2Fjw-player-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Fausto95%2Fjw-player-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Fausto95%2Fjw-player-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Fausto95","download_url":"https://codeload.github.com/Fausto95/jw-player-api/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":217591168,"owners_count":16201436,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-05-18T01:09:06.104Z","updated_at":"2024-09-01T17:31:12.148Z","avatar_url":"https://github.com/Fausto95.png","language":"TypeScript","funding_links":[],"categories":["Uncategorized"],"sub_categories":["Uncategorized"],"readme":"🚨🚨🚨 STALE 🚨🚨🚨\n\n\u003e While this library might still work, I'm no longer maintaining it. Feel free to fork and patch if needed.\n\n\n`Examples`: https://repl.it/@Fausto95/jwplayer-sdk\n\n`API-Reference`: https://jwplayer-sdk.netlify.com/\n\n# 🔧 Installation\n```shell\nyarn add jwplayer-sdk\n```\n# ⚙️ Usage\n\n```js\n\n\n\n// ES Modules\nimport JWPlayer from 'jwplayer-sdk';\n\n//initializating...\nconst JWAPI = new JWPlayer({\n  apiKey: 'your apiKey goes here',\n  secretKey: 'your secreteKey goes here',\n});\n\n\nconst videos = await JWAPI.getAllVideos(params); // params are optional\n/*\n  result: [\n    {\n      views: 0,\n      height: 400,\n      cloudHostedPlayer: 'https://content.jwplatform.com/libraries/dfNGJds0.js',\n      key: 'dfNGJds0',\n      skin: { type: 'built-in', name: 'Default', key: 'M03UUDt9' },\n      responsive: false,\n      playlist: 'none',\n      releaseChannel: 'production',\n      name: 'My Player',\n      custom: {},\n      width: 400,\n      version: '8',\n      ltasChannel: null\n    }\n  ]\n*/\n```\n\n### Current Available Features:\n\n```typescript\n// Player\n  .getAllPlayers(params: Object) // Optional\n  .getPlayer(playerKey: String) // Required\n  .createPlayer(params: Object) // Required\n  .updatePlayer(playerKey: String, params: Object) // Both required\n  .deletePlayer(playerKey: String) // Required\n\n// Videos\n  .getAllVideos(params: Object) // Optional\n  .getVideo(videoKey: String) // Required\n  .uploadVideo(file: ReadableStream, params: Object) // Params is optional\n  .fetchUpload(url: String, params: Object) // Url is Required\n  .batchFetchUpload(content: Object) // Content is Required\n  .updateVideo(videoKey: String, params: Object) // Both required\n  .deleteVideo(videoKey: String) // Required\n\n//Videos Thumbnails\n  .modifyThumbnailFrame(videoKey: String, params: Object) // Both Required\n  .uploadThumbnail(videoKey: String, imageFile: ReadableStream) // Both Required\n````\n\n## Contributing\n\nYou must have a JwPlayer account!\nClone the repo\n```shell\ngit clone https://github.com/Fausto95/jw-player-api.git\n```\nInstall the dependencies\n```shell\nnpm install\n```\n\nMake your changes, test and send a PR\n\n## Roadmap (API)\n- [ ] /accounts\n- [ ] /accounts/tags\n- [ ] /accounts/usage\n- [ ] /channels\n- [ ] /channels/videos\n- [x] /players\n- [ ] /status\n- [x] /videos\n- [ ] /videos/converstations\n- [ ] /videos/tags\n- [x] /videos/thumbnails\n- [ ] /videos/tracks\n- [x] /fetch-upload\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FFausto95%2Fjw-player-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FFausto95%2Fjw-player-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FFausto95%2Fjw-player-api/lists"}