Created
April 17, 2011 09:48
-
-
Save kanreisa/923898 to your computer and use it in GitHub Desktop.
ffcopy - 動画ファイルのヘッダを修復する用
This file contains 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
#!/bin/sh | |
ffmpeg -i $1 -vcodec copy -acodec copy ffcopy_$1 | |
rm $1 | |
mv ffcopy_$1 $1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment