One-command FFmpeg build from source — installs x264, x265, VP9, AV1, AAC, MP3 and more on CentOS/RHEL so you don't have to.
Linux FFmpeg binary used by ffmpeg-installer
Linux FFmpeg binary used by ffmpeg-installer
Windows FFmpeg binary used by ffmpeg-installer
Linux FFmpeg binary used by ffmpeg-installer
Linux FFmpeg binary used by ffmpeg-installer
Windows FFmpeg binary used by ffmpeg-installer
Mac OS X FFmpeg binary used by ffmpeg-installer
Mac OS X FFmpeg binary used by ffmpeg-installer
Platform independent binary installer of FFmpeg for node projects
Linux FFmpeg binary used by ffmpeg-installer
Linux FFmpeg binary used by ffmpeg-installer
Linux FFmpeg binary used by ffmpeg-installer
Linux FFmpeg binary used by ffmpeg-installer
Linux FFmpeg binary used by ffmpeg-installer
Linux FFmpeg binary used by ffmpeg-installer
Linux FFmpeg binary used by ffmpeg-installer
Windows FFmpeg binary used by ffmpeg-installer
Mac OS X FFmpeg binary used by ffmpeg-installer
Platform independent binary installer of FFmpeg for node projects
Linux FFmpeg binary used by ffmpeg-installer
Linux FFmpeg binary used by ffmpeg-installer
Windows FFmpeg binary used by ffmpeg-installer
Windows FFmpeg binary used by ffmpeg-installer
= FFProbe - ffprobe wrapper for Ruby FFprobe is a simple multimedia streams analyzer with a command-line interface based on the FFmpeg project libraries. This is a ruby interface to that command-line program. == You will need * A working Ruby installation * A working ffprobe installation (http://sourceforge.net/projects/ffprobe/) * A sane build environment == Author * Philip Garrett <philgarr at gmail.com> == Copyright and License Copyright (c) 2010 Philip Garrett. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Trim an audio or video file using ffmpeg - Works with all formats supported by ffmpeg, including mp3, mp4, mkv, and many more. - Seeks to the nearest frame positions by re-encoding the media. - Reduces file size procduced by OBS Studio by over 80 percent. - Can be used as a Ruby gem. - Installs the 'trim' command. When run as a command, output files are named by adding a 'trim.' prefix to the media file name, e.g. 'dir/trim.file.ext'. By default, the trim command does not overwrite pre-existing output files. When trimming is complete, the trim command displays the trimmed file, unless the -q option is specified Command-line Usage: trim [OPTIONS] dir/file.ext start [[to|for] end] - The start and end timecodes have the format [HH:[MM:]]SS[.XXX] Note that decimal seconds may be specified, bug frames may not; this is consistent with how ffmpeg parses timecodes. - end defaults to end of the audio/video file OPTIONS are: -d Enable debug output. -f Overwrite output file if present. -h Display help information. -v Verbose output. -V Do not @view the trimmed file when complete. Examples: # Crop dir/file.mp4 from 15.0 seconds to the end of the video, save to demo/trim.demo.mp4: trim demo/demo.mp4 15 # Crop dir/file.mkv from 3 minutes, 25 seconds to 9 minutes, 35 seconds, save to demo/trim.demo.mp4: trim demo/demo.mp4 3:25 9:35 # Same as the previous example, using optional 'to' syntax: trim demo/demo.mp4 3:25 to 9:35 # Save as the previous example, but specify the duration instead of the end time by using the for keyword: trim demo/demo.mp4 3:25 for 6:10