Skip to content

Instantly share code, notes, and snippets.

@sgqy
Created July 6, 2023 14:33
Show Gist options
  • Select an option

  • Save sgqy/47dfea7616cc319dfb5d8a9aa0b1d4a2 to your computer and use it in GitHub Desktop.

Select an option

Save sgqy/47dfea7616cc319dfb5d8a9aa0b1d4a2 to your computer and use it in GitHub Desktop.
# wav to opus with pic -> mp4
find -name '*.wav' -print0 | xargs -0 -i -P0 sh -c 'ffmpeg -y -loop 1 -r 1/50 -i 'EXデータ/高画質パッケージ.jpg' -i "$1" -shortest -vf scale=-1:720,fps=1,format=yuv420p -c:a libopus -b:a 192k -c:v libx264 "${1%.wav}.mp4"' -- {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment