Skip to content

Instantly share code, notes, and snippets.

View tiagobutzke's full-sized avatar

Tiago Butzke tiagobutzke

View GitHub Profile
@abdullahoguk
abdullahoguk / FFMpeg Commands.md
Last active February 3, 2023 16:30
Useful FFMpeg Commands

Useful FFMpeg Commands

Extract audio

ffmpeg -i video.mp4 -vn -acodec copy audio.aac

Convert a gif to mp4 video

ffmpeg -i animated.gif -movflags faststart -pix_fmt yuv420p -vf "scale=trunc(iw/2)*2:trunc(ih/2)*2" video.mp4

Convert mp4 video to gif

ffmpeg -i input.mp4 -r 10 agif_r10_320x180.gif -hide_banner

@markomafs
markomafs / ProgressBar.php
Last active August 29, 2015 13:59
Trait to Implement Progress Bar for CLI's
<?php
/**
* Progress Bar Trait
* @package Core\Traits
* @author Marco Souza<marco.souza@tricae.com.br>
*/
namespace Core\Traits;