VideoHelp Forum
+ Reply to Thread
Page 1 of 3
1 2 3 LastLast
Results 1 to 30 of 63
Thread
  1. Member
    Join Date
    Sep 2006
    Location
    United States
    Search Comp PM
    I have an mp4 with subtitles and audio that I want to remove, just keeping the video and the ac3 6 channel English audio. I also want to add a 2 channel AAC audio to the mp4 so I can play on devices that can't decode ac3. The way I was doing it in the past was to:

    1.) Open the MP4 with MKVToolnix and remove the files I don't want and save as MKV.
    2.) Load the new MKV into Vidcoder and add a second audio, creating the 2 channel AAC file back into an MP4

    I know this is not the best way to achieve this so can someone please advise if there is a way to achieve the above without quality loss/re-encoding?

    Thanks for your help in advance.
    Quote Quote  
  2. Member
    Join Date
    Sep 2006
    Location
    United States
    Search Comp PM
    That thread you shared is for MKV files. I am wanting to do this for an MP4 and I am doing this on PC
    Quote Quote  
  3. It's 99% the same...
    ffmpeg -i "input" -map 0:0 -map 0:1 -map 0:1 -c:v copy -c:a:0 copy -c:a:1 aac -ac:a:1 2 "output.mp4"
    Quote Quote  
  4. Member
    Join Date
    Sep 2006
    Location
    United States
    Search Comp PM
    Ok. I don't understand what the top ffmpeg code means and how to apply it. It's over my head. Please explain.
    Quote Quote  
  5. This explains the syntax
    https://ffmpeg.org/ffmpeg.html
    Quote Quote  
  6. Member
    Join Date
    Sep 2006
    Location
    United States
    Search Comp PM
    OK. This will add the aac file but how do I remove subtitles and other audio?
    Quote Quote  
  7. That's already implied. Only the tracks that have a mapping will be used. (It uses track #0 once and track #1 twice, counting starts at #0. If the order is different for your input files change accordingly.)
    Quote Quote  
  8. Member
    Join Date
    Sep 2006
    Location
    United States
    Search Comp PM
    OK. After reading the link above I'm still unsure how to execute this. Opening the command prompt and entering the command for a specific file?
    Quote Quote  
  9. You just drag&drop files on it or type spaces and text in between, when done pres ENTER (make sure that opened cmd prompt window is active, by just clicking your mouse in that window). If dropping file, the path will be included as well. It is explained below for mp4box example, but try that ffmpeg first.

    Using dedicated MP4 muxer is a way to go as well dedicated MP4 muxer > mp4box
    Code:
    "mp4box.exe"   -add "original.mp4"#video   -add "original.mp4"#audio   -add "new_audio.aac"   -new "out.mp4"
    you can use cmd prompt window drag&drop feature, click START icon on windows, type cmd, click cmd.exe, drag&drop your mp4box.exe on the window, press "space" , drag&drop original.mp4 and type #video, press space, drag&drop it again , type space ...... when done press ENTER
    or create batch script (save that text and save it as as some BAT file) where you drag&drop those files on it and it creates new mp4, select original always as first one :
    Code:
    @echo off
    rem drop two files, first MP4, second new external audio, while dragging select original always as first
    rem it will use video and audio from original and it will add new audio
    
    set "mp4box=C:\tools\mp4box\mp4box.exe"
    
    if "%~n1"=="" echo you need to drop two files on this batch, first one is original mp4, second would be new audio& pause&goto :eof
    if "%~n2"=="" echo just one file was dropped, no audio would be added& pause&goto :eof
    if      "%~n2"=="" "%mp4box%"   -add "%~1"#video   -add "%~1"#audio                                  -new "new_%~n1.mp4"
    if not "%~n2"=="" "%mp4box%"   -add "%~1"#video   -add "%~1"#audio   -add "%~2"#audio   -new "new_%~n1.mp4"
    pause
    goto :eof
    Quote Quote  
  10. I don't think he already has the second audio. That's what he used Vidcoder for.

    Originally Posted by maverickluke View Post
    OK. After reading the link above I'm still unsure how to execute this. Opening the command prompt and entering the command for a specific file?
    Yes, pretty much. First you need to download ffmpeg and put the ffmpeg.exe somewhere, for example in the directory of the mp4 file (or into %PATH%, then it can be used from anywhere). Then open a command-prompt in the folder where you have ffmpeg and the mp4 file (in Explorer hold shift and right-click the mouse: "open command window here") and enter the command. Of course instead of "input" you write the actual file name of your mp4 file. Instead of "output.mp4" the output filename you want.

    It is possible to make it more advanced, e.g. process all mp4 files in a given directory automatically or with drag&drop but it's a good start to learn.
    Quote Quote  
  11. I don't think he already has the second audio. That's what he used Vidcoder for.
    Oh yes, make sense, using ffmpeg and dropping just the original MP4 on it:
    Code:
    @echo off
    rem drop MP4 file onto this batch
    rem it will use video and audio, mapped as 0:0 and 0:1 creating third audio track
    
    set "ffmpeg=C:\tools\ffmpeg\ffmpeg.exe"
    
    if "%~n1"=="" echo you need to drop videofile onto this batch script& pause&goto :eof
    "%ffmpeg%" -i "%~1" -map 0:0 -map 0:1 -map 0:1 -c:v copy -c:a:0 copy -c:a:1 aac -ac:a:1 2 -strict -2 "new_%~n1.mp4" 
    pause
    goto :eof
    to process all directory, correct ffmpeg path depending where it resides in your PC , put this batch script into particular directory where your MP4's are and just run it:
    Code:
    @echo off
    set "ffmpeg=C:\tools\ffmpeg\ffmpeg.exe"
    set "destination=%~dp0new_files"
    
    if not exist "%destination%" MD "%destination%"
    for %%v ("*.mp4") do "%ffmpeg%" -i "%%v" -map 0:0 -map 0:1 -map 0:1 -c:v copy -c:a:0 copy -c:a:1 aac -ac:a:1 2 -strict -2 "%destination%\%%~nv.mp4" 
    pause
    goto :eof
    Quote Quote  
  12. Member
    Join Date
    Sep 2006
    Location
    United States
    Search Comp PM
    Holy Jiminy Christmas!! I figured out what you guys were talking about and did it. Except Audio#2 is 6 channel ac3 which I want to keep. The scheme of these files is this: Video, Audio#1 (I don't want to keep this), AUDIO#2 (***6-channel ac3 which I want to keep***), Audio#3 (I don't want to keep this). The above script was just copying Audio#1 and discarding everything else. I want to keep Audio#2 and from that, create a 2-channel aac @ 160kbps. The other thing is that there is a menu at the end which the above script is copying. I don't want the menu let alone have it copied either. I don't know how to tweak the above script but I'm sure for you guys it is easy. Thank you again for your help. I look forward to the next script.
    Quote Quote  
  13. Use:
    -map 0:0 -map 0:2 -map 0:2
    https://trac.ffmpeg.org/wiki/Map

    I'm not sure about the menu. Can you upload a sample file?
    Quote Quote  
  14. Member
    Join Date
    Sep 2006
    Location
    United States
    Search Comp PM
    This isn't working the way I want it to. Maybe I am overcomplicating things but now I am getting an error that says "at least one output file must be specified"
    I tried putting this code in and this is when I got the error:

    @echo off
    rem drop MP4 file onto this batch
    rem it will use video and audio, mapped as 0:0 and 0:1 creating third audio track

    set "ffmpeg=C:\tools\ffmpeg\ffmpeg.exe"

    if "%~n1"=="" echo you need to drop videofile onto this batch script& pause&goto :eof
    "%ffmpeg%" -i "%~1"
    pause
    goto :eof


    ffmpeg -i input.mp4 \
    -map 0:0 -map 0:2 -map 0:2 \
    -c:v copy \
    -c:a:0 copy \
    -c:a:1 libfaac -b:a:1 160k \
    output.mp4 "new_%~n1.mp4"

    Remember I want to:
    • Copy the video file
    • Copy Audio#2 which is 6-channel ac3
    • Encode another audio stream to aac 2-channel (Stereo) (160kbps) (creating 2 audio streams in the output)
    Quote Quote  
  15. Why are you not following the examples from post #12 more closely? Surely, you can do better...
    Quote Quote  
  16. Member
    Join Date
    Sep 2006
    Location
    United States
    Search Comp PM
    Ok. Things look good except the aac audio is 128k. How do I get it to 160k?

    How do I change the following?

    @echo off
    rem drop MP4 file onto this batch
    rem it will use video and audio, mapped as 0:0 and 0:1 creating third audio track

    set "ffmpeg=C:\tools\ffmpeg\ffmpeg.exe"

    if "%~n1"=="" echo you need to drop videofile onto this batch script& pause&goto :eof
    "%ffmpeg%" -i "%~1" -map 0:0 -map 0:2 -map 0:2 -c:v copy -c:a:0 copy -c:a:1 aac -ac:a:1 2 -strict -2 "new_%~n1.mp4"
    pause
    goto :eof
    Quote Quote  
  17. Well, put the -b:a:1 160k in there.
    Quote Quote  
  18. Member
    Join Date
    Sep 2006
    Location
    United States
    Search Comp PM
    Yes!!!
    Thank you.
    Quote Quote  
  19. Member
    Join Date
    Sep 2006
    Location
    United States
    Search Comp PM
    As mentioned before, how do I omit the menu and certainly not copy it.
    Image Attached Thumbnails Click image for larger version

Name:	Capture.PNG
Views:	172
Size:	48.7 KB
ID:	40903  

    Quote Quote  
  20. Try adding -map_metadata -1 -map_chapters -1
    If that doesn't work upload a sample.
    Quote Quote  
  21. Member
    Join Date
    Sep 2006
    Location
    United States
    Search Comp PM
    It works but I get a highlighted message that says track mp4 output size not set. Whatever that means.
    Quote Quote  
  22. Show complete log including the command. Is it just a warning and it encodes anyways or does it stop?
    Quote Quote  
  23. Member
    Join Date
    Sep 2006
    Location
    United States
    Search Comp PM
    It is a warning and encodes anyway. Where do I find the log?
    Quote Quote  
  24. What you are seeing is the log. Either mark and copy&paste it here or add "2> log.txt" (without quotes) after the end of the ffmpeg command-line to have windows write it into a log.txt and attach the file here. But if it encodes anyways .. well ..
    Quote Quote  
  25. Member
    Join Date
    Sep 2006
    Location
    United States
    Search Comp PM
    I did that. It created a log.txt but nothing is in it.
    Quote Quote  
  26. 2> log.txt is at the end of the ffmpeg line?
    Code:
    ... "new_%~n1.mp4" 2> log.txt
    pause
    goto :eof
    Quote Quote  
  27. Member
    Join Date
    Sep 2006
    Location
    United States
    Search Comp PM
    Here is the log.txt
    Quote Quote  
  28. Member
    Join Date
    Sep 2006
    Location
    United States
    Search Comp PM
    For some reason the log.txt didn't attach. Anyway, here's what it said:

    ffmpeg version N-56467-g13eff47 Copyright (c) 2000-2013 the FFmpeg developers
    built on Sep 19 2013 18:12:23 with gcc 4.7.3 (GCC)
    configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-avisynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libcaca --enable-libfreetype --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libschroedinger --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib
    libavutil 52. 45.100 / 52. 45.100
    libavcodec 55. 33.100 / 55. 33.100
    libavformat 55. 18.100 / 55. 18.100
    libavdevice 55. 3.100 / 55. 3.100
    libavfilter 3. 86.102 / 3. 86.102
    libswscale 2. 5.100 / 2. 5.100
    libswresample 0. 17.103 / 0. 17.103
    libpostproc 52. 3.100 / 52. 3.100
    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'C:\Tools\ffmpeg\Home Video.mp4':
    Metadata:
    major_brand : mp42
    minor_version : 0
    compatible_brands: mp42isomavc1
    creation_time : 2017-01-29 21:21:11
    title : Home Video [H264-mp4]
    comment : Hello
    genre : Family
    date : 2015
    Duration: 01:31:13.19, start: 0.000000, bitrate: 3601 kb/s
    Chapter #0.0: start -0.083000, end 286.786000
    Metadata:
    title : Chapter 1 Night Credits New Name
    Chapter #0.1: start 286.786000, end 425.800000
    Metadata:
    title : Chapter 2 Ambush
    Chapter #0.2: start 425.800000, end 604.437000
    Metadata:
    title : Chapter 3 Under Fire New Partner
    Chapter #0.3: start 604.437000, end 818.317000
    Metadata:
    title : Chapter 4 Movie Macabre
    Chapter #0.4: start 818.317000, end 981.230000
    Metadata:
    title : Chapter 5 Deathstyles of the Rich and Famous
    Chapter #0.5: start 981.230000, end 1194.777000
    Metadata:
    title : Chapter 6 Questioning Swan
    Chapter #0.6: start 1194.777000, end 1305.804000
    Metadata:
    title : Chapter 7 Fan Letteres
    Chapter #0.7: start 1305.804000, end 1508.674000
    Metadata:
    title : Chapter 8 Chinatown explodes
    Chapter #0.8: start 1508.674000, end 1620.452000
    Metadata:
    title : Chapter 9 Sam proposes
    Chapter #0.9: start 1620.452000, end 1764.096000
    Metadata:
    title : Chapter 10 Harry refuses
    Chapter #0.10: start 1764.096000, end 1904.361000
    Metadata:
    title : Chapter 11 Working out Dead Pool
    Chapter #0.11: start 1904.361000, end 2054.094000
    Metadata:
    title : Chapter 12 Better know the rules love
    Chapter #0.12: start 2054.094000, end 2337.835000
    Metadata:
    title : Chapter 13 Dinner with Sam
    Chapter #0.13: start 2337.835000, end 2452.116000
    Metadata:
    title : Chapter 14 Elevator encounter
    Chapter #0.14: start 2452.116000, end 2524.105000
    Metadata:
    title : Chapter 15 I don't want to be the news
    Chapter #0.15: start 2524.105000, end 2743.491000
    Metadata:
    title : Chapter 16 Chat with the mailman
    Chapter #0.16: start 2743.491000, end 2849.513000
    Metadata:
    title : Chapter 17 Accursed?
    Chapter #0.17: start 2849.513000, end 2966.130000
    Metadata:
    title : Chapter 18 Murderous criticism
    Chapter #0.18: start 2966.130000, end 3118.490000
    Metadata:
    title : Chapter 19 Quan's review
    Chapter #0.19: start 3118.490000, end 3473.804000
    Metadata:
    title : Chapter 20 Blazing moment of fame
    Chapter #0.20: start 3473.804000, end 3645.934000
    Metadata:
    title : Chapter 21 Death on tiny wheels
    Chapter #0.21: start 3645.934000, end 3739.736000
    Metadata:
    title : Chapter 22 In a bad mood
    Chapter #0.22: start 3739.736000, end 4022.227000
    Metadata:
    title : Chapter 23 His bodyguards
    Chapter #0.23: start 4022.227000, end 4418.748000
    Metadata:
    title : Chapter 24 The chase
    Chapter #0.24: start 4418.748000, end 4509.171000
    Metadata:
    title : Chapter 25 Killer identified
    Chapter #0.25: start 4509.171000, end 4677.339000
    Metadata:
    title : Chapter 26 Sam takes the bait
    Chapter #0.26: start 4677.339000, end 4789.868000
    Metadata:
    title : Chapter 27 Playing the game
    Chapter #0.27: start 4789.868000, end 4881.794000
    Metadata:
    title : Chapter 28 Harry on the scene
    Chapter #0.28: start 4881.794000, end 5107.394000
    Metadata:
    title : Chapter 29 Magnum menace
    Chapter #0.29: start 5107.394000, end 5473.051000
    Metadata:
    title : Chapter 30 Rook gets the hook
    Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p(tv, bt709), 1920x1080, 2889 kb/s, 23.98 fps, 23.98 tbr, 90k tbn, 180k tbc (default)
    Metadata:
    creation_time : 2017-01-29 21:21:11
    Stream #0:1(eng): Audio: aac (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 127 kb/s (default)
    Metadata:
    creation_time : 2017-01-29 21:21:11
    Stream #0:2(eng): Audio: ac3 (ac-3 / 0x332D6361), 48000 Hz, 5.1(side), fltp, 448 kb/s
    Metadata:
    creation_time : 2017-01-29 21:21:11
    Stream #0:3(spa): Audio: aac (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 127 kb/s
    Metadata:
    creation_time : 2017-01-29 21:21:11
    Stream #0:4(eng): Subtitle: mov_text (tx3g / 0x67337874), 1920x60, 0 kb/s (default)
    Metadata:
    creation_time : 2017-01-29 21:21:11
    Stream #0:5(spa): Subtitle: mov_text (tx3g / 0x67337874), 1920x60, 0 kb/s
    Metadata:
    creation_time : 2017-01-29 21:21:11
    Stream #0:6(und): Subtitle: mov_text (text / 0x74786574), 0 kb/s
    Metadata:
    creation_time : 2017-01-29 21:21:11
    [mp4 @ 0000000005479020] track 1: codec frame size is not set
    Output #0, mp4, to 'new_Dirty Harry - The Dead Pool.mp4':
    Metadata:
    encoder : Lavf55.18.100
    Stream #0:0: Video: h264 ([33][0][0][0] / 0x0021), yuv420p, 1920x1080, q=2-31, 2889 kb/s, 23.98 fps, 90k tbn, 90k tbc (default)
    Stream #0:1: Audio: ac3 ([165][0][0][0] / 0x00A5), 48000 Hz, 5.1(side), 448 kb/s
    Stream #0:2: Audio: aac ([64][0][0][0] / 0x0040), 48000 Hz, stereo, fltp, 160 kb/s
    Stream mapping:
    Stream #0:0 -> #0:0 (copy)
    Stream #0:2 -> #0:1 (copy)
    Stream #0:2 -> #0:2 (ac3 -> aac)
    Press [q] to stop, [?] for help
    frame= 653 fps=0.0 q=-1.0 size= 8193kB time=00:00:27.23 bitrate=2464.6kbits/s
    frame= 1241 fps=1238 q=-1.0 size= 18860kB time=00:00:51.84 bitrate=2980.3kbits/s
    frame= 1839 fps=1224 q=-1.0 size= 29216kB time=00:01:16.67 bitrate=3121.6kbits/s
    frame= 2449 fps=1218 q=-1.0 size= 38822kB time=00:01:42.14 bitrate=3113.5kbits/s
    frame= 3007 fps=1198 q=-1.0 size= 48073kB time=00:02:05.44 bitrate=3139.4kbits/s
    frame= 3618 fps=1201 q=-1.0 size= 57225kB time=00:02:30.91 bitrate=3106.4kbits/s
    frame= 4248 fps=1209 q=-1.0 size= 66075kB time=00:02:57.12 bitrate=3056.0kbits/s
    frame= 4851 fps=1208 q=-1.0 size= 76261kB time=00:03:22.36 bitrate=3087.1kbits/s
    frame= 5440 fps=1205 q=-1.0 size= 87093kB time=00:03:46.94 bitrate=3143.8kbits/s
    frame= 6027 fps=1201 q=-1.0 size= 99338kB time=00:04:11.45 bitrate=3236.2kbits/s
    frame= 6607 fps=1197 q=-1.0 size= 111716kB time=00:04:35.58 bitrate=3320.9kbits/s
    frame= 7217 fps=1198 q=-1.0 size= 121724kB time=00:05:01.02 bitrate=3312.6kbits/s
    frame= 7849 fps=1203 q=-1.0 size= 132957kB time=00:05:27.36 bitrate=3327.2kbits/s
    frame= 8471 fps=1205 q=-1.0 size= 144862kB time=00:05:53.34 bitrate=3358.5kbits/s
    frame= 9095 fps=1208 q=-1.0 size= 155783kB time=00:06:19.39 bitrate=3363.7kbits/s
    frame= 9737 fps=1212 q=-1.0 size= 167774kB time=00:06:46.20 bitrate=3383.5kbits/s
    frame=10356 fps=1213 q=-1.0 size= 181785kB time=00:07:11.90 bitrate=3448.0kbits/s
    frame=10961 fps=1213 q=-1.0 size= 194126kB time=00:07:37.18 bitrate=3478.4kbits/s
    frame=11563 fps=1212 q=-1.0 size= 205477kB time=00:08:02.30 bitrate=3490.1kbits/s
    frame=12190 fps=1214 q=-1.0 size= 218599kB time=00:08:28.32 bitrate=3522.9kbits/s
    frame=12804 fps=1214 q=-1.0 size= 229193kB time=00:08:54.04 bitrate=3515.7kbits/s
    frame=13435 fps=1216 q=-1.0 size= 239061kB time=00:09:20.44 bitrate=3494.3kbits/s
    frame=14036 fps=1215 q=-1.0 size= 247342kB time=00:09:45.50 bitrate=3460.7kbits/s
    frame=14688 fps=1218 q=-1.0 size= 256949kB time=00:10:12.57 bitrate=3436.2kbits/s
    frame=15286 fps=1218 q=-1.0 size= 265792kB time=00:10:37.56 bitrate=3415.1kbits/s
    frame=15883 fps=1216 q=-1.0 size= 276538kB time=00:11:02.56 bitrate=3419.2kbits/s
    frame=16494 fps=1217 q=-1.0 size= 288561kB time=00:11:27.93 bitrate=3436.2kbits/s
    frame=17136 fps=1219 q=-1.0 size= 300739kB time=00:11:54.68 bitrate=3447.2kbits/s
    frame=17793 fps=1222 q=-1.0 size= 311549kB time=00:12:22.20 bitrate=3438.7kbits/s
    frame=18449 fps=1225 q=-1.0 size= 322322kB time=00:12:49.50 bitrate=3431.4kbits/s
    frame=19106 fps=1227 q=-1.0 size= 333431kB time=00:13:16.99 bitrate=3427.2kbits/s
    frame=19758 fps=1230 q=-1.0 size= 344477kB time=00:13:44.22 bitrate=3423.8kbits/s
    frame=20398 fps=1231 q=-1.0 size= 353946kB time=00:14:10.78 bitrate=3408.1kbits/s
    frame=21034 fps=1232 q=-1.0 size= 361879kB time=00:14:37.44 bitrate=3378.6kbits/s
    frame=21643 fps=1232 q=-1.0 size= 371765kB time=00:15:02.68 bitrate=3373.8kbits/s
    frame=22244 fps=1230 q=-1.0 size= 382412kB time=00:15:27.80 bitrate=3376.5kbits/s
    frame=22863 fps=1231 q=-1.0 size= 391350kB time=00:15:53.56 bitrate=3362.0kbits/s
    frame=23511 fps=1232 q=-1.0 size= 400339kB time=00:16:20.73 bitrate=3344.0kbits/s
    frame=24167 fps=1234 q=-1.0 size= 412433kB time=00:16:47.96 bitrate=3351.9kbits/s
    frame=24836 fps=1236 q=-1.0 size= 423883kB time=00:17:16.03 bitrate=3351.7kbits/s
    frame=25471 fps=1237 q=-1.0 size= 436039kB time=00:17:42.46 bitrate=3362.0kbits/s
    frame=26094 fps=1237 q=-1.0 size= 447414kB time=00:18:08.38 bitrate=3367.6kbits/s
    frame=26712 fps=1237 q=-1.0 size= 457810kB time=00:18:34.14 bitrate=3366.2kbits/s
    frame=27336 fps=1237 q=-1.0 size= 469734kB time=00:19:00.28 bitrate=3374.6kbits/s
    frame=27983 fps=1238 q=-1.0 size= 486524kB time=00:19:27.13 bitrate=3414.9kbits/s
    frame=28632 fps=1240 q=-1.0 size= 503719kB time=00:19:54.24 bitrate=3455.3kbits/s
    frame=29262 fps=1240 q=-1.0 size= 516883kB time=00:20:20.51 bitrate=3469.3kbits/s
    frame=29893 fps=1240 q=-1.0 size= 527354kB time=00:20:46.78 bitrate=3465.0kbits/s
    frame=30530 fps=1241 q=-1.0 size= 536965kB time=00:21:13.34 bitrate=3454.5kbits/s
    frame=31173 fps=1242 q=-1.0 size= 546466kB time=00:21:40.22 bitrate=3443.0kbits/s
    frame=31817 fps=1242 q=-1.0 size= 558826kB time=00:22:07.10 bitrate=3449.5kbits/s
    frame=32430 fps=1242 q=-1.0 size= 571446kB time=00:22:32.51 bitrate=3461.2kbits/s
    frame=33065 fps=1242 q=-1.0 size= 586721kB time=00:22:59.00 bitrate=3485.4kbits/s
    frame=33684 fps=1242 q=-1.0 size= 597053kB time=00:23:24.99 bitrate=3481.2kbits/s
    frame=34303 fps=1242 q=-1.0 size= 614268kB time=00:23:50.78 bitrate=3517.0kbits/s
    frame=34920 fps=1242 q=-1.0 size= 628641kB time=00:24:16.51 bitrate=3535.7kbits/s
    frame=35560 fps=1242 q=-1.0 size= 640641kB time=00:24:43.10 bitrate=3538.6kbits/s
    frame=36119 fps=1240 q=-1.0 size= 650340kB time=00:25:06.59 bitrate=3536.2kbits/s
    frame=36750 fps=1241 q=-1.0 size= 659677kB time=00:25:32.80 bitrate=3525.6kbits/s
    frame=37364 fps=1241 q=-1.0 size= 667780kB time=00:25:58.36 bitrate=3510.4kbits/s
    frame=37991 fps=1240 q=-1.0 size= 675914kB time=00:26:24.44 bitrate=3494.6kbits/s
    frame=38627 fps=1241 q=-1.0 size= 684365kB time=00:26:51.07 bitrate=3479.9kbits/s
    frame=39274 fps=1241 q=-1.0 size= 694766kB time=00:27:18.14 bitrate=3474.4kbits/s
    frame=39919 fps=1242 q=-1.0 size= 703354kB time=00:27:45.02 bitrate=3460.5kbits/s
    frame=40503 fps=1240 q=-1.0 size= 711188kB time=00:28:09.40 bitrate=3448.6kbits/s
    frame=41126 fps=1240 q=-1.0 size= 721517kB time=00:28:35.32 bitrate=3445.8kbits/s
    frame=41752 fps=1240 q=-1.0 size= 731449kB time=00:29:01.44 bitrate=3440.8kbits/s
    frame=42387 fps=1241 q=-1.0 size= 741200kB time=00:29:27.87 bitrate=3434.6kbits/s
    frame=43024 fps=1241 q=-1.0 size= 753291kB time=00:29:54.43 bitrate=3439.0kbits/s
    frame=43671 fps=1242 q=-1.0 size= 764074kB time=00:30:21.37 bitrate=3436.6kbits/s
    frame=44315 fps=1242 q=-1.0 size= 775873kB time=00:30:48.38 bitrate=3438.7kbits/s
    frame=44958 fps=1243 q=-1.0 size= 786481kB time=00:31:15.13 bitrate=3435.9kbits/s
    frame=45572 fps=1243 q=-1.0 size= 796219kB time=00:31:40.76 bitrate=3431.6kbits/s
    frame=46207 fps=1243 q=-1.0 size= 806108kB time=00:32:07.29 bitrate=3426.4kbits/s
    frame=46868 fps=1244 q=-1.0 size= 817345kB time=00:32:34.91 bitrate=3425.1kbits/s
    frame=47499 fps=1244 q=-1.0 size= 827415kB time=00:33:01.18 bitrate=3421.3kbits/s
    frame=48122 fps=1244 q=-1.0 size= 838690kB time=00:33:27.07 bitrate=3423.2kbits/s
    frame=48754 fps=1244 q=-1.0 size= 850591kB time=00:33:53.47 bitrate=3426.7kbits/s
    frame=49393 fps=1244 q=-1.0 size= 862259kB time=00:34:20.16 bitrate=3428.7kbits/s
    frame=50029 fps=1244 q=-1.0 size= 873504kB time=00:34:46.65 bitrate=3429.3kbits/s
    frame=50672 fps=1245 q=-1.0 size= 886770kB time=00:35:13.53 bitrate=3437.1kbits/s
    frame=51319 fps=1245 q=-1.0 size= 900729kB time=00:35:40.54 bitrate=3447.1kbits/s
    frame=51967 fps=1246 q=-1.0 size= 914425kB time=00:36:07.48 bitrate=3456.1kbits/s
    frame=52612 fps=1246 q=-1.0 size= 926197kB time=00:36:34.36 bitrate=3457.7kbits/s
    frame=53242 fps=1246 q=-1.0 size= 935692kB time=00:37:00.57 bitrate=3451.9kbits/s
    frame=53878 fps=1247 q=-1.0 size= 944231kB time=00:37:27.03 bitrate=3442.4kbits/s
    frame=54521 fps=1247 q=-1.0 size= 953965kB time=00:37:54.04 bitrate=3436.5kbits/s
    frame=55169 fps=1247 q=-1.0 size= 965811kB time=00:38:20.99 bitrate=3438.5kbits/s
    frame=55813 fps=1248 q=-1.0 size= 976471kB time=00:38:48.00 bitrate=3436.1kbits/s
    frame=56461 fps=1248 q=-1.0 size= 986385kB time=00:39:15.04 bitrate=3431.1kbits/s
    frame=57080 fps=1248 q=-1.0 size= 995646kB time=00:39:40.80 bitrate=3425.9kbits/s
    frame=57698 fps=1248 q=-1.0 size= 1009357kB time=00:40:06.46 bitrate=3436.0kbits/s
    frame=58291 fps=1247 q=-1.0 size= 1020226kB time=00:40:31.23 bitrate=3437.6kbits/s
    frame=58896 fps=1246 q=-1.0 size= 1030716kB time=00:40:56.51 bitrate=3437.2kbits/s
    frame=59532 fps=1247 q=-1.0 size= 1040563kB time=00:41:23.07 bitrate=3433.0kbits/s
    frame=60180 fps=1247 q=-1.0 size= 1050403kB time=00:41:49.98 bitrate=3428.3kbits/s
    frame=60828 fps=1247 q=-1.0 size= 1061649kB time=00:42:16.99 bitrate=3428.1kbits/s
    frame=61474 fps=1248 q=-1.0 size= 1074568kB time=00:42:43.96 bitrate=3433.3kbits/s
    frame=62115 fps=1248 q=-1.0 size= 1085639kB time=00:43:10.84 bitrate=3432.7kbits/s
    frame=62756 fps=1248 q=-1.0 size= 1097419kB time=00:43:37.53 bitrate=3434.6kbits/s
    frame=63386 fps=1248 q=-1.0 size= 1106389kB time=00:44:03.84 bitrate=3428.2kbits/s
    frame=64021 fps=1248 q=-1.0 size= 1116336kB time=00:44:30.24 bitrate=3424.8kbits/s
    frame=64661 fps=1249 q=-1.0 size= 1125403kB time=00:44:56.99 bitrate=3418.4kbits/s
    frame=65317 fps=1249 q=-1.0 size= 1136088kB time=00:45:24.22 bitrate=3416.3kbits/s
    frame=65961 fps=1249 q=-1.0 size= 1147899kB time=00:45:51.13 bitrate=3418.1kbits/s
    frame=66600 fps=1250 q=-1.0 size= 1162044kB time=00:46:17.76 bitrate=3427.0kbits/s
    frame=67241 fps=1250 q=-1.0 size= 1176632kB time=00:46:44.54 bitrate=3436.9kbits/s
    frame=67880 fps=1250 q=-1.0 size= 1190068kB time=00:47:11.23 bitrate=3443.4kbits/s
    frame=68528 fps=1250 q=-1.0 size= 1202236kB time=00:47:38.30 bitrate=3445.7kbits/s
    frame=69167 fps=1251 q=-1.0 size= 1212770kB time=00:48:04.89 bitrate=3443.8kbits/s
    frame=69794 fps=1251 q=-1.0 size= 1223721kB time=00:48:31.07 bitrate=3443.7kbits/s
    frame=70429 fps=1251 q=-1.0 size= 1234308kB time=00:48:57.56 bitrate=3442.1kbits/s
    frame=71060 fps=1251 q=-1.0 size= 1244350kB time=00:49:23.80 bitrate=3439.4kbits/s
    frame=71679 fps=1251 q=-1.0 size= 1255417kB time=00:49:49.60 bitrate=3440.1kbits/s
    frame=72310 fps=1251 q=-1.0 size= 1267726kB time=00:50:15.93 bitrate=3443.4kbits/s
    frame=72963 fps=1251 q=-1.0 size= 1278583kB time=00:50:43.20 bitrate=3441.8kbits/s
    frame=73602 fps=1251 q=-1.0 size= 1289095kB time=00:51:09.88 bitrate=3440.0kbits/s
    frame=74232 fps=1251 q=-1.0 size= 1299087kB time=00:51:36.19 bitrate=3437.2kbits/s
    frame=74877 fps=1251 q=-1.0 size= 1309086kB time=00:52:03.07 bitrate=3433.8kbits/s
    frame=75528 fps=1252 q=-1.0 size= 1320015kB time=00:52:30.24 bitrate=3432.6kbits/s
    frame=76165 fps=1252 q=-1.0 size= 1332817kB time=00:52:56.83 bitrate=3436.9kbits/s
    frame=76820 fps=1252 q=-1.0 size= 1346328kB time=00:53:24.03 bitrate=3442.3kbits/s
    frame=77469 fps=1253 q=-1.0 size= 1358395kB time=00:53:51.16 bitrate=3443.9kbits/s
    frame=78109 fps=1253 q=-1.0 size= 1372044kB time=00:54:17.85 bitrate=3450.1kbits/s
    frame=78752 fps=1253 q=-1.0 size= 1383558kB time=00:54:44.73 bitrate=3450.5kbits/s
    frame=79408 fps=1253 q=-1.0 size= 1396510kB time=00:55:11.90 bitrate=3454.3kbits/s
    frame=80047 fps=1253 q=-1.0 size= 1409065kB time=00:55:38.65 bitrate=3457.4kbits/s
    frame=80666 fps=1253 q=-1.0 size= 1423756kB time=00:56:04.60 bitrate=3466.5kbits/s
    frame=81319 fps=1254 q=-1.0 size= 1435246kB time=00:56:31.68 bitrate=3466.6kbits/s
    frame=81954 fps=1254 q=-1.0 size= 1444000kB time=00:56:58.17 bitrate=3460.7kbits/s
    frame=82589 fps=1254 q=-1.0 size= 1452949kB time=00:57:24.60 bitrate=3455.4kbits/s
    frame=83225 fps=1254 q=-1.0 size= 1461413kB time=00:57:51.16 bitrate=3449.0kbits/s
    frame=83872 fps=1254 q=-1.0 size= 1471616kB time=00:58:18.11 bitrate=3446.3kbits/s
    frame=84507 fps=1254 q=-1.0 size= 1484380kB time=00:58:44.67 bitrate=3450.0kbits/s
    frame=85104 fps=1254 q=-1.0 size= 1496265kB time=00:59:09.66 bitrate=3453.1kbits/s
    frame=85724 fps=1254 q=-1.0 size= 1509974kB time=00:59:35.42 bitrate=3459.6kbits/s
    frame=86337 fps=1253 q=-1.0 size= 1524116kB time=01:00:01.05 bitrate=3467.2kbits/s
    frame=86951 fps=1253 q=-1.0 size= 1537764kB time=01:00:26.59 bitrate=3473.6kbits/s
    frame=87599 fps=1253 q=-1.0 size= 1551674kB time=01:00:53.63 bitrate=3479.1kbits/s
    frame=88234 fps=1253 q=-1.0 size= 1564008kB time=01:01:20.22 bitrate=3481.4kbits/s
    frame=88862 fps=1253 q=-1.0 size= 1573544kB time=01:01:46.36 bitrate=3477.9kbits/s
    frame=89488 fps=1253 q=-1.0 size= 1585859kB time=01:02:12.44 bitrate=3480.7kbits/s
    frame=90089 fps=1253 q=-1.0 size= 1597842kB time=01:02:37.63 bitrate=3483.5kbits/s
    frame=90670 fps=1252 q=-1.0 size= 1609253kB time=01:03:01.72 bitrate=3486.0kbits/s
    frame=91258 fps=1252 q=-1.0 size= 1619793kB time=01:03:26.40 bitrate=3486.1kbits/s
    frame=91868 fps=1251 q=-1.0 size= 1630762kB time=01:03:51.71 bitrate=3486.5kbits/s
    frame=92496 fps=1251 q=-1.0 size= 1642329kB time=01:04:17.85 bitrate=3487.4kbits/s
    frame=93113 fps=1251 q=-1.0 size= 1652031kB time=01:04:43.68 bitrate=3484.7kbits/s
    frame=93761 fps=1251 q=-1.0 size= 1665666kB time=01:05:10.65 bitrate=3489.2kbits/s
    frame=94397 fps=1251 q=-1.0 size= 1676527kB time=01:05:37.12 bitrate=3488.4kbits/s
    frame=95045 fps=1251 q=-1.0 size= 1684495kB time=01:06:04.12 bitrate=3481.1kbits/s
    frame=95682 fps=1252 q=-1.0 size= 1692071kB time=01:06:30.72 bitrate=3473.4kbits/s
    frame=96315 fps=1252 q=-1.0 size= 1702313kB time=01:06:57.12 bitrate=3471.5kbits/s
    frame=96926 fps=1251 q=-1.0 size= 1713855kB time=01:07:22.75 bitrate=3472.9kbits/s
    frame=97548 fps=1251 q=-1.0 size= 1723748kB time=01:07:48.54 bitrate=3470.8kbits/s
    frame=98154 fps=1251 q=-1.0 size= 1734177kB time=01:08:13.82 bitrate=3470.2kbits/s
    frame=98814 fps=1251 q=-1.0 size= 1746510kB time=01:08:41.44 bitrate=3471.5kbits/s
    frame=99492 fps=1252 q=-1.0 size= 1760472kB time=01:09:09.60 bitrate=3475.5kbits/s
    frame=100169 fps=1253 q=-1.0 size= 1773636kB time=01:09:37.85 bitrate=3477.8kbits/s
    frame=100831 fps=1253 q=-1.0 size= 1788123kB time=01:10:05.56 bitrate=3483.1kbits/s
    frame=101487 fps=1253 q=-1.0 size= 1802950kB time=01:10:32.99 bitrate=3489.2kbits/s
    frame=102140 fps=1254 q=-1.0 size= 1819246kB time=01:11:00.09 bitrate=3498.3kbits/s
    frame=102784 fps=1254 q=-1.0 size= 1833990kB time=01:11:26.97 bitrate=3504.6kbits/s
    frame=103435 fps=1254 q=-1.0 size= 1848698kB time=01:11:54.24 bitrate=3510.4kbits/s
    frame=104108 fps=1254 q=-1.0 size= 1864733kB time=01:12:22.14 bitrate=3518.1kbits/s
    frame=104753 fps=1255 q=-1.0 size= 1877427kB time=01:12:49.15 bitrate=3520.1kbits/s
    frame=105383 fps=1255 q=-1.0 size= 1891234kB time=01:13:15.42 bitrate=3524.8kbits/s
    frame=106023 fps=1255 q=-1.0 size= 1904922kB time=01:13:42.01 bitrate=3529.0kbits/s
    frame=106662 fps=1255 q=-1.0 size= 1917575kB time=01:14:08.73 bitrate=3531.1kbits/s
    frame=107293 fps=1255 q=-1.0 size= 1928359kB time=01:14:35.13 bitrate=3530.0kbits/s
    frame=107921 fps=1255 q=-1.0 size= 1938067kB time=01:15:01.24 bitrate=3527.2kbits/s
    frame=108555 fps=1255 q=-1.0 size= 1947500kB time=01:15:27.61 bitrate=3523.7kbits/s
    frame=109174 fps=1255 q=-1.0 size= 1957790kB time=01:15:53.34 bitrate=3522.3kbits/s
    frame=109783 fps=1254 q=-1.0 size= 1966974kB time=01:16:18.88 bitrate=3519.1kbits/s
    frame=110411 fps=1254 q=-1.0 size= 1977830kB time=01:16:45.12 bitrate=3518.3kbits/s
    frame=111037 fps=1254 q=-1.0 size= 1989063kB time=01:17:11.10 bitrate=3518.5kbits/s
    frame=111672 fps=1254 q=-1.0 size= 2001594kB time=01:17:37.53 bitrate=3520.5kbits/s
    frame=112308 fps=1254 q=-1.0 size= 2012759kB time=01:18:04.19 bitrate=3520.0kbits/s
    frame=112960 fps=1254 q=-1.0 size= 2021870kB time=01:18:31.36 bitrate=3515.6kbits/s
    frame=113595 fps=1254 q=-1.0 size= 2031012kB time=01:18:57.95 bitrate=3511.7kbits/s
    frame=114232 fps=1255 q=-1.0 size= 2041098kB time=01:19:24.48 bitrate=3509.4kbits/s
    frame=114874 fps=1255 q=-1.0 size= 2053817kB time=01:19:51.26 bitrate=3511.6kbits/s
    frame=115518 fps=1255 q=-1.0 size= 2063108kB time=01:20:18.08 bitrate=3507.8kbits/s
    frame=116175 fps=1255 q=-1.0 size= 2074576kB time=01:20:45.37 bitrate=3507.5kbits/s
    frame=116839 fps=1255 q=-1.0 size= 2086123kB time=01:21:13.24 bitrate=3506.8kbits/s
    frame=117509 fps=1256 q=-1.0 size= 2099390kB time=01:21:41.08 bitrate=3509.1kbits/s
    frame=118149 fps=1256 q=-1.0 size= 2110453kB time=01:22:07.87 bitrate=3508.4kbits/s
    frame=118796 fps=1256 q=-1.0 size= 2121882kB time=01:22:34.91 bitrate=3508.1kbits/s
    frame=119454 fps=1256 q=-1.0 size= 2133238kB time=01:23:02.20 bitrate=3507.6kbits/s
    frame=120092 fps=1256 q=-1.0 size= 2143443kB time=01:23:28.89 bitrate=3505.6kbits/s
    frame=120733 fps=1256 q=-1.0 size= 2153302kB time=01:23:55.58 bitrate=3503.0kbits/s
    frame=121375 fps=1257 q=-1.0 size= 2163855kB time=01:24:22.40 bitrate=3501.6kbits/s
    frame=121994 fps=1256 q=-1.0 size= 2176247kB time=01:24:48.19 bitrate=3503.8kbits/s
    frame=122600 fps=1256 q=-1.0 size= 2187297kB time=01:25:13.53 bitrate=3504.1kbits/s
    frame=123228 fps=1256 q=-1.0 size= 2198061kB time=01:25:39.64 bitrate=3503.5kbits/s
    frame=123895 fps=1257 q=-1.0 size= 2209817kB time=01:26:07.36 bitrate=3503.3kbits/s
    frame=124543 fps=1257 q=-1.0 size= 2222700kB time=01:26:34.49 bitrate=3505.3kbits/s
    frame=125170 fps=1257 q=-1.0 size= 2235759kB time=01:27:00.57 bitrate=3508.3kbits/s
    frame=125785 fps=1256 q=-1.0 size= 2247392kB time=01:27:26.40 bitrate=3509.2kbits/s
    frame=126420 fps=1256 q=-1.0 size= 2263027kB time=01:27:52.80 bitrate=3515.9kbits/s
    frame=127013 fps=1256 q=-1.0 size= 2275781kB time=01:28:17.60 bitrate=3519.2kbits/s
    frame=127606 fps=1256 q=-1.0 size= 2287355kB time=01:28:42.11 bitrate=3520.8kbits/s
    frame=128194 fps=1255 q=-1.0 size= 2297605kB time=01:29:06.81 bitrate=3520.2kbits/s
    frame=128779 fps=1255 q=-1.0 size= 2305269kB time=01:29:31.16 bitrate=3516.0kbits/s
    frame=129380 fps=1255 q=-1.0 size= 2312209kB time=01:29:56.25 bitrate=3510.1kbits/s
    frame=129973 fps=1254 q=-1.0 size= 2320674kB time=01:30:21.12 bitrate=3506.8kbits/s
    frame=130562 fps=1254 q=-1.0 size= 2328812kB time=01:30:45.60 bitrate=3503.3kbits/s
    frame=131151 fps=1253 q=-1.0 size= 2336692kB time=01:31:10.27 bitrate=3499.3kbits/s
    frame=131223 fps=1254 q=-1.0 Lsize= 2343066kB time=01:31:13.19 bitrate=3507.0kbits/s

    video:1930693kB audio:406272kB subtitle:0 global headers:0kB muxing overhead 0.261047%
    Quote Quote  
  29. It seems to be a known issue with the AC3 track but supposedly fixed. I don't know if it is important since it now seems to encode instead of aborting. If you are unsure make a report with a sample file in the ffmpeg trac.
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!