Advertisement
phillipk

Untitled

Jan 26th, 2017
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. ffmpeg
  2. -i discard/video_with_audio.ts
  3. -i discard/slides/audioOnly1.flv
  4. -i discard/slides/audioOnly2.flv
  5. -i discard/slides/audioOnly3.flv
  6. -y
  7. -strict experimental
  8. -filter_complex
  9. [1]adelay=0.1[a];
  10. [2]adelay=1745300[b];
  11. [3]adelay=1758700[c];
  12. [0][a][b][c]amix=4[out] // I think this should be "[a][b][c]amix=3[out]"?
  13.  
  14. -map 0:v -map "[out]"
  15.  
  16. -profile:v main
  17. -level 3.1
  18. -movflags
  19. +faststart
  20. -c:a aac
  21. -b:a 64K
  22. -f mp4
  23. final_output.mp4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement