Skip to content

Instantly share code, notes, and snippets.

@hyuki
Last active September 1, 2018 13:28
Show Gist options
  • Save hyuki/9848a17db5585dd52d5cb26f9be65512 to your computer and use it in GitHub Desktop.
Save hyuki/9848a17db5585dd52d5cb26f9be65512 to your computer and use it in GitHub Desktop.
`input.png`という静止画と、Amazon Pollyが作ったmp3ファイルから、Twitterに投稿できるmp4ファイルを作りたいが、まだうまくいかない。
ffmpeg \
    -i input.png -i input.mp3 \
    -vcodec libx264 \
    -r 30000/1001 \
    -pix_fmt yuv420p \
    -acodec aac \
    -strict experimental -ab 320k -ac 2 -ar 48000 \
    output.mp4
@hyuki
Copy link
Author

hyuki commented Sep 1, 2018

input

@hyuki
Copy link
Author

hyuki commented Sep 1, 2018

mp3はこちらにある。
https://mm.hyuki.net/n/n39145e4c8ff8

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment