{"id":16445789,"url":"https://github.com/mslinn/video_operations","last_synced_at":"2026-05-15T08:34:04.150Z","repository":{"id":214111192,"uuid":"735702978","full_name":"mslinn/video_operations","owner":"mslinn","description":"Provides commands for rotating and stabilizing a video","archived":false,"fork":false,"pushed_at":"2023-12-26T18:58:21.000Z","size":28,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-14T21:51:53.038Z","etag":null,"topics":["ffmpeg","ffmpeg-command","video"],"latest_commit_sha":null,"homepage":"","language":"Ruby","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/mslinn.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"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}},"created_at":"2023-12-25T22:12:34.000Z","updated_at":"2023-12-25T22:13:57.000Z","dependencies_parsed_at":"2023-12-25T23:30:25.971Z","dependency_job_id":"b64426da-9a78-4fe3-b681-9a64e40781e3","html_url":"https://github.com/mslinn/video_operations","commit_stats":null,"previous_names":["mslinn/video_operations"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mslinn/video_operations","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mslinn%2Fvideo_operations","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mslinn%2Fvideo_operations/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mslinn%2Fvideo_operations/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mslinn%2Fvideo_operations/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mslinn","download_url":"https://codeload.github.com/mslinn/video_operations/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mslinn%2Fvideo_operations/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33059511,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"online","status_checked_at":"2026-05-15T02:00:06.351Z","response_time":103,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["ffmpeg","ffmpeg-command","video"],"created_at":"2024-10-11T09:45:26.816Z","updated_at":"2026-05-15T08:34:04.129Z","avatar_url":"https://github.com/mslinn.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# `Video_operations` [![Gem Version](https://badge.fury.io/rb/video_operations.svg)](https://badge.fury.io/rb/video_operations)\n\n`Video_operations` provides the `stabilize` command, which uses `FFmpeg` to improve shakey videos,\nand the `rotate` command, which uses FFmpeg to rotate a video.\nProvided as a Ruby Gem, `video_operations` exposes APIs that can be invoked from other programs.\n\n\n## Installation\n\nTo use the `rotate` and `stabilize` commands from a console, type:\n\n```shell\n$ gem install video_operations\n```\n\n\n### For a Ruby Program\n\nIf you would like to use the APIs from your Ruby program,\nadd the following line to your application\u0026rsquo;s `Gemfile`:\n\n```ruby\ngem 'video_operations'\n```\n\nAnd then execute:\n\n```shell\n$ bundle\n```\n\n\n### For a Ruby Gem\n\nIf you would like to use the APIs from your Ruby gem,\n add the following to your gem\u0026rsquo;s `.gemspec`:\n\n```ruby\nspec.add_dependency 'video_operations'\n```\n\nAnd then execute:\n\n```shell\n$ bundle\n```\n\n\n## Usage\n\nThis are the help messages:\n\n```shell\n$ rotate -h\nrotate: Rotates a video using FFmpeg.\n\nSyntax: rotate PATH_TO_VIDEO DEGREES\n\nOptions:\n  -f Overwrite output file if present\n  -h Show this help message\n  -v Verbosity; one of: trace, debug, verbose, info, warning, error, fatal, panic, quiet\n```\n\n```shell\n$ stabilize -h\nstabilize: Stabilizes a video using FFmpeg's vidstabdetect and vidstabtransform filters.\n\nSyntax: stabilize [Options] PATH_TO_VIDEO\n\nOptions:\n  -f Overwrite output file if present\n  -h Show this help_stabilize message\n  -s Shakiness compensation 1..10 (default 5)\n  -v Verbosity; one of: trace, debug, verbose, info, warning, error, fatal, panic, quiet\n  -z Zoom percentage (computed if not specified)\n\nSee:\n  https://www.ffmpeg.org/ffmpeg-filters.html#vidstabdetect-1\n  https://www.ffmpeg.org/ffmpeg-filters.html#toc-vidstabtransform-1\n```\n\n\n## Development\n\nAfter checking out this git repository, install dependencies by typing:\n\n```shell\n$ bin/setup\n```\n\nYou should do the above before running Visual Studio Code.\n\n\n### Run the Tests\n\n```shell\n$ bundle exec rake test\n```\n\n\n### Interactive Session\n\nThe following will allow you to experiment:\n\n```shell\n$ bin/console\n```\n\n\n### Local Installation\n\nTo install this gem onto your local machine, type:\n\n```shell\n$ bundle exec rake install\n```\n\n\n### To Release A New Version\n\nTo create a git tag for the new version, push git commits and tags,\nand push the new version of the gem to https://rubygems.org, type:\n\n```shell\n$ bundle exec rake release\n```\n\n\n## Contributing\n\nBug reports and pull requests are welcome at https://github.com/mslinn/stabilize_video.\n\n\n## License\n\nThe gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmslinn%2Fvideo_operations","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmslinn%2Fvideo_operations","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmslinn%2Fvideo_operations/lists"}