meta

what's the meta about say it ditto dot net?

User Tools

Site Tools


cheatsheet:ffmpeg

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
cheatsheet:ffmpeg [2025/08/16 02:14] melocheatsheet:ffmpeg [2025/08/16 02:26] (current) melo
Line 4: Line 4:
  
 [[https://cheat-sheets.org/project/tldr/command/ffmpeg/|ffmpeg TLDR]], [[http://cheat.sh/ffmpeg|ffmpeg cheat.sh]] [[https://cheat-sheets.org/project/tldr/command/ffmpeg/|ffmpeg TLDR]], [[http://cheat.sh/ffmpeg|ffmpeg cheat.sh]]
 +
 +==== audio ====
 +
 +=== FLAC to MP3 ===
 +
 +one-off:
 +
 +<code bash>
 +ffmpeg -i "$FILE.flac" -ab 320k -map_metadata 0 -id3v2_version 3 "$FILE.mp3"
 +</code>
 +
 +bash loop:
 +
 +<code bash>
 +for f in *.flac; do ffmpeg -i "$f" -ab 320k -map_metadata 0 -id3v2_version 3 "${f%.*}.mp3"; done
 +</code>
  
 ==== video to frames ==== ==== video to frames ====
cheatsheet/ffmpeg.1755310452.txt.gz · Last modified: by melo