{"id":38232645,"url":"https://github.com/digiz3d/docker-web-recorder","last_synced_at":"2026-01-17T01:01:45.220Z","repository":{"id":159354237,"uuid":"634598019","full_name":"digiz3d/docker-web-recorder","owner":"digiz3d","description":"A docker image to record/stream web pages","archived":false,"fork":false,"pushed_at":"2026-01-14T22:57:16.000Z","size":265,"stargazers_count":24,"open_issues_count":2,"forks_count":4,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-15T04:59:01.911Z","etag":null,"topics":["chromium","docker","live","react","recording","rtmp","streaming","video"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/digiz3d.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-04-30T16:42:15.000Z","updated_at":"2025-11-18T15:22:45.000Z","dependencies_parsed_at":"2023-12-30T04:23:49.323Z","dependency_job_id":"60264cca-03ed-433d-9d01-30c93c8e2011","html_url":"https://github.com/digiz3d/docker-web-recorder","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/digiz3d/docker-web-recorder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/digiz3d%2Fdocker-web-recorder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/digiz3d%2Fdocker-web-recorder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/digiz3d%2Fdocker-web-recorder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/digiz3d%2Fdocker-web-recorder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/digiz3d","download_url":"https://codeload.github.com/digiz3d/docker-web-recorder/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/digiz3d%2Fdocker-web-recorder/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28490904,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T00:50:05.742Z","status":"ssl_error","status_checked_at":"2026-01-17T00:43:11.982Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["chromium","docker","live","react","recording","rtmp","streaming","video"],"created_at":"2026-01-17T01:01:44.079Z","updated_at":"2026-01-17T01:01:45.189Z","avatar_url":"https://github.com/digiz3d.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Docker Web Recorder\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://hub.docker.com/r/digiz3d/web-recorder  \" alt=\"Latest docker image version\"\u003e\n    \u003cimg src=\"https://img.shields.io/docker/v/digiz3d/web-recorder/latest\" /\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://hub.docker.com/r/digiz3d/web-recorder\" alt=\"Docker pulls\"\u003e\n    \u003cimg src=\"https://img.shields.io/docker/pulls/digiz3d/web-recorder\" /\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\nDocker image to record or stream a website with video and sound.\n\n# Building the image\n\n```bash\ndocker build -t docker-web-recorder:latest .\n```\n\n# Usage\n\n## Record a file\n\n```bash\ndocker run --rm -v /absolute/path/to/your/recordings:/app/recordings -e OUTPUT=video.mp4 -e URL=https://example.com/video/123456 -e DURATION=25 -it docker-web-recorder:latest\n```\n\n## Record and send to Google Cloud Storage (GCS)\n\n```bash\ndocker run --rm -e OUTPUT=gs://somebucket/path/video.mp4 -e GOOGLE_APPLICATION_CREDENTIALS=your-json-key -e URL=https://example.com/video/123456 -e DURATION=25 -it docker-web-recorder:latest\n```\n\nThe `GOOGLE_APPLICATION_CREDENTIALS` environment variable can be used if you prefer providing a JSON key instead of using Application Default Credentials.\n\n## Make a livestream\n\n```bash\ndocker run --rm -e OUTPUT=rtmp://example.com/app/your_key_here -e URL=https://example.com/video/123456 -e RATE=1000 -e DURATION=120 -it docker-web-recorder:latest\n```\n\nFor instance if you plan on streaming to Twitch, set the OUTPUT to something like `rtmp://cdg10.contribute.live-video.net/app/live_blablabla`. Depends on [the best Twitch ingest server](https://help.twitch.tv/s/twitch-ingest-recommendation?language=en_US) for you.\n\n## Variables\n\n`DISABLE_AUDIO` optional. If set to `true`, the audio will be disabled. Defaults to `false`.  \n`DURATION` is the length of the recording. No value means infinite  \n`GOOGLE_APPLICATION_CREDENTIALS` optional. Can be used instead of Application Default Credentials when using GCS.  \n`OUTPUT` is the output file/stream. Can either start with `rtmp://`, `gs://` or end with `.mp4`. Defaults to `output.mp4`  \n`RATE` is the constant bitrate (CBR) used for the video. Defaults to `6000`  \n`RESOLUTION` is the resolution of the video. Defaults to `1280x720`  \n`TUNE` is the FFmpeg libx264 [tune setting](https://trac.ffmpeg.org/wiki/Encode/H.264#Tune). Defaults to `zerolatency`  \n`URL` is the webpage to record. Required.\n\n# Contributing\n\nFeel free to open an issue if you have any question or suggestion.  \nPRs are welcome, especially for the following points :clap:\n\n- [x] RTMP(s) stream\n- [x] record to mp4\n- [ ] upload the file\n  - [x] to GCS\n  - [ ] to S3\n- [ ] configuration\n  - [x] resolution\n  - [x] bitrate\n  - [x] framerate\n  - [x] audio\n    - [x] disable\n  - [ ] video codec\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdigiz3d%2Fdocker-web-recorder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdigiz3d%2Fdocker-web-recorder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdigiz3d%2Fdocker-web-recorder/lists"}