{"id":19269961,"url":"https://github.com/push-in/vue-full-player-video","last_synced_at":"2026-03-01T11:33:59.691Z","repository":{"id":57158252,"uuid":"383216278","full_name":"push-in/vue-full-player-video","owner":"push-in","description":null,"archived":false,"fork":false,"pushed_at":"2021-07-15T19:50:18.000Z","size":695,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-15T04:19:12.453Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Vue","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/push-in.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":"2021-07-05T17:23:23.000Z","updated_at":"2021-07-15T19:50:04.000Z","dependencies_parsed_at":"2022-08-26T09:51:11.036Z","dependency_job_id":null,"html_url":"https://github.com/push-in/vue-full-player-video","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/push-in/vue-full-player-video","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/push-in%2Fvue-full-player-video","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/push-in%2Fvue-full-player-video/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/push-in%2Fvue-full-player-video/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/push-in%2Fvue-full-player-video/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/push-in","download_url":"https://codeload.github.com/push-in/vue-full-player-video/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/push-in%2Fvue-full-player-video/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29968526,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-01T10:55:55.490Z","status":"ssl_error","status_checked_at":"2026-03-01T10:55:55.175Z","response_time":124,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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-11-09T20:22:43.904Z","updated_at":"2026-03-01T11:33:59.672Z","avatar_url":"https://github.com/push-in.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vue-full-player-video\n\nIt's a simple player of video with vue, base controls and playlist\n\n# install\n\nnpm i --save vue-full-player-video\n\n\n\n### Example to use\n```\n\u003ctemplate\u003e\n  \u003cdiv id=\"app\"\u003e\n    \u003cFullPlayer\n      :src=\"src\"\n      width=\"80%\"\n      @onPlayPause=\"onPlayPause\"\n      @muted=\"muted\"\n      @onChangeVolume=\"onChangeVolume\"\n      @onEnded=\"onEnded\"\n    /\u003e\n\n    \u003cdiv\u003e\n      \u003cbutton @click=\"setPlay\"\u003eTest Video\u003c/button\u003e\n      \u003cbutton @click=\"setArray\"\u003eTest Video Playlist\u003c/button\u003e\n    \u003c/div\u003e\n\n    \n  \u003c/div\u003e\n\u003c/template\u003e\n\n\u003cscript\u003e\nimport FullPlayer from 'vue-full-player-video'\nexport default {\n  name: 'App',\n  components: {\n    FullPlayer\n  },\n  data: () =\u003e {\n    return {\n      src: null\n    }\n  },\n  methods: {\n    setArray () {\n      this.src = [\n        {\n          title: 'GOKU SOLA',\n          src: 'http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4',\n          poster: \"https://coolthemestores.com/wp-content/uploads/2020/11/naruto-features.jpg\"\n        },\n\n        {\n          title: 'TEST',\n          src: 'http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4',\n          poster: 'https://i.pinimg.com/originals/db/f4/af/dbf4af88edfe3d1b13c517aa0a933305.jpg'\n        }\n      ]\n    },\n    setPlay () {\n      this.src = {\n        src: 'http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4',\n        title: 'GOKU SOLA',\n        poster: 'https://coolthemestores.com/wp-content/uploads/2020/11/naruto-features.jpg'\n      }\n    },\n\n    onPlayPause (event) {\n      console.log(event)\n    },\n\n    muted (event) {\n      console.log(event)\n    },\n\n    onChangeVolume (event) {\n      console.log(event)\n    },\n\n    onEnded (event) {\n      console.log(event)\n    }\n  }\n}\n\u003c/script\u003e\n\n\n```\n\n\n\n## Props\n\n| Name | Type | Default | Example\n| --- | --- | --- | --- |\n| src | array or object |  |\n| width | string | null | \"50%\" or \"300px\"\n\n\n## Events\n\n| Name | Return |\n| --- | --- |\n| onPlayPause | \"played\" or \"paused\" |\n| muted | true or false |\n| onChangeVolume | number of volume. min 0 and max 10 |\n| onEnded | true |\n\n\n## Future resources\n\nAuto next video\n\nDo you have any more ideas? open a PR :)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpush-in%2Fvue-full-player-video","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpush-in%2Fvue-full-player-video","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpush-in%2Fvue-full-player-video/lists"}