You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-11-23 21:54:53 +02:00
Make a copy of ffmpeg under a new name -- avconv.
It will be further developed with a few incompatible changes. ffmpeg.c will stay as is for some time, so any scripts using it won't be broken.
This commit is contained in:
@@ -49,28 +49,28 @@ run(){
|
||||
$target_exec $target_path/"$@"
|
||||
}
|
||||
|
||||
ffmpeg(){
|
||||
run ffmpeg -v 0 -threads $threads -thread_type $thread_type "$@"
|
||||
avconv(){
|
||||
run avconv -v 0 -threads $threads -thread_type $thread_type "$@"
|
||||
}
|
||||
|
||||
framecrc(){
|
||||
ffmpeg "$@" -f framecrc -
|
||||
avconv "$@" -f framecrc -
|
||||
}
|
||||
|
||||
framemd5(){
|
||||
ffmpeg "$@" -f framemd5 -
|
||||
avconv "$@" -f framemd5 -
|
||||
}
|
||||
|
||||
crc(){
|
||||
ffmpeg "$@" -f crc -
|
||||
avconv "$@" -f crc -
|
||||
}
|
||||
|
||||
md5(){
|
||||
ffmpeg "$@" md5:
|
||||
avconv "$@" md5:
|
||||
}
|
||||
|
||||
pcm(){
|
||||
ffmpeg "$@" -vn -f s16le -
|
||||
avconv "$@" -vn -f s16le -
|
||||
}
|
||||
|
||||
regtest(){
|
||||
|
||||
Reference in New Issue
Block a user