Skip to content
Snippets Groups Projects
Commit 58ed30f4 authored by Eliott Sammier's avatar Eliott Sammier
Browse files

remove unused variable in MP3 script

parent 2c45a9c8
No related branches found
No related tags found
No related merge requests found
...@@ -15,7 +15,6 @@ echo "$input: found $(wc -l <<< $streams) MP3 streams: $streams" ...@@ -15,7 +15,6 @@ echo "$input: found $(wc -l <<< $streams) MP3 streams: $streams"
# Assemble ffmpeg command line by adding '-map' argument and outfile for each stream # Assemble ffmpeg command line by adding '-map' argument and outfile for each stream
cmd="ffmpeg -i $input -vn -c:a copy" cmd="ffmpeg -i $input -vn -c:a copy"
outputs=""
i=0 i=0
while read -r stream_id ; do while read -r stream_id ; do
cmd="$cmd -map 0:$stream_id $input.$i.mp3" cmd="$cmd -map 0:$stream_id $input.$i.mp3"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment