mirror of
https://github.com/Tusko/vimeo-private-downloader.git
synced 2025-08-21 05:44:04 -07:00
add sub folder's name path 'parts' and 'converted'
This commit is contained in:
parent
b35a490b14
commit
a046dc65f6
1 changed files with 3 additions and 3 deletions
6
run.sh
6
run.sh
|
@ -1,8 +1,8 @@
|
|||
# A candy bash for combine videos
|
||||
# cody by ftitreefly
|
||||
# code by ftitreefly
|
||||
# 2020-03-19
|
||||
ls *.m4a *.m4v | sed 's/.m4a//g;s/.m4v//g' | uniq | \
|
||||
awk '{print "echo Runing Task "NR" - " $0}{m4a=$0".m4a";m4v=$0".m4v";mp4=$0".mp4"; printf("ffmpeg -y -loglevel quiet -i \"%s\" -i \"%s\" -c copy \"%s\"\n", m4a, m4v, mp4) }' \
|
||||
ls parts/*.m4a parts/*.m4v | sed 's/.m4a//g;s/.m4v//g;s/parts\///g' | uniq | \
|
||||
awk '{print "echo Runing Task "NR" - " $0}{m4a="parts/"$0".m4a";m4v="parts/"$0".m4v";mp4="converted/"$0".mp4"; printf("ffmpeg -y -loglevel quiet -i \"%s\" -i \"%s\" -c copy \"%s\"\n", m4a, m4v, mp4) }' \
|
||||
> combine.sh
|
||||
|
||||
chmod +x combine.sh
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue