{"id":13760505,"url":"https://github.com/flowplayer/flowplayer","last_synced_at":"2025-10-22T21:03:34.447Z","repository":{"id":4825623,"uuid":"5979499","full_name":"flowplayer/flowplayer","owner":"flowplayer","description":"The HTML5 video player for the web","archived":true,"fork":false,"pushed_at":"2021-09-30T13:27:34.000Z","size":3185,"stargazers_count":1928,"open_issues_count":12,"forks_count":469,"subscribers_count":180,"default_branch":"dev","last_synced_at":"2025-05-09T05:13:09.599Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"aitorciki/testuki","license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/flowplayer.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.js","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-09-27T08:40:27.000Z","updated_at":"2025-05-07T09:48:37.000Z","dependencies_parsed_at":"2022-08-30T14:50:07.889Z","dependency_job_id":null,"html_url":"https://github.com/flowplayer/flowplayer","commit_stats":null,"previous_names":[],"tags_count":40,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flowplayer%2Fflowplayer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flowplayer%2Fflowplayer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flowplayer%2Fflowplayer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flowplayer%2Fflowplayer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/flowplayer","download_url":"https://codeload.github.com/flowplayer/flowplayer/tar.gz/refs/heads/dev","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253409860,"owners_count":21903979,"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-08-03T13:01:11.706Z","updated_at":"2025-10-22T21:03:34.047Z","avatar_url":"https://github.com/flowplayer.png","language":"JavaScript","readme":"\n# Flowplayer\n\nNote! This archived repository contains the old open-source player called Flowplayer 7. Merely for history purposes.\n\nFor more recent offerings consider visiting our website.\n\n[website](https://flowplayer.com) | [demos](https://flowplayer.com/demos/) | [docs](https://flowplayer.com/docs/)\n\n## For the impatient\n\n1. [Download Flowplayer](https://flowplayer.com/download/)\n2. Unzip\n3. Drop the folder under your server\n\n\n## Minimal setup\n\n```html\n\u003c!DOCTYPE html\u003e\n\n\u003chead\u003e\n   \u003c!-- flowplayer depends on jQuery 1.7.1+ (for now) --\u003e\n   \u003cscript type=\"text/javascript\" src=\"//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js\"\u003e\u003c/script\u003e\n\n   \u003c!-- flowplayer.js --\u003e\n   \u003cscript type=\"text/javascript\" src=\"flowplayer.min.js\"\u003e\u003c/script\u003e\n\n   \u003c!-- player styling --\u003e\n   \u003clink rel=\"stylesheet\" type=\"text/css\" href=\"flowplayer/minimalist.css\"\u003e\n\n\u003c/head\u003e\n\n\u003cbody\u003e\n\n   \u003c!-- player 1 --\u003e\n   \u003cdiv class=\"flowplayer\"\u003e\n      \u003cvideo src=\"my-video.mp4\"\u003e\u003c/video\u003e\n   \u003c/div\u003e\n\n   \u003c!-- player 2 --\u003e\n   \u003cdiv class=\"flowplayer\"\u003e\n      \u003cvideo\u003e\n         \u003csource type=\"video/webm\" src=\"my-video2.webm\"\u003e\n         \u003csource type=\"video/mp4\" src=\"my-video2.mp4\"\u003e\n      \u003c/video\u003e\n   \u003c/div\u003e\n\n\u003c/body\u003e\n\n```\n\n## API Samples\n\n```js\n// listen to events on second player\nflowplayer(1).bind(\"load\", function (e, api, video) {\n\n}).bind(\"pause\", function (e, api) {\n\n});\n\n// work with jQuery\n$(\".flowplayer\").bind(\"unload\", function (e, api) {\n\n});\n```\n\n## Compiling Flash\n\n- Download [Open Source Flex SDK, v4.5.1](http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+4.5)\n\n```\nexport mxmlc=\u003cPATH_TO\u003e/flex_sdk_4.5.1.21328_mpl/bin/mxmlc\ncd ./flowplayer # this repository\nmake flash\n```\n\n## Reporting bugs\n\nPlease read the [contributing guidelines](CONTRIBUTING.md) before reporting issues or submitting patches.\n\n## Running tests\n\nOur automated test suite is sponsored by [BrowserStack](http://browserstack.com). Thanks you!\n\n### Running locally\n\nTests are run on [BrowserStack](http://browserstack.com)\n\n * Install dependencies: `bundle install`\n * Setup broserstack tunnel: `java -jar features/support/BrowserStackTunnel.jar -f \u003cyour tunnel api key\u003e /path/to/flowplayer/repo`\n * Run cucumber features: `rake username=\u003cbrowserstack username\u003e key=\u003cbroserstack automate api key\u003e base_url=http://\u003csomething\u003e.browserstack.com`\n\n## License\n\n[GPL v3 with an ADDITIONAL TERM per GPL Section 7](LICENSE.md)\n\nCopyright (c) 2012 Flowplayer Ltd\n","funding_links":[],"categories":["Video/Audio","HarmonyOS","Uncategorized"],"sub_categories":["Other","Windows Manager","Uncategorized"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflowplayer%2Fflowplayer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflowplayer%2Fflowplayer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflowplayer%2Fflowplayer/lists"}