Ffmpeg error splitting the input into nal units

I am trying to change the container of a video acquired from an NVR using ffmpeg, but the output video is not playable by VLC or QuickTime. The output video stays still. In detail, using the follow...

I am trying to change the container of a video acquired from an NVR using ffmpeg, but the output video is not playable by VLC or QuickTime. The output video stays still. In detail, using the following command:

ffmpeg -i input.avi -c:v copy output.mp4

I get the following error and warning messages:

ffmpeg version 4.2.2 Copyright (c) 2000-2019 the FFmpeg developers
  built with Apple clang version 11.0.0 (clang-1100.0.33.17)
  configuration: --prefix=/usr/local/Cellar/ffmpeg/4.2.2_2 --enable-shared --enable-pthreads --enable-version3 --enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-ffplay --enable-gnutls --enable-gpl --enable-libaom --enable-libbluray --enable-libmp3lame --enable-libopus --enable-librubberband --enable-libsnappy --enable-libtesseract --enable-libtheora --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxvid --enable-lzma --enable-libfontconfig --enable-libfreetype --enable-frei0r --enable-libass --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-librtmp --enable-libspeex --enable-libsoxr --enable-videotoolbox --disable-libjack --disable-indev=jack
  libavutil      56. 31.100 / 56. 31.100
  libavcodec     58. 54.100 / 58. 54.100
  libavformat    58. 29.100 / 58. 29.100
  libavdevice    58.  8.100 / 58.  8.100
  libavfilter     7. 57.100 /  7. 57.100
  libavresample   4.  0.  0 /  4.  0.  0
  libswscale      5.  5.100 /  5.  5.100
  libswresample   3.  5.100 /  3.  5.100
  libpostproc    55.  5.100 / 55.  5.100
[h264 @ 0x7fc5aa810e00] missing picture in access unit with size 16
[h264 @ 0x7fc5aa810e00] No start code is found.
[h264 @ 0x7fc5aa810e00] Error splitting the input into NAL units.
[h264 @ 0x7fc5aa810e00] missing picture in access unit with size 16
[h264 @ 0x7fc5aa810e00] No start code is found.
[h264 @ 0x7fc5aa810e00] Error splitting the input into NAL units.
[h264 @ 0x7fc5aa810e00] missing picture in access unit with size 16
[h264 @ 0x7fc5aa810e00] No start code is found.
[h264 @ 0x7fc5aa810e00] Error splitting the input into NAL units.
[h264 @ 0x7fc5aa810e00] missing picture in access unit with size 16
...
    Last message repeated 13 times
Input #0, avi, from 'input.avi':
  Duration: 01:00:09.43, start: 0.000000, bitrate: 423 kb/s
    Stream #0:0: Video: h264 (High) (H264 / 0x34363248), yuvj420p(pc, bt709, progressive), 1280x720, 418 kb/s, 30 fps, 30 tbr, 30 tbn, 60 tbc

Output #0, mp4, to 'output.mp4':
  Metadata:
    encoder         : Lavf58.29.100
    Stream #0:0: Video: h264 (High) (avc1 / 0x31637661), yuvj420p(pc, bt709, progressive), 1280x720, q=2-31, 418 kb/s, 30 fps, 30 tbr, 1000k tbn, 30 tbc
Stream mapping:
  Stream #0:0 -> #0:0 (copy)
Press [q] to stop, [?] for help
[mp4 @ 0x7fb18580a600] Timestamps are unset in a packet for stream 0. This is deprecated and will stop working in the future. Fix your code to set the timestamps properly
[NULL @ 0x7fb185000600] missing picture in access unit with size 16
    Last message repeated 14 times
[NULL @ 0x7fb185000600] missing picture in access unit with size 8
[NULL @ 0x7fb185000600] missing picture in access unit with size 16
    Last message repeated 35943 times
[NULL @ 0x7fb185000600] missing picture in access unit with size 16= 431.7kbits/s speed=3.99e+03x
    Last message repeated 29061 times
frame=108284 fps=0.0 q=-1.0 Lsize=  183632kB time=01:00:09.39 bitrate= 416.8kbits/s speed=4.05e+03x
video:184216kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown

The input video details using ffprobe are listed below:

{
    "streams": [
        {
            "index": 0,
            "codec_name": "h264",
            "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10",
            "profile": "High",
            "codec_type": "video",
            "codec_time_base": "33333/2000000",
            "codec_tag_string": "H264",
            "codec_tag": "0x34363248",
            "width": 1280,
            "height": 720,
            "coded_width": 1280,
            "coded_height": 720,
            "has_b_frames": 0,
            "pix_fmt": "yuvj420p",
            "level": 31,
            "color_range": "pc",
            "color_space": "bt709",
            "color_transfer": "bt709",
            "color_primaries": "bt709",
            "chroma_location": "left",
            "field_order": "progressive",
            "refs": 1,
            "is_avc": "false",
            "nal_length_size": "0",
            "r_frame_rate": "30/1",
            "avg_frame_rate": "1000000/33333",
            "time_base": "33333/1000000",
            "start_pts": 0,
            "start_time": "0.000000",
            "duration_ts": 108284,
            "duration": "3609.430572",
            "bit_rate": "418103",
            "bits_per_raw_sample": "8",
            "nb_frames": "108284",
            "disposition": {
                "default": 0,
                "dub": 0,
                "original": 0,
                "comment": 0,
                "lyrics": 0,
                "karaoke": 0,
                "forced": 0,
                "hearing_impaired": 0,
                "visual_impaired": 0,
                "clean_effects": 0,
                "attached_pic": 0,
                "timed_thumbnails": 0
            }
        }
    ],
    "format": {
        "filename": "input.avi",
        "nb_streams": 1,
        "nb_programs": 0,
        "format_name": "avi",
        "format_long_name": "AVI (Audio Video Interleaved)",
        "start_time": "0.000000",
        "duration": "3609.430572",
        "size": "191260108",
        "bit_rate": "423911",
        "probe_score": 100
    }
}

Output video details

{
    "streams": [
        {
            "index": 0,
            "codec_name": "h264",
            "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10",
            "profile": "High",
            "codec_type": "video",
            "codec_time_base": "33333/2000000",
            "codec_tag_string": "avc1",
            "codec_tag": "0x31637661",
            "width": 1280,
            "height": 720,
            "coded_width": 1280,
            "coded_height": 720,
            "has_b_frames": 0,
            "pix_fmt": "yuvj420p",
            "level": 31,
            "color_range": "pc",
            "color_space": "bt709",
            "color_transfer": "bt709",
            "color_primaries": "bt709",
            "chroma_location": "left",
            "refs": 1,
            "is_avc": "true",
            "nal_length_size": "4",
            "r_frame_rate": "1000000/33333",
            "avg_frame_rate": "1000000/33333",
            "time_base": "1/1000000",
            "start_pts": 0,
            "start_time": "0.000000",
            "duration_ts": 3609430572,
            "duration": "3609.430572",
            "bit_rate": "415792",
            "bits_per_raw_sample": "8",
            "nb_frames": "108284",
            "disposition": {
                "default": 1,
                "dub": 0,
                "original": 0,
                "comment": 0,
                "lyrics": 0,
                "karaoke": 0,
                "forced": 0,
                "hearing_impaired": 0,
                "visual_impaired": 0,
                "clean_effects": 0,
                "attached_pic": 0,
                "timed_thumbnails": 0
            },
            "tags": {
                "language": "und",
                "handler_name": "VideoHandler"
            }
        }
    ],
    "format": {
        "filename": "cam4_03-14-20.mp4",
        "nb_streams": 1,
        "nb_programs": 0,
        "format_name": "mov,mp4,m4a,3gp,3g2,mj2",
        "format_long_name": "QuickTime / MOV",
        "start_time": "0.000000",
        "duration": "3609.431000",
        "size": "188039397",
        "bit_rate": "416773",
        "probe_score": 100,
        "tags": {
            "major_brand": "isom",
            "minor_version": "512",
            "compatible_brands": "isomiso2avc1mp41",
            "encoder": "Lavf58.29.100"
        }
    }
}

Any suggestions on how to change the container without re-encoding?

I’m trying to concat and encode local videos and videos from web, everything is working nicely till if I lost connection when I’m processing a video from web it will show an error log and finish the encoding but without throwing fail encoding.

Is there anyway to specify to don’t finish the encoding and throw an error??

Command I’m executing:

ffmpeg -y -i square.mp4 -i https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4  -filter_complex ‘[0:v] crop=ih:ih, scale=720:-1, setsar=1 [clip0];[1:v] crop=ih:ih,scale=720:-1, setsar=1 [clip1]; [0:a] anull [audio0];[1:a] anull [audio1]; [clip0][audio0][clip1][audio1] concat=n=2:v=1:a=1 [v][a]’ -map ‘[v]’ -map ‘[a]’ -c:a aac -c:v h264 -crf 18 -r 30 -err_detect explode -preset veryfast out.mp4

I thought that -err_detect explode would do the the job but it didn’t

I’m using library for android: https://github.com/tanersener/mobile-ffmpeg

With ffmpeg version: 4.3.1

Logs I get:

[tls @ 0x760431c8c0] Error in the pull function.

E/mobile-ffmpeg: [mov,mp4,m4a,3gp,3g2,mj2 @ 0x768144a800] stream 1, offset 0x100b23: partial file

W/mobile-ffmpeg: https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4 corrupt input packet in stream 0

E/mobile-ffmpeg: [h264 @ 0x75d4e6a700] Invalid NAL unit size (12632 > 9776).

E/mobile-ffmpeg: [h264 @ 0x75d4e6a700] Error splitting the input into NAL units.

E/mobile-ffmpeg: https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4 Invalid data found when processing input

E/mobile-ffmpeg: https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4 Invalid data found when processing input

E/mobile-ffmpeg: https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4 Invalid data found when processing input

I/mobile-ffmpeg: frame= 564 fps= 31 q=24.0 size= 5888kB time=00:00:18.90 bitrate=2551.8kbits/s dup=1 drop=0 speed=1.04x

E/mobile-ffmpeg: https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4 Invalid data found when processing input

E/mobile-ffmpeg: https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4 Invalid data found when processing input

E/mobile-ffmpeg: https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4 Invalid data found when processing input

E/mobile-ffmpeg: https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4 Invalid data found when processing input

E/mobile-ffmpeg: https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4 Invalid data found when processing input

E/mobile-ffmpeg: Error while decoding stream #1:0: Invalid data found when processing input

E/mobile-ffmpeg: https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4 Invalid data found when processing input

E/mobile-ffmpeg: https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4 Invalid data found when processing input

E/mobile-ffmpeg: https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4 Invalid data found when processing input

У меня проблемы с кодированием файла «mp42» в mp4 (H264) с параметрами кодирования:

-vcodec libx264 -bufsize 32M -b:v 2800k -maxrate 3800k -g 63 -vf "scale=1280:720" -acodec aac -ab 192k -ar 44100 -ac 2 -strict experimental -profile:v baseline -level 3.1 -pix_fmt yuv420p"

Информация о видеофайле:

Metadata:
    major_brand     : mp42
    minor_version   : 0
    compatible_brands: mp42mp41
    creation_time   : 2017-09-15T15:25:16.000000Z
  Duration: 01:28:40.00, start: 0.000000, bitrate: 1479 kb/s
    Stream #0:0(eng): Video: h264 (Main) (avc1 / 0x31637661), yuv420p(tv, bt709), 1280x720, 2996 kb/s, 25 fps, 25 tbr, 25k tbn, 50 tbc (default)
    Metadata:
      creation_time   : 2017-09-15T15:25:16.000000Z
      handler_name    : Alias Data Handler
      encoder         : AVC Coding
    Stream #0:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 189 kb/s (default)

Вывод кодировки FFMPEG вставлен ниже. По разным причинам я не могу перейти на более новую установку ffmpeg вручную, но я использую версию пакета Debian (Debian OS 9.1) с довольно свежим ffmpeg.

Знают ли люди, с чем связана эта проблема, и была ли она решена в более свежих версиях ffmpeg?

ffmpeg version 3.2.7-1~deb9u1 Copyright (c) 2000-2017 the FFmpeg developers
built with gcc 6.3.0 (Debian 6.3.0-18) 20170516
configuration: --prefix=/usr --extra-version='1~deb9u1' --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --disable-stripping --enable-avresample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libebur128 --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmp3lame --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-omx --enable-openal --enable-opengl --enable-sdl2 --enable-libdc1394 --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libopencv --enable-libx264 --enable-shared
libavutil 55. 34.101 / 55. 34.101
libavcodec 57. 64.101 / 57. 64.101
libavformat 57. 56.101 / 57. 56.101
libavdevice 57. 1.100 / 57. 1.100
libavfilter 6. 65.100 / 6. 65.100
libavresample 3. 1. 0 / 3. 1. 0
libswscale 4. 2.100 / 4. 2.100
libswresample 2. 3.100 / 2. 3.100
libpostproc 54. 1.100 / 54. 1.100
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/usr/local/shellscripte/markly/download-robert_k.mp4-1506570833-1506568923/robert_k.mp4':
Metadata:
major_brand : mp42
minor_version : 0
compatible_brands: mp42mp41
creation_time : 2017-09-15T15:25:16.000000Z
Duration: 01:28:40.00, start: 0.000000, bitrate: 3206 kb/s
Stream #0:0(eng): Video: h264 (Main) (avc1 / 0x31637661), yuv420p(tv, bt709), 1280x720, 2996 kb/s, 25 fps, 25 tbr, 25k tbn, 50 tbc (default)
Metadata:
creation_time : 2017-09-15T15:25:16.000000Z
handler_name : Alias Data Handler
encoder : AVC Coding
Stream #0:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 189 kb/s (default)
Metadata:
creation_time : 2017-09-15T15:25:16.000000Z
handler_name : Alias Data Handler
[libx264 @ 0x5620b118ec60] VBV buffer (32000) > level limit (14000)
[libx264 @ 0x5620b118ec60] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 AVX2 LZCNT BMI2
[libx264 @ 0x5620b118ec60] profile Constrained Baseline, level 3.1
[libx264 @ 0x5620b118ec60] 264 - core 148 r2748 97eaef2 - H.264/MPEG-4 AVC codec - Copyleft 2003-2016 - http://www.videolan.org/x264.html - options: cabac=0 ref=1 deblock=1:0:0 analyse=0x1:0 me=dia subme=2 psy=1 psy_rd=1.00:0.00 mixed_ref=0 me_range=16 chroma_me=1 trellis=0 8x8dct=0 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=0 threads=22 lookahead_threads=5 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=0 weightp=0 keyint=63 keyint_min=6 scenecut=40 intra_refresh=0 rc_lookahead=40 rc=abr mbtree=1 bitrate=2800 ratetol=1.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 vbv_maxrate=3800 vbv_bufsize=32000 nal_hrd=none filler=0 ip_ratio=1.40 aq=1:1.00
Output #0, mp4, to '/usr/local/shellscripte/markly/output-robert_k.mp4-1506570833-1506568923/robert_k_720p.mp4':
Metadata:
major_brand : mp42
minor_version : 0
compatible_brands: mp42mp41
encoder : Lavf57.56.101
Stream #0:0(eng): Video: h264 (libx264) ([33][0][0][0] / 0x0021), yuv420p, 1280x720, q=-1--1, 2800 kb/s, 25 fps, 12800 tbn, 25 tbc (default)
Metadata:
creation_time : 2017-09-15T15:25:16.000000Z
handler_name : Alias Data Handler
encoder : Lavc57.64.101 libx264
Side data:
cpb: bitrate max/min/avg: 3800000/0/2800000 buffer size: 32000000 vbv_delay: -1
Stream #0:1(eng): Audio: aac (LC) ([64][0][0][0] / 0x0040), 44100 Hz, stereo, fltp, 192 kb/s (default)
Metadata:
creation_time : 2017-09-15T15:25:16.000000Z
handler_name : Alias Data Handler
encoder : Lavc57.64.101 aac
Stream mapping:
Stream #0:0 -> #0:0 (h264 (native) -> h264 (libx264))
Stream #0:1 -> #0:1 (aac (native) -> aac (native))
Press [q] to stop, [?] for help
frame= 124 fps=0.0 q=3.0 size= 205kB time=00:00:05.52 bitrate= 303.6kbits/s speed= 11x 
frame= 237 fps=237 q=24.0 size= 2801kB time=00:00:09.93 bitrate=2308.9kbits/s speed=9.94x 
frame= 356 fps=237 q=28.0 size= 4978kB time=00:00:14.74 bitrate=2765.9kbits/s speed=9.83x
......
......
......
frame=36564 fps=167 q=26.0 size= 534254kB time=00:24:23.13 bitrate=2991.3kbits/s speed=6.67x 
[h264 @ 0x5620b0bcdf80] Reference 3 >= 3
[h264 @ 0x5620b0bcdf80] error while decoding MB 38 33, bytestream 3005
[h264 @ 0x5620b0bcdf80] concealing 971 DC, 971 AC, 971 MV errors in B frame
[h264 @ 0x5620b08a2200] Invalid nal size 930990328
[h264 @ 0x5620b08a2200] Error splitting the input into NAL units.
[h264 @ 0x5620b09490e0] Invalid nal size 1837326039
[h264 @ 0x5620b09490e0] Error splitting the input into NAL units.
[h264 @ 0x5620b0957020] Invalid nal size 187446698
[h264 @ 0x5620b0957020] Error splitting the input into NAL units.
[h264 @ 0x5620b0aecf80] Invalid nal size 145353988
[h264 @ 0x5620b0aecf80] Error splitting the input into NAL units.
[h264 @ 0x5620b0b08ae0] Invalid nal size -1036350434
[h264 @ 0x5620b0b08ae0] Error splitting the input into NAL units.
[h264 @ 0x5620b0dad3c0] Invalid nal size -1622171000
[h264 @ 0x5620b0dad3c0] Error splitting the input into NAL units.
[aac @ 0x5620b118fa20] Multiple frames in a packet.
[aac @ 0x5620b118fa20] channel element 2.13 is not allocated
Error while decoding stream #0:1: Invalid data found when processing input
[aac @ 0x5620b118fa20] channel element 3.12 is not allocated
Error while decoding stream #0:1: Invalid data found when processing input
[aac @ 0x5620b118fa20] Reserved bit set.
[aac @ 0x5620b118fa20] Prediction is not allowed in AAC-LC.
Error while decoding stream #0:1: Invalid data found when processing input
[aac @ 0x5620b118fa20] Number of bands (14) exceeds limit (5).
Error while decoding stream #0:1: Invalid data found when processing input
[aac @ 0x5620b118fa20] Reserved bit set.
[aac @ 0x5620b118fa20] Sample rate index in program config element does not match the sample rate index configured by the container.
[aac @ 0x5620b118fa20] Inconsistent channel configuration.
[aac @ 0x5620b118fa20] get_buffer() failed
Error while decoding stream #0:1: Invalid argument
[aac @ 0x5620b118fa20] Reserved bit set.
[aac @ 0x5620b118fa20] Number of scalefactor bands in group (57) exceeds limit (49).
Error while decoding stream #0:1: Invalid data found when processing input
[aac @ 0x5620b118fa20] Reserved bit set.
[aac @ 0x5620b118fa20] Prediction is not allowed in AAC-LC.
Error while decoding stream #0:1: Invalid data found when processing input
[aac @ 0x5620b118fa20] Sample rate index in program config element does not match the sample rate index configured by the container.
[aac @ 0x5620b118fa20] Remapped id too large
[aac @ 0x5620b118fa20] is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
[aac @ 0x5620b118fa20] If you want to help, upload a sample of this file to ftp://upload.ffmpeg.org/incoming/ and contact the ffmpeg-devel mailing list. (ffmpeg-devel@ffmpeg.org)
Error while decoding stream #0:1: Not yet implemented in FFmpeg, patches welcome
[aac @ 0x5620b118fa20] Number of bands (3) exceeds limit (2).
Error while decoding stream #0:1: Invalid data found when processing input
[aac @ 0x5620b118fa20] channel element 3.8 is not allocated
Error while decoding stream #0:1: Invalid data found when processing input
[aac @ 0x5620b118fa20] Sample rate index in program config element does not match the sample rate index configured by the container.
[aac @ 0x5620b118fa20] Inconsistent channel configuration.
[aac @ 0x5620b118fa20] get_buffer() failed
Error while decoding stream #0:1: Invalid argument
[aac @ 0x5620b118fa20] Sample rate index in program config element does not match the sample rate index configured by the container.
[aac @ 0x5620b118fa20] Remapped id too large
[aac @ 0x5620b118fa20] is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
[aac @ 0x5620b118fa20] If you want to help, upload a sample of this file to ftp: //upload.ffmpeg.org/incoming/ and contact the ffmpeg-devel mailing list. (ffmpeg-devel@ffmpeg.org)
Error while decoding stream #0:1: Not yet implemented in FFmpeg, patches welcome

I am trying to change the container of a video acquired from an NVR using ffmpeg, but the output video is not playable by VLC or QuickTime. The output video stays still. In detail, using the following command:

ffmpeg -i input.avi -c:v copy output.mp4

I get the following error and warning messages:

ffmpeg version 4.2.2 Copyright (c) 2000-2019 the FFmpeg developers
  built with Apple clang version 11.0.0 (clang-1100.0.33.17)
  configuration: --prefix=/usr/local/Cellar/ffmpeg/4.2.2_2 --enable-shared --enable-pthreads --enable-version3 --enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-ffplay --enable-gnutls --enable-gpl --enable-libaom --enable-libbluray --enable-libmp3lame --enable-libopus --enable-librubberband --enable-libsnappy --enable-libtesseract --enable-libtheora --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxvid --enable-lzma --enable-libfontconfig --enable-libfreetype --enable-frei0r --enable-libass --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-librtmp --enable-libspeex --enable-libsoxr --enable-videotoolbox --disable-libjack --disable-indev=jack
  libavutil      56. 31.100 / 56. 31.100
  libavcodec     58. 54.100 / 58. 54.100
  libavformat    58. 29.100 / 58. 29.100
  libavdevice    58.  8.100 / 58.  8.100
  libavfilter     7. 57.100 /  7. 57.100
  libavresample   4.  0.  0 /  4.  0.  0
  libswscale      5.  5.100 /  5.  5.100
  libswresample   3.  5.100 /  3.  5.100
  libpostproc    55.  5.100 / 55.  5.100
[h264 @ 0x7fc5aa810e00] missing picture in access unit with size 16
[h264 @ 0x7fc5aa810e00] No start code is found.
[h264 @ 0x7fc5aa810e00] Error splitting the input into NAL units.
[h264 @ 0x7fc5aa810e00] missing picture in access unit with size 16
[h264 @ 0x7fc5aa810e00] No start code is found.
[h264 @ 0x7fc5aa810e00] Error splitting the input into NAL units.
[h264 @ 0x7fc5aa810e00] missing picture in access unit with size 16
[h264 @ 0x7fc5aa810e00] No start code is found.
[h264 @ 0x7fc5aa810e00] Error splitting the input into NAL units.
[h264 @ 0x7fc5aa810e00] missing picture in access unit with size 16
...
    Last message repeated 13 times
Input #0, avi, from 'input.avi':
  Duration: 01:00:09.43, start: 0.000000, bitrate: 423 kb/s
    Stream #0:0: Video: h264 (High) (H264 / 0x34363248), yuvj420p(pc, bt709, progressive), 1280x720, 418 kb/s, 30 fps, 30 tbr, 30 tbn, 60 tbc

Output #0, mp4, to 'output.mp4':
  Metadata:
    encoder         : Lavf58.29.100
    Stream #0:0: Video: h264 (High) (avc1 / 0x31637661), yuvj420p(pc, bt709, progressive), 1280x720, q=2-31, 418 kb/s, 30 fps, 30 tbr, 1000k tbn, 30 tbc
Stream mapping:
  Stream #0:0 -> #0:0 (copy)
Press [q] to stop, [?] for help
[mp4 @ 0x7fb18580a600] Timestamps are unset in a packet for stream 0. This is deprecated and will stop working in the future. Fix your code to set the timestamps properly
[NULL @ 0x7fb185000600] missing picture in access unit with size 16
    Last message repeated 14 times
[NULL @ 0x7fb185000600] missing picture in access unit with size 8
[NULL @ 0x7fb185000600] missing picture in access unit with size 16
    Last message repeated 35943 times
[NULL @ 0x7fb185000600] missing picture in access unit with size 16= 431.7kbits/s speed=3.99e+03x
    Last message repeated 29061 times
frame=108284 fps=0.0 q=-1.0 Lsize=  183632kB time=01:00:09.39 bitrate= 416.8kbits/s speed=4.05e+03x
video:184216kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown

The input video details using ffprobe are listed below:

{
    "streams": [
        {
            "index": 0,
            "codec_name": "h264",
            "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10",
            "profile": "High",
            "codec_type": "video",
            "codec_time_base": "33333/2000000",
            "codec_tag_string": "H264",
            "codec_tag": "0x34363248",
            "width": 1280,
            "height": 720,
            "coded_width": 1280,
            "coded_height": 720,
            "has_b_frames": 0,
            "pix_fmt": "yuvj420p",
            "level": 31,
            "color_range": "pc",
            "color_space": "bt709",
            "color_transfer": "bt709",
            "color_primaries": "bt709",
            "chroma_location": "left",
            "field_order": "progressive",
            "refs": 1,
            "is_avc": "false",
            "nal_length_size": "0",
            "r_frame_rate": "30/1",
            "avg_frame_rate": "1000000/33333",
            "time_base": "33333/1000000",
            "start_pts": 0,
            "start_time": "0.000000",
            "duration_ts": 108284,
            "duration": "3609.430572",
            "bit_rate": "418103",
            "bits_per_raw_sample": "8",
            "nb_frames": "108284",
            "disposition": {
                "default": 0,
                "dub": 0,
                "original": 0,
                "comment": 0,
                "lyrics": 0,
                "karaoke": 0,
                "forced": 0,
                "hearing_impaired": 0,
                "visual_impaired": 0,
                "clean_effects": 0,
                "attached_pic": 0,
                "timed_thumbnails": 0
            }
        }
    ],
    "format": {
        "filename": "input.avi",
        "nb_streams": 1,
        "nb_programs": 0,
        "format_name": "avi",
        "format_long_name": "AVI (Audio Video Interleaved)",
        "start_time": "0.000000",
        "duration": "3609.430572",
        "size": "191260108",
        "bit_rate": "423911",
        "probe_score": 100
    }
}

Output video details

{
    "streams": [
        {
            "index": 0,
            "codec_name": "h264",
            "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10",
            "profile": "High",
            "codec_type": "video",
            "codec_time_base": "33333/2000000",
            "codec_tag_string": "avc1",
            "codec_tag": "0x31637661",
            "width": 1280,
            "height": 720,
            "coded_width": 1280,
            "coded_height": 720,
            "has_b_frames": 0,
            "pix_fmt": "yuvj420p",
            "level": 31,
            "color_range": "pc",
            "color_space": "bt709",
            "color_transfer": "bt709",
            "color_primaries": "bt709",
            "chroma_location": "left",
            "refs": 1,
            "is_avc": "true",
            "nal_length_size": "4",
            "r_frame_rate": "1000000/33333",
            "avg_frame_rate": "1000000/33333",
            "time_base": "1/1000000",
            "start_pts": 0,
            "start_time": "0.000000",
            "duration_ts": 3609430572,
            "duration": "3609.430572",
            "bit_rate": "415792",
            "bits_per_raw_sample": "8",
            "nb_frames": "108284",
            "disposition": {
                "default": 1,
                "dub": 0,
                "original": 0,
                "comment": 0,
                "lyrics": 0,
                "karaoke": 0,
                "forced": 0,
                "hearing_impaired": 0,
                "visual_impaired": 0,
                "clean_effects": 0,
                "attached_pic": 0,
                "timed_thumbnails": 0
            },
            "tags": {
                "language": "und",
                "handler_name": "VideoHandler"
            }
        }
    ],
    "format": {
        "filename": "cam4_03-14-20.mp4",
        "nb_streams": 1,
        "nb_programs": 0,
        "format_name": "mov,mp4,m4a,3gp,3g2,mj2",
        "format_long_name": "QuickTime / MOV",
        "start_time": "0.000000",
        "duration": "3609.431000",
        "size": "188039397",
        "bit_rate": "416773",
        "probe_score": 100,
        "tags": {
            "major_brand": "isom",
            "minor_version": "512",
            "compatible_brands": "isomiso2avc1mp41",
            "encoder": "Lavf58.29.100"
        }
    }
}

Any suggestions on how to change the container without re-encoding?

Hi guys. I’m trying to play an HEVC video but neither Totem nor mplayer can play it. :-( The audio is correctly played, but not the video.

My computer has never given any performance problem, but i have to say that my video card is old. I’m posting the hardware configuration.
CPU: Intel Core i5-3570 (quad core, no HT) @ 3.40GHz
GPU: NVidia GeForce 9600 GT with 256MB of RAM
RAM: 8GB DDR3

The video is Full HD as the screen resolution.

I’m posting the mplayer output

MPlayer SVN-r37857 (C) 2000-2016 MPlayer Team
224 audio & 451 video codecs
do_connect: could not connect to socket
connect: No such file or directory
Failed to open LIRC support. You will not be able to use your remote control.

Playing video.mkv.
libavformat version 57.41.100 (external)
Mismatching header version 57.25.100
libavformat file format detected.

then it repeats hundred times

[hevc @ 0x7f8c15f9a260]No start code is found.
[hevc @ 0x7f8c15f9a260]Error splitting the input into NAL units.

then

[matroska,webm @ 0x7f8c16b201c0]decoding for stream 0 failed
[matroska,webm @ 0x7f8c16b201c0]Could not find codec parameters for stream 0 (Video: hevc, none, 1920x816): unspecified pixel format
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[lavf] stream 0: video (hevc), -vid 0, Video H.265
[lavf] stream 1: audio (ac3), -aid 0, -alang ita
VIDEO:  [HEVC]  1920x816  0bpp  23.976 fps    0.0 kbps ( 0.0 kbyte/s)
Could not find a UTF-8 locale,
character keys beyond Latin-1 will not be handled.
==========================================================================
Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
libavcodec version 57.48.101 (external)
Mismatching header version 57.24.102
Selected video codec: [ffhevc] vfm: ffmpeg (FFmpeg HEVC / H.265)
==========================================================================
Clip info:
 title: video
 ENCODER: Lavf57.41.100
Load subtitles in ./
==========================================================================
Opening audio decoder: [ffmpeg] FFmpeg/libavcodec audio decoders
[ac3 @ 0x7f8c15f9a260]Channel layout '5.1(side)' with 6 channels does not match specified number of channels 2: ignoring specified channel layout
AUDIO: 48000 Hz, 2 ch, floatle, 448.0 kbit/14.58% (ratio: 56000->384000)
Selected audio codec: [ffac3] afm: ffmpeg (FFmpeg AC-3)
==========================================================================
[AO OSS] audio_setup: Can't open audio device /dev/dsp: No such file or directory
AO: [alsa] 48000Hz 2ch floatle (4 bytes per sample)
Starting playback...

then it repeats hundred times

[hevc @ 0x7f8c15f9a260]No start code is found.
[hevc @ 0x7f8c15f9a260]Error splitting the input into NAL units.
Error while decoding frame
Too many buffered pts
[matroska,webm @ 0x7f796344f1c0]Could not find codec parameters for stream 0 (Video: hevc, none, 1920x816): unspecified pixel format
Consider increasing the value for the 'analyzeduration' and 'probesize' options
Could not find a UTF-8 locale,
character keys beyond Latin-1 will not be handled.
[ac3 @ 0x7f79628c9260]Channel layout '5.1(side)' with 6 channels does not match specified number of channels 2: ignoring specified channel layout
[AO OSS] audio_setup: Can't open audio device /dev/dsp: No such file or directory

Other hundreds time the error above, and then

Too many audio packets in the buffer: (4096 in 7340032 bytes).



           ************************************************
           **** Your system is too SLOW to play this!  ****
           ************************************************

Possible reasons, problems, workarounds:
- Most common: broken/buggy _audio_ driver
  - Try -ao sdl or use the OSS emulation of ALSA.
  - Experiment with different values for -autosync, 30 is a good start.
- Slow video output
  - Try a different -vo driver (-vo help for a list) or try -framedrop!
- Slow CPU
  - Don't try to play a big DVD/DivX on a slow CPU! Try some of the lavdopts,
    e.g. -vfm ffmpeg -lavdopts lowres=1:fast:skiploopfilter=all.
- Broken file
  - Try various combinations of -nobps -ni -forceidx -mc 0.
- Slow media (NFS/SMB mounts, DVD, VCD etc)
  - Try -cache 8192.
- Are you using -cache to play a non-interleaved AVI file?
  - Try -nocache.
Read DOCS/HTML/en/video.html for tuning/speedup tips.
If none of this helps you, read DOCS/HTML/en/bugreports.html.

I tried wuth «ao=alsa» but nothing changes.

Thank you in advance for the answers.

Last edited by Mons1990 (2016-10-27 12:51:31)


Hardware configuration: Intel Core i5 3.4GHz, 8GB DDR3 RAM, NVIDIA GEForce 9600GT
Software configuration: Arch Linux, default kernel, NVidia 340xx drivers, Gnome 3 on X.Org
Mons

I have been using DVD styler for a while with no issues. Suddenly I cannot generate the files / burn disc.
Here is error code I am getting (ref to line 214)…Can anyone help pls???
DVDStyler v3.0.4
Windows 10 (build 16299), 64-bit edition
FFmpeg: libavformat 57.46.100, libavcodec 57.51.100, libavutil 55.28.100
Prepare
Cleaning temporary directory
Search for transcoded files in cache
=============================================================================
| Input size | Output duration | Bitrate | Estimated output size
VMGM menu 1 | | | 8.0 Mb/s | 0.1 MB
VMGM menu 2 | | | 8.0 Mb/s | 0.1 MB
Title 1
mp4 | 2472.1 MB | 22:47.893 sec | 8.0 Mb/s | 1367.9 MB
Total | | 22:47.893 sec | | 1368.1 MB
=============================================================================
Generating menu 1 of 2
Create menu MPEG
Frame count of menu: 12
Multiplexing subpictures into mpeg
Executing command: spumux -P -s 0 «C:UsersDell3620AppDataLocalTempdvd-tmpmenu0-0.mpg_spumux.xml»
DVDAuthor::spumux, version 0.7.1.
Build options: gnugetopt iconv freetype fribidi fontconfig
Send bug reports to dvdauthor-users@lists.sourceforge.net
INFO: no default video format, must explicitly specify NTSC or PAL
INFO: PNG had 1 colors
INFO: PNG had 4 colors
INFO: PNG had 4 colors
INFO: Pickbuttongroups, success with 1 groups, useimg=1
INFO: 0 bytes of data written
INFO: 14336 bytes of data written
INFO: 28672 bytes of data written
INFO: 43008 bytes of data written
INFO: 57344 bytes of data written
INFO: Found EOF in .sub file.
INFO: Max_sub_size=124
INFO: 1 subtitles added, 0 subtitles skipped, stream: 32, offset: 0.54
Executing command: spumux -P -s 1 «C:UsersDell3620AppDataLocalTempdvd-tmpmenu0-0.mpg_spumux.xml»
DVDAuthor::spumux, version 0.7.1.
Build options: gnugetopt iconv freetype fribidi fontconfig
Send bug reports to dvdauthor-users@lists.sourceforge.net
INFO: no default video format, must explicitly specify NTSC or PAL
INFO: PNG had 1 colors
INFO: PNG had 4 colors
INFO: PNG had 4 colors
INFO: Pickbuttongroups, success with 1 groups, useimg=1
INFO: 0 bytes of data written
INFO: 16384 bytes of data written
INFO: 30720 bytes of data written
INFO: 47104 bytes of data written
INFO: 61440 bytes of data written
INFO: Found EOF in .sub file.
INFO: Max_sub_size=102
INFO: 75776 bytes of data written
INFO: found existing substream ID 0x20 (DVD-Video 0)
INFO: 1 subtitles added, 0 subtitles skipped, stream: 33, offset: 0.54
Generating menu 2 of 2
Create menu MPEG
Frame count of menu: 12
Multiplexing subpictures into mpeg
Executing command: spumux -P -s 0 «C:UsersDell3620AppDataLocalTempdvd-tmpmenu0-1.mpg_spumux.xml»
DVDAuthor::spumux, version 0.7.1.
Build options: gnugetopt iconv freetype fribidi fontconfig
Send bug reports to dvdauthor-users@lists.sourceforge.net
INFO: no default video format, must explicitly specify NTSC or PAL
INFO: PNG had 1 colors
INFO: PNG had 4 colors
INFO: PNG had 4 colors
INFO: Pickbuttongroups, success with 1 groups, useimg=1
INFO: 0 bytes of data written
INFO: 14336 bytes of data written
INFO: 28672 bytes of data written
INFO: 43008 bytes of data written
INFO: 57344 bytes of data written
INFO: Found EOF in .sub file.
INFO: Max_sub_size=1866
INFO: 1 subtitles added, 0 subtitles skipped, stream: 32, offset: 0.54
Executing command: spumux -P -s 1 «C:UsersDell3620AppDataLocalTempdvd-tmpmenu0-1.mpg_spumux.xml»
DVDAuthor::spumux, version 0.7.1.
Build options: gnugetopt iconv freetype fribidi fontconfig
Send bug reports to dvdauthor-users@lists.sourceforge.net
INFO: no default video format, must explicitly specify NTSC or PAL
INFO: PNG had 1 colors
INFO: PNG had 4 colors
INFO: PNG had 4 colors
INFO: Pickbuttongroups, success with 1 groups, useimg=1
INFO: 0 bytes of data written
INFO: 16384 bytes of data written
INFO: 30720 bytes of data written
INFO: 45056 bytes of data written
INFO: 59392 bytes of data written
INFO: Found EOF in .sub file.
INFO: Max_sub_size=1416
INFO: 73728 bytes of data written
INFO: found existing substream ID 0x20 (DVD-Video 0)
INFO: 1 subtitles added, 0 subtitles skipped, stream: 33, offset: 0.54
Transcode video 1 of 1
Add file to cache:C:UsersDell3620AppDataLocalTempdvd-cacheentry001.vob
Transcode video file: D:III Nase DocumentsMyPicturesCD 42 — MadisonDVD3_3-7monthsMadison_DVD3_P1.mp4
Need encode: true, use mplex: false
Executing command: ffmpeg-vbr.bat -fflags +genpts -threads 8 -i «D:III Nase DocumentsMyPicturesCD 42 — MadisonDVD3_3-7monthsMadison_DVD3_P1.mp4» -f dvd -c:v:0 mpeg2video -aspect 16:9 -s 720×576 -r 25 -g 15 -pix_fmt yuv420p -b:v:0 8000000 -maxrate:v:0 8000000 -minrate:v:0 8000000 -bufsize:v:0 1835008 -packetsize 2048 -muxrate 10080000 -force_key_frames 10:00,20:00 -vf scale=718:576,pad=720:576:1:0 -b:a 192000 -ar 48000 -c:a:0 ac3 -map 0:V -map 0:a -map -0:s «C:UsersDell3620AppDataLocalTempdvd-cacheentry001.vob»
=============================================================================

FFMpeg-VBR Plugin Settings:

VBR Threshold: 7000 kbps
2-Pass Threshold: 4500 kbps
HQ Threshold: 4500 kbps
Extreme HQ Threshold: 0 kbps
Medium Bitrate Threshold: 7000 kbps
Low Bitrate Threshold: 3500 kbps


<Tue 02=»» 01=»» 2018=»» 16:03:59.36=»»>
File Name: D:III Nase DocumentsMyPicturesCD 42 — MadisonDVD3_3-7monthsMadison_DVD3_P1.mp4
Encoding Mode: CBR HQ: NO Custom Quant Matrix: Fox New

Executing command generated by the ffmpeg-VBR plugin:
ffmpeg.exe -fflags +genpts -threads 8 -i «D:III Nase DocumentsMyPicturesCD 42 — MadisonDVD3_3-7monthsMadison_DVD3_P1.mp4» -f dvd -c:v:0 mpeg2video -dc 10 -intra_matrix «8,8,9,9,10,10,11,11,8,9,9,10,10,11,11,12,9,9,10,10,11,11,12,12,9,10,10,11,11,12,13,13,10,10,11,11,12,13,13,14,10,11,11,12,13,13,14,15,11,11,12,13,13,14,15,15,11,12,12,13,14,15,15,16» -inter_matrix «8,8,9,9,10,10,11,11,8,9,9,10,10,11,11,12,9,9,10,10,11,11,12,12,9,10,10,11,11,12,13,13,10,10,11,11,12,13,13,14,10,11,11,12,13,13,14,15,11,11,12,13,13,14,15,15,11,12,12,13,14,15,15,16» -aspect 16:9 -s 720×576 -r 25 -g 15 -pix_fmt yuv420p -b:v:0 8000000 -maxrate:v:0 8000000 -minrate:v:0 8000000 -bufsize:v:0 1835008 -packetsize 2048 -muxrate 10080000 -force_key_frames 10:00,20:00 -vf scale=718:576,pad=720:576:1:0 -b:a 192000 -ar 48000 -c:a:0 ac3 -map 0:V -map 0:a -map -0:s «C:UsersDell3620AppDataLocalTempdvd-cacheentry001.vob»

ffmpeg version n3.1.2 Copyright (c) 2000-2016 the FFmpeg developers
built with gcc 5.4.0 (GCC)
libavutil 55. 28.100 / 55. 28.100
libavcodec 57. 48.101 / 57. 48.101
libavformat 57. 41.100 / 57. 41.100
libavdevice 57. 0.101 / 57. 0.101
libavfilter 6. 47.100 / 6. 47.100
libswscale 4. 1.100 / 4. 1.100
libswresample 2. 1.100 / 2. 1.100
libpostproc 54. 0.100 / 54. 0.100
[h264 @ 0000000004588cc0] Invalid NAL unit size.
[h264 @ 0000000004588cc0] Error splitting the input into NAL units.
[h264 @ 0000000004588cc0] Invalid NAL unit size.
[h264 @ 0000000004588cc0] Error splitting the input into NAL units.
[h264 @ 0000000004588cc0] Invalid NAL unit size.
[h264 @ 0000000004588cc0] Error splitting the input into NAL units.
[h264 @ 0000000004588cc0] Invalid NAL unit size.
[h264 @ 0000000004588cc0] Error splitting the input into NAL units.
[h264 @ 0000000004588cc0] Invalid NAL unit size.
[h264 @ 0000000004588cc0] Error splitting the input into NAL units.
[h264 @ 0000000004588cc0] Invalid NAL unit size.
[h264 @ 0000000004588cc0] Error splitting the input into NAL units.
[h264 @ 0000000004588cc0] Invalid NAL unit size.
[h264 @ 0000000004588cc0] Error splitting the input into NAL units.
[h264 @ 0000000004588cc0] Invalid NAL unit size.
[h264 @ 0000000004588cc0] Error splitting the input into NAL units.
[h264 @ 0000000004588cc0] Invalid NAL unit size.
[h264 @ 0000000004588cc0] Error splitting the input into NAL units.
[h264 @ 0000000004588cc0] Invalid NAL unit size.
[h264 @ 0000000004588cc0] Error splitting the input into NAL units.
[h264 @ 0000000004588cc0] Invalid NAL unit size.
[h264 @ 0000000004588cc0] Error splitting the input into NAL units.
[h264 @ 0000000004588cc0] Invalid NAL unit size.
[h264 @ 0000000004588cc0] Error splitting the input into NAL units.
[h264 @ 0000000004588cc0] Invalid NAL unit size.
[h264 @ 0000000004588cc0] Error splitting the input into NAL units.
[h264 @ 0000000004588cc0] Invalid NAL unit size.
[h264 @ 0000000004588cc0] Error splitting the input into NAL units.
[h264 @ 0000000004588cc0] Invalid NAL unit size.
[h264 @ 0000000004588cc0] Error splitting the input into NAL units.
[h264 @ 0000000004588cc0] Invalid NAL unit size.
[h264 @ 0000000004588cc0] Error splitting the input into NAL units.
[h264 @ 0000000004588cc0] Invalid NAL unit size.
[h264 @ 0000000004588cc0] Error splitting the input into NAL units.
[h264 @ 0000000004588cc0] Invalid NAL unit size.
[h264 @ 0000000004588cc0] Error splitting the input into NAL units.
[h264 @ 0000000004588cc0] Invalid NAL unit size.
[h264 @ 0000000004588cc0] Error splitting the input into NAL units.
[h264 @ 0000000004588cc0] Invalid NAL unit size.
[h264 @ 0000000004588cc0] Error splitting the input into NAL units.
[h264 @ 0000000004588cc0] Invalid NAL unit size.
[h264 @ 0000000004588cc0] Error splitting the input into NAL units.
[h264 @ 0000000004588cc0] Missing reference picture, default is 2147483647
Last message repeated 3 times
[h264 @ 0000000004588cc0] Missing reference picture, default is 65584
Last message repeated 2 times
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from ‘D:III Nase DocumentsMyPicturesCD 42 — MadisonDVD3_3-7monthsMadison_DVD3_P1.mp4’:
Metadata:
major_brand : mp42
minor_version : 0
compatible_brands: mp42mp41
creation_time : 2018-01-02 06:01:05
Duration: 00:22:47.89, start: 0.000000, bitrate: 15160 kb/s
Stream #0:0(eng): Video: h264 (Main) (avc1 / 0x31637661), yuv420p(tv), 1440×1080 [SAR 133:100 DAR 133:75], 14999 kb/s, 25 fps, 25 tbr, 25k tbn, 50 tbc (default)
Metadata:
creation_time : 2018-01-02 06:01:05
handler_name : Mainconcept MP4 Video Media Handler
encoder : AVC Coding
Stream #0:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 157 kb/s (default)
Metadata:
creation_time : 2018-01-02 06:01:05
handler_name : Mainconcept MP4 Sound Media Handler
[dvd @ 000000000457ab60] Using AVStream.codec to pass codec parameters to muxers is deprecated, use AVStream.codecpar instead.
Output #0, dvd, to ‘C:UsersDell3620AppDataLocalTempdvd-cacheentry001.vob’:
Metadata:
major_brand : mp42
minor_version : 0
compatible_brands: mp42mp41
encoder : Lavf57.41.100
Stream #0:0(eng): Video: mpeg2video (Main), yuv420p, 720×576 [SAR 64:45 DAR 16:9], q=2-31, 8000 kb/s, 25 fps, 90k tbn, 25 tbc (default)
Metadata:
creation_time : 2018-01-02 06:01:05
handler_name : Mainconcept MP4 Video Media Handler
encoder : Lavc57.48.101 mpeg2video
Side data:
cpb: bitrate max/min/avg: 8000000/8000000/8000000 buffer size: 1835008 vbv_delay: -1
Stream #0:1(eng): Audio: ac3, 48000 Hz, stereo, fltp, 192 kb/s (default)
Metadata:
creation_time : 2018-01-02 06:01:05
handler_name : Mainconcept MP4 Sound Media Handler
encoder : Lavc57.48.101 ac3
Stream mapping:
Stream #0:0 -> #0:0 (h264 (native) -> mpeg2video (native))
Stream #0:1 -> #0:1 (aac (native) -> ac3 (native))
Press [q] to stop, [?] for help
[h264 @ 000000000513fb00] Invalid NAL unit size.
[h264 @ 000000000513fb00] Error splitting the input into NAL units.
[h264 @ 000000000514cd20] Invalid NAL unit size.
[h264 @ 000000000514cd20] Error splitting the input into NAL units.
[h264 @ 000000000514d380] Invalid NAL unit size.
[h264 @ 000000000514d380] Error splitting the input into NAL units.
[h264 @ 0000000005192ec0] Invalid NAL unit size.
[h264 @ 0000000005192ec0] Error splitting the input into NAL units.
[h264 @ 0000000005193920] Invalid NAL unit size.
[h264 @ 0000000005193920] Error splitting the input into NAL units.

It goes on and on…

Понравилась статья? Поделить с друзьями:

Читайте также:

  • Fix minecraft tlauncher an error occurred while uploading files common reasons in windows pc
  • Fix issue that system will show smart command error when using some wd hdd
  • Fix by nesting warp stabilizer как исправить
  • Fix apex legends engine error
  • Ffmpeg error number 10054 occurred

  • 0 0 голоса
    Рейтинг статьи
    Подписаться
    Уведомить о
    guest

    0 комментариев
    Старые
    Новые Популярные
    Межтекстовые Отзывы
    Посмотреть все комментарии