Guest User

Untitled

a guest
Dec 17th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. ffmpeg -i inputVideo.ts
  2. -i audio1.mp3
  3. -i audio2.mp3
  4. -filter_complex "[0]atrim=0:6,asetpts=PTS-STARTPTS[part0];[1]atrim=17:31,asetpts=PTS-STARTPTS[part1];[0]atrim=20:39,asetpts=PTS-STARTPTS[part2];[2]atrim=108:144,asetpts=PTS-STARTPTS[part3];[2]atrim=153:172,asetpts=PTS-STARTPTS[part4];[part0][part1][part2][part3][part4]concat=n=5:v=0:a=1[aout]"
  5. -map 0:v
  6. -map [aout]
  7. -c:v copy
  8. -c:a aac
  9. -async 1000
  10. out.ts
  11.  
  12. ffmpeg -i out.ts -c copy -bsf:a aac_adtstoasc out.mp4
  13.  
  14. ffprobe out.ts
  15.  
  16. Duration: 00:01:36.18, start: 1.458667, bitrate: 1051 kb/s
  17.  
  18. ffprobe out.mp4
  19.  
  20. Duration: 00:01:52.07, start: 0.000000, bitrate: 825 kb/s
Add Comment
Please, Sign In to add comment