{"id":28504717,"url":"https://github.com/tapioca24/videojs-remnant","last_synced_at":"2025-07-06T09:31:30.287Z","repository":{"id":47943128,"uuid":"220201738","full_name":"tapioca24/videojs-remnant","owner":"tapioca24","description":"A video.js plugin to leave the last frame video at the end of playback.","archived":false,"fork":false,"pushed_at":"2021-08-11T16:07:51.000Z","size":1569,"stargazers_count":3,"open_issues_count":13,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-23T01:35:57.384Z","etag":null,"topics":["video","videojs"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tapioca24.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-11-07T09:42:48.000Z","updated_at":"2021-07-27T01:24:25.000Z","dependencies_parsed_at":"2022-08-12T14:50:25.500Z","dependency_job_id":null,"html_url":"https://github.com/tapioca24/videojs-remnant","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tapioca24%2Fvideojs-remnant","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tapioca24%2Fvideojs-remnant/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tapioca24%2Fvideojs-remnant/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tapioca24%2Fvideojs-remnant/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tapioca24","download_url":"https://codeload.github.com/tapioca24/videojs-remnant/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tapioca24%2Fvideojs-remnant/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":258760149,"owners_count":22753313,"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":["video","videojs"],"created_at":"2025-06-08T18:30:36.194Z","updated_at":"2025-07-06T09:31:30.281Z","avatar_url":"https://github.com/tapioca24.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# videojs-remnant\n\nA video.js plugin to leave the last frame video at the end of playback.  \nThis is useful when playing a video that has been split into multiple files.\n\n## Table of Contents\n\n\u003c!-- START doctoc generated TOC please keep comment here to allow auto update --\u003e\n\u003c!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --\u003e\n\n\n- [Installation](#installation)\n- [Usage](#usage)\n  - [`\u003cscript\u003e` Tag](#script-tag)\n  - [Browserify/CommonJS](#browserifycommonjs)\n  - [Browserify/ES6](#browserifyes6)\n  - [RequireJS/AMD](#requirejsamd)\n  - [TypeScript](#typescript)\n- [Configuration](#configuration)\n- [License](#license)\n\n\u003c!-- END doctoc generated TOC please keep comment here to allow auto update --\u003e\n\n## Installation\n\n```sh\nnpm install --save videojs-remnant\n```\n\n## Usage\n\nTo include videojs-remnant on your website or web application, use any of the following methods.\n\n### `\u003cscript\u003e` Tag\n\nThis is the simplest case. Get the script in whatever way you prefer and include the plugin _after_ you include [video.js][videojs], so that the `videojs` global is available.\n\n```html\n\u003cscript src=\"//path/to/video.min.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"//path/to/videojs-remnant.min.js\"\u003e\u003c/script\u003e\n\u003cscript\u003e\n  var player = videojs(\"my-video\");\n\n  player.remnant();\n\u003c/script\u003e\n```\n\n### Browserify/CommonJS\n\nWhen using with Browserify, install videojs-remnant via npm and `require` the plugin as you would any other module.\n\n```js\nvar videojs = require(\"video.js\");\n\n// The actual plugin function is exported by this module, but it is also\n// attached to the `Player.prototype`; so, there is no need to assign it\n// to a variable.\nrequire(\"videojs-remnant\");\n\nvar player = videojs(\"my-video\");\n\nplayer.remnant();\n```\n\n### Browserify/ES6\n\nWhen using with Browserify, install videojs-remnant via npm and `import` the plugin as you would any other module.\n\n```js\nimport videojs from \"video.js\";\n\n// The actual plugin function is exported by this module, but it is also\n// attached to the `Player.prototype`; so, there is no need to assign it\n// to a variable.\nimport \"videojs-remnant\";\n\nconst player = videojs(\"my-video\");\n\nplayer.remnant();\n```\n\n### RequireJS/AMD\n\nWhen using with RequireJS (or another AMD library), get the script in whatever way you prefer and `require` the plugin as you normally would:\n\n```js\nrequire([\"video.js\", \"videojs-remnant\"], function(videojs) {\n  var player = videojs(\"my-video\");\n\n  player.remnant();\n});\n```\n\n### TypeScript\n\nWhen using with TypeScript, install videojs-remnant via npm and `import` the plugin as you would any other module.  \nYou can use the `VideoJsRemnant` namespace.\n\n```ts\nimport videojs, { VideoJsRemnant } from \"video.js\";\nimport \"videojs-remnant\";\n\nconst player = videojs(\"my-video\");\n\nconst options: VideoJsRemnant.Options = {\n  disableColorCorrection: true\n};\nplayer.remnant(options);\n```\n\n## Configuration\n\n| Property               | Attributes | Type    | Default value | Description                      |\n| ---------------------- | ---------- | ------- | ------------- | -------------------------------- |\n| disableColorCorrection | Optional   | Boolean | false         | Disable canvas color correction. |\n\n## License\n\nMIT. Copyright (c) tapioca24\n\n[videojs]: http://videojs.com/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftapioca24%2Fvideojs-remnant","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftapioca24%2Fvideojs-remnant","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftapioca24%2Fvideojs-remnant/lists"}