Opened 9 years ago
Closed 9 years ago
#4970 closed defect (duplicate)
Addition of audio sound tracks in quicktime are disabled except for the first stream
Reported by: | dedknedy | Owned by: | |
---|---|---|---|
Priority: | normal | Component: | undetermined |
Version: | unspecified | Keywords: | mov chan |
Cc: | Blocked By: | ||
Blocking: | Reproduced by developer: | no | |
Analyzed by developer: | no |
Description
Summary of the bug:
I have been trying to replace several audio tracks in an .mov container with success. However the new muxed in audio streams are disabled in quicktime player with the exception of the first audio stream. I have tried manually enabling these tracks and running apple scripts to enable these tracks but the properties will not save.The script I'm using is a simple add audio to video script. The original which has the same amount of streams (6) can be enabled and disabled in quicktime but the .mov produced by ffmpeg will not allow these changes. Even running an apple script to enable all tracks will leave all but the first audio stream "sound track" disabled, event though it works on every other multi stream .mov file.
for %%a in ("*.mov") do ffmpeg -i "%%~na.mov" -i "%%~na_1.wav" -i "%%~na_2.wav" -i "%%~na_3.wav" -i "%%~na_4.wav" -i "%%~na_5.wav" -i "%%~na_6.wav" -map 0:v -map 1:a -map 2:a -map 3:a -map 4:a -map 5:a -map 6:a -c:v copy -c:a copy -y -t 30 "OUTPUT\%%~na.mov"
Patches should be submitted to the ffmpeg-devel mailing list and not this bug tracker.
Change History (1)
comment:1 by , 9 years ago
Keywords: | mov chan added |
---|---|
Resolution: | → duplicate |
Status: | new → closed |
I wish this were the behaviour but unfortunately it isn't, see ticket #3622.