Created
July 6, 2023 14:33
-
-
Save sgqy/47dfea7616cc319dfb5d8a9aa0b1d4a2 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
| # 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