Created
March 6, 2022 19:30
-
-
Save cobanov/9099856f9078ee60e260533b053aa435 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# MP3 to WAV | |
ffmpeg -i "$f" -acodec pcm_s16le -ac 1 -ar 16000 "wav-exports/${f%.}.wav" | |
# MP4 to PNG | |
ffmpeg -i test.mp4 -vf fps=1/2 png-exports/video13_%06d.png |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment