0.0
No commit activity in last 3 years
No release in over 3 years
A wrapper for ffmpeg to make basic video editing easier.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 0.2.0, ~> 0.2
~> 0.6, >= 0.6.1
>= 0.5.0, ~> 0.5
 Project Readme

Introducing the easyvideo_utils gem

A wrapper for ffmpeg to make basic video editing easier.

Usage

require 'easyvideo_utils'

# resize a video to 720p
EasyVideoUtils.new('output.mp4', 'out2.mp4').resize

# search for a method related to audio
EasyVideoUtils.search 'audio'
#=> * add_audio add an audio track

# list all available public methods
EasyVideoUtils.list

Output:

 * add_audio add an audio track
 * add_subtitles add subtitles from a .srt file
 * capture capture the desktop at 1024x768
 * convert alias for transcode
 * play plays the video using mplayer
 * record alias for capture
 * resize resize to 720p
 * scale alias for resize
 * transcode converts 1 video format to another e.g. avi-> mp4
 * trim trims the beginning and ending of a video in hms format e.g. 1m 3s

Resources

ffmpeg mplayer video editing utils gem easyvideoutils