m-ab-s / media-autobuild_suite

This Windows Batchscript helps setup a Mingw-w64 compiler environment for building ffmpeg and other media tools under Windows.
GNU General Public License v3.0
1.52k stars 263 forks source link

SVT_VP9 produces empty files #1807

Open klaxosaur opened 4 years ago

klaxosaur commented 4 years ago

I tried both with the test commands from the readme file and a real video source, I get the same result. I checked with a hex editor, the file has all zeros. Not sure it's a bug with the compilation process or SVT_VP9 itself.

ffmpeg -f lavfi -i testsrc=duration=1:size=1280x720:rate=30 -c:v libsvt_vp9 -rc 1 -b:v 10M -preset 1 -y test.ivf
ffmpeg version N-99136-g6db3e4b382-gf5a61a1728+3 Copyright (c) 2000-2020 the FFmpeg developers
  built with gcc 10.2.0 (Rev1, Built by MSYS2 project)
  configuration:  --cc='ccache gcc' --cxx='ccache g++' --disable-autodetect --enable-amf --enable-bzlib --enable-cuda --enable-cuvid --enable-d3d11va --enable-dxva2 --enable-iconv --enable-lzma --enable-nvenc --enable-zlib --enable-sdl2 --enable-ffnvcodec --enable-nvdec --enable-cuda-llvm --enable-libmp3lame --enable-libopus --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265 --enable-libdav1d --enable-libaom --disable-debug --enable-fontconfig --enable-libass --enable-libbluray --enable-libfreetype --enable-libmfx --enable-libmysofa --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvo-amrwbenc --enable-libwavpack --enable-libwebp --enable-libxml2 --enable-libzimg --enable-libshine --enable-gpl --enable-avisynth --enable-libxvid --enable-libopenmpt --enable-version3 --enable-librav1e --enable-libsrt --enable-libgsm --enable-libvmaf --enable-chromaprint --enable-decklink --enable-frei0r --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libfdk-aac --enable-libflite --enable-libfribidi --enable-libgme --enable-libilbc --enable-libsvthevc --enable-libsvtav1 --enable-libsvtvp9 --enable-libkvazaar --enable-libmodplug --enable-librtmp --enable-librubberband --enable-libtesseract --enable-libxavs --enable-libzmq --enable-libzvbi --enable-openal --enable-libcodec2 --enable-ladspa --enable-libglslang --enable-vulkan --enable-opencl --enable-opengl --enable-libopenh264 --enable-openssl --extra-cflags=-fopenmp --extra-libs=-lgomp --extra-cflags=-DLIBTWOLAME_STATIC --extra-libs=-lstdc++ --extra-cflags=-DCACA_STATIC --extra-cflags=-DMODPLUG_STATIC --extra-cflags=-DCHROMAPRINT_NODLL --extra-libs=-lstdc++ --extra-cflags=-DZMQ_STATIC --extra-libs=-lpsapi --extra-cflags=-DLIBXML_STATIC --extra-libs=-liconv --disable-w32threads --extra-cflags=-DKVZ_STATIC_LIB --enable-nonfree --extra-cflags=-DAL_LIBTYPE_STATIC --extra-cflags='-IR:/dev/ffmpeg/local64/include/AL'
  libavutil      56. 58.100 / 56. 58.100
  libavcodec     58.106.100 / 58.106.100
  libavformat    58. 54.100 / 58. 54.100
  libavdevice    58. 11.101 / 58. 11.101
  libavfilter     7. 87.100 /  7. 87.100
  libswscale      5.  8.100 /  5.  8.100
  libswresample   3.  8.100 /  3.  8.100
  libpostproc    55.  8.100 / 55.  8.100
Input #0, lavfi, from 'testsrc=duration=1:size=1280x720:rate=30':
  Duration: N/A, start: 0.000000, bitrate: N/A
    Stream #0:0: Video: rawvideo (RGB[24] / 0x18424752), rgb24, 1280x720 [SAR 1:1 DAR 16:9], 30 tbr, 30 tbn, 30 tbc
Stream mapping:
  Stream #0:0 -> #0:0 (rawvideo (native) -> vp9 (libsvt_vp9))
Press [q] to stop, [?] for help
-------------------------------------------
SVT [version]   : SVT-VP9 Encoder Lib v0.2.1
SVT [build]     : GCC 10.2.0     64 bit
LIB Build date: Sep 13 2020 03:59:01
-------------------------------------------
Number of logical cores available: 4
Number of PPCS 37
-------------------------------------------
SVT [config]: Profile [0]       Level (auto)
SVT [config]: EncoderMode / Tune                                                : 1 / 0
SVT [config]: EncoderBitDepth                                                   : 8
SVT [config]: SourceWidth / SourceHeight                                        : 1280 / 720
SVT [config]: Fps_Numerator / Fps_Denominator / Gop Size                : 30 / 1 / 12
SVT [config]: HierarchicalLevels / BaseLayerSwitchMode / PredStructure          : 3 / 0 / 2
SVT [config]: RCMode / TargetBitrate                                            : VBR / 10000000
-------------------------------------------

Output #0, ivf, to 'test.ivf':
  Metadata:
    encoder         : Lavf58.54.100
    Stream #0:0: Video: vp9 (libsvt_vp9) (VP90 / 0x30395056), yuv420p, 1280x720 [SAR 1:1 DAR 16:9], q=10-48, 10000 kb/s, 30 fps, 30 tbn, 30 tbc
    Metadata:
      encoder         : Lavc58.106.100 libsvt_vp9
ffmpeg -i Big_Buck_Bunny_1080_10s_30MB.mp4 -c:v libsvt_vp9 -rc 1 -b:v 10M -preset 1 -y test.ivf
ffmpeg version N-99136-g6db3e4b382-gf5a61a1728+3 Copyright (c) 2000-2020 the FFmpeg developers
  built with gcc 10.2.0 (Rev1, Built by MSYS2 project)
  configuration:  --cc='ccache gcc' --cxx='ccache g++' --disable-autodetect --enable-amf --enable-bzlib --enable-cuda --enable-cuvid --enable-d3d11va --enable-dxva2 --enable-iconv --enable-lzma --enable-nvenc --enable-zlib --enable-sdl2 --enable-ffnvcodec --enable-nvdec --enable-cuda-llvm --enable-libmp3lame --enable-libopus --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265 --enable-libdav1d --enable-libaom --disable-debug --enable-fontconfig --enable-libass --enable-libbluray --enable-libfreetype --enable-libmfx --enable-libmysofa --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvo-amrwbenc --enable-libwavpack --enable-libwebp --enable-libxml2 --enable-libzimg --enable-libshine --enable-gpl --enable-avisynth --enable-libxvid --enable-libopenmpt --enable-version3 --enable-librav1e --enable-libsrt --enable-libgsm --enable-libvmaf --enable-chromaprint --enable-decklink --enable-frei0r --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libfdk-aac --enable-libflite --enable-libfribidi --enable-libgme --enable-libilbc --enable-libsvthevc --enable-libsvtav1 --enable-libsvtvp9 --enable-libkvazaar --enable-libmodplug --enable-librtmp --enable-librubberband --enable-libtesseract --enable-libxavs --enable-libzmq --enable-libzvbi --enable-openal --enable-libcodec2 --enable-ladspa --enable-libglslang --enable-vulkan --enable-opencl --enable-opengl --enable-libopenh264 --enable-openssl --extra-cflags=-fopenmp --extra-libs=-lgomp --extra-cflags=-DLIBTWOLAME_STATIC --extra-libs=-lstdc++ --extra-cflags=-DCACA_STATIC --extra-cflags=-DMODPLUG_STATIC --extra-cflags=-DCHROMAPRINT_NODLL --extra-libs=-lstdc++ --extra-cflags=-DZMQ_STATIC --extra-libs=-lpsapi --extra-cflags=-DLIBXML_STATIC --extra-libs=-liconv --disable-w32threads --extra-cflags=-DKVZ_STATIC_LIB --enable-nonfree --extra-cflags=-DAL_LIBTYPE_STATIC --extra-cflags='-IR:/dev/ffmpeg/local64/include/AL'
  libavutil      56. 58.100 / 56. 58.100
  libavcodec     58.106.100 / 58.106.100
  libavformat    58. 54.100 / 58. 54.100
  libavdevice    58. 11.101 / 58. 11.101
  libavfilter     7. 87.100 /  7. 87.100
  libswscale      5.  8.100 /  5.  8.100
  libswresample   3.  8.100 /  3.  8.100
  libpostproc    55.  8.100 / 55.  8.100
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'Big_Buck_Bunny_1080_10s_30MB.mp4':
  Metadata:
    major_brand     : isom
    minor_version   : 512
    compatible_brands: isomiso2avc1mp41
    title           : Big Buck Bunny, Sunflower version
    artist          : Blender Foundation 2008, Janus Bager Kristensen 2013
    composer        : Sacha Goedegebure
    encoder         : Lavf57.63.100
    comment         : Creative Commons Attribution 3.0 - http://bbb3d.renderfarming.net
    genre           : Animation
  Duration: 00:00:10.00, start: 0.000000, bitrate: 24563 kb/s
    Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 24559 kb/s, 30 fps, 30 tbr, 15360 tbn, 60 tbc (default)
    Metadata:
      handler_name    : VideoHandler
Stream mapping:
  Stream #0:0 -> #0:0 (h264 (native) -> vp9 (libsvt_vp9))
Press [q] to stop, [?] for help
-------------------------------------------
SVT [version]   : SVT-VP9 Encoder Lib v0.2.1
SVT [build]     : GCC 10.2.0     64 bit
LIB Build date: Sep 13 2020 03:59:01
-------------------------------------------
Number of logical cores available: 4
Number of PPCS 37
-------------------------------------------
SVT [config]: Profile [0]       Level (auto)
SVT [config]: EncoderMode / Tune                                                : 1 / 0
SVT [config]: EncoderBitDepth                                                   : 8
SVT [config]: SourceWidth / SourceHeight                                        : 1920 / 1080
SVT [config]: Fps_Numerator / Fps_Denominator / Gop Size                : 30 / 1 / 12
SVT [config]: HierarchicalLevels / BaseLayerSwitchMode / PredStructure          : 3 / 0 / 2
SVT [config]: RCMode / TargetBitrate                                            : VBR / 10000000
-------------------------------------------

Output #0, ivf, to 'test.ivf':
  Metadata:
    major_brand     : isom
    minor_version   : 512
    compatible_brands: isomiso2avc1mp41
    title           : Big Buck Bunny, Sunflower version
    artist          : Blender Foundation 2008, Janus Bager Kristensen 2013
    composer        : Sacha Goedegebure
    genre           : Animation
    comment         : Creative Commons Attribution 3.0 - http://bbb3d.renderfarming.net
    encoder         : Lavf58.54.100
    Stream #0:0(und): Video: vp9 (libsvt_vp9) (VP90 / 0x30395056), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], q=10-48, 10000 kb/s, 30 fps, 30 tbn, 30 tbc (default)
    Metadata:
      handler_name    : VideoHandler
      encoder         : Lavc58.106.100 libsvt_vp9
Sunkyue-Kim commented 3 years ago

Me too. same result.

ffmpeg version N-99829-g3aebd314bb-g5fb628521f+4 Copyright (c) 2000-2020 the FFmpeg developers
  built with clang version 11.0.0 (https://github.com/msys2/MINGW-packages 20f70d38fae51f89ce3c06d054a77139606df472)
  configuration:  --cc='ccache clang' --cxx='ccache clang++' --disable-autodetect --enable-amf --enable-bzlib --enable-cuda --enable-cuvid --enable-d3d11va --enable-dxva2 --enable-iconv --enable-lzma --enable-nvenc --enable-zlib --enable-sdl2 --enable-ffnvcodec --enable-nvdec --enable-cuda-llvm --enable-libmp3lame --enable-libopus --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265 --enable-libdav1d --enable-libaom --disable-debug --enable-libfdk-aac --enable-fontconfig --enable-libass --enable-libbluray --enable-libfreetype --enable-libmfx --enable-libmysofa --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvo-amrwbenc --enable-libwebp --enable-libxml2 --enable-libshine --enable-gpl --enable-avisynth --enable-libxvid --enable-libopenmpt --enable-version3 --enable-librav1e --enable-libsrt --enable-libgsm --enable-libvmaf --enable-libsvtav1 --enable-chromaprint --enable-decklink --enable-frei0r --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfribidi --enable-libgme --enable-libilbc --enable-libsvthevc --enable-libsvtvp9 --enable-libkvazaar --enable-libmodplug --enable-librtmp --enable-librubberband --enable-libtesseract --enable-libxavs --enable-libzmq --enable-libzvbi --enable-openal --enable-libcodec2 --enable-ladspa --enable-libglslang --enable-vulkan --enable-libdavs2 --enable-libxavs2 --enable-libuavs3d --enable-opencl --enable-opengl --enable-libnpp --enable-libopenh264 --enable-openssl --extra-cflags=-fopenmp --extra-libs=-lgomp --extra-cflags=-DLIBTWOLAME_STATIC --extra-libs=-lstdc++ --extra-cflags=-DCACA_STATIC --extra-cflags=-DMODPLUG_STATIC --extra-cflags=-DCHROMAPRINT_NODLL --extra-libs=-lstdc++ --extra-cflags=-DZMQ_STATIC --extra-libs=-lpsapi --extra-cflags=-DLIBXML_STATIC --extra-libs=-liconv --disable-w32threads --extra-cflags=-DKVZ_STATIC_LIB --enable-nonfree --extra-cflags='-IC:/PROGRA~1/NVIDIA~2/CUDA/v11.0/include' --extra-ldflags='-LC:/PROGRA~1/NVIDIA~2/CUDA/v11.0/lib/x64' --extra-cflags=-DAL_LIBTYPE_STATIC --extra-cflags='-IC:/mabs/local64/include/AL'
  libavutil      56. 60.100 / 56. 60.100
  libavcodec     58.112.101 / 58.112.101
  libavformat    58. 64.100 / 58. 64.100
  libavdevice    58. 11.102 / 58. 11.102
  libavfilter     7. 88.100 /  7. 88.100
  libswscale      5.  8.100 /  5.  8.100
  libswresample   3.  8.100 /  3.  8.100
  libpostproc    55.  8.100 / 55.  8.100
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'INPUT.mp4':
  Metadata:
    major_brand     : mp42
    minor_version   : 0
    compatible_brands: mp42isom
    creation_time   : 2018-10-01T09:20:12.000000Z
  Duration: 01:28:26.97, start: 0.000000, bitrate: 11631 kb/s
    Stream #0:0(eng): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 11498 kb/s, 23.98 fps, 23.98 tbr, 24k tbn, 47.95 tbc (default)
    Metadata:
      handler_name    : Telestream Inc. Dib Library - ReleaseVantage 2014.59.138974
      encoder         : Apple ProRes 422 (HQ)
    Stream #0:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 128 kb/s (default)
    Metadata:
      handler_name    : Telestream Inc. Dib Library - ReleaseVantage 2014.59.138974
File 'OUTPUT.webm' already exists. Overwrite? [y/N] y
Stream mapping:
  Stream #0:0 -> #0:0 (h264 (native) -> vp9 (libsvt_vp9))
  Stream #0:1 -> #0:1 (aac (native) -> opus (libopus))
Press [q] to stop, [?] for help
-------------------------------------------
SVT [version]   : SVT-VP9 Encoder Lib v0.3.0
SVT [build]     : GCC 10.2.0     64 bit
LIB Build date: Nov  3 2020 14:25:57
-------------------------------------------
Number of logical cores available: 32
Number of PPCS 30
-------------------------------------------
SVT [config]: Profile [0]       Level (auto)
SVT [config]: EncoderMode / Tune                                                : 9 / 0
SVT [config]: EncoderBitDepth                                                   : 8
SVT [config]: SourceWidth / SourceHeight                                        : 1920 / 1080
SVT [config]: Fps_Numerator / Fps_Denominator / Gop Size                : 24000 / 1001 / 24
SVT [config]: HierarchicalLevels / BaseLayerSwitchMode / PredStructure          : 3 / 0 / 2
SVT [config]: RCMode / TargetBitrate                                            : CBR / 750000
-------------------------------------------

Output #0, webm, to 'pets_hevc_new.webm':
  Metadata:
    major_brand     : mp42
    minor_version   : 0
    compatible_brands: mp42isom
    encoder         : Lavf58.64.100
    Stream #0:0(eng): Video: vp9 (libsvt_vp9) (Profile 2), yuv420p(progressive), 1920x1080 [SAR 1:1 DAR 16:9], q=10-48, 750 kb/s, 23.98 fps, 1k tbn, 23.98 tbc (default)
    Metadata:
      handler_name    : Telestream Inc. Dib Library - ReleaseVantage 2014.59.138974
      encoder         : Lavc58.112.101 libsvt_vp9
    Stream #0:1(eng): Audio: opus (libopus), 48000 Hz, stereo, flt, 64 kb/s (default)
    Metadata:
      handler_name    : Telestream Inc. Dib Library - ReleaseVantage 2014.59.138974
      encoder         : Lavc58.112.101 libopus

another run with -loglevel debug

ffmpeg version N-99829-g3aebd314bb-g5fb628521f+4 Copyright (c) 2000-2020 the FFmpeg developers
  built with clang version 11.0.0 (https://github.com/msys2/MINGW-packages 20f70d38fae51f89ce3c06d054a77139606df472)
  configuration:  --cc='ccache clang' --cxx='ccache clang++' --disable-autodetect --enable-amf --enable-bzlib --enable-cuda --enable-cuvid --enable-d3d11va --enable-dxva2 --enable-iconv --enable-lzma --enable-nvenc --enable-zlib --enable-sdl2 --enable-ffnvcodec --enable-nvdec --enable-cuda-llvm --enable-libmp3lame --enable-libopus --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265 --enable-libdav1d --enable-libaom --disable-debug --enable-libfdk-aac --enable-fontconfig --enable-libass --enable-libbluray --enable-libfreetype --enable-libmfx --enable-libmysofa --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvo-amrwbenc --enable-libwebp --enable-libxml2 --enable-libshine --enable-gpl --enable-avisynth --enable-libxvid --enable-libopenmpt --enable-version3 --enable-librav1e --enable-libsrt --enable-libgsm --enable-libvmaf --enable-libsvtav1 --enable-chromaprint --enable-decklink --enable-frei0r --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfribidi --enable-libgme --enable-libilbc --enable-libsvthevc --enable-libsvtvp9 --enable-libkvazaar --enable-libmodplug --enable-librtmp --enable-librubberband --enable-libtesseract --enable-libxavs --enable-libzmq --enable-libzvbi --enable-openal --enable-libcodec2 --enable-ladspa --enable-libglslang --enable-vulkan --enable-libdavs2 --enable-libxavs2 --enable-libuavs3d --enable-opencl --enable-opengl --enable-libnpp --enable-libopenh264 --enable-openssl --extra-cflags=-fopenmp --extra-libs=-lgomp --extra-cflags=-DLIBTWOLAME_STATIC --extra-libs=-lstdc++ --extra-cflags=-DCACA_STATIC --extra-cflags=-DMODPLUG_STATIC --extra-cflags=-DCHROMAPRINT_NODLL --extra-libs=-lstdc++ --extra-cflags=-DZMQ_STATIC --extra-libs=-lpsapi --extra-cflags=-DLIBXML_STATIC --extra-libs=-liconv --disable-w32threads --extra-cflags=-DKVZ_STATIC_LIB --enable-nonfree --extra-cflags='-IC:/PROGRA~1/NVIDIA~2/CUDA/v11.0/include' --extra-ldflags='-LC:/PROGRA~1/NVIDIA~2/CUDA/v11.0/lib/x64' --extra-cflags=-DAL_LIBTYPE_STATIC --extra-cflags='-IC:/mabs/local64/include/AL'
  libavutil      56. 60.100 / 56. 60.100
  libavcodec     58.112.101 / 58.112.101
  libavformat    58. 64.100 / 58. 64.100
  libavdevice    58. 11.102 / 58. 11.102
  libavfilter     7. 88.100 /  7. 88.100
  libswscale      5.  8.100 /  5.  8.100
  libswresample   3.  8.100 /  3.  8.100
  libpostproc    55.  8.100 / 55.  8.100
Splitting the commandline.
Reading option '-i' ... matched as input url with argument 'IMG_1895.MOV'.
Reading option '-c:v' ... matched as option 'c' (codec name) with argument 'libsvt_vp9'.
Reading option 'test_output.webm' ... matched as output url.
Reading option '-loglevel' ... matched as option 'loglevel' (set logging level) with argument 'debug'.
Finished splitting the commandline.
Parsing a group of options: global .
Applying option loglevel (set logging level) with argument debug.
Successfully parsed a group of options.
Parsing a group of options: input url IMG_1895.MOV.
Successfully parsed a group of options.
Opening an input file: IMG_1895.MOV.
[NULL @ 000002accd12e740] Opening 'IMG_1895.MOV' for reading
[file @ 000002accd12f840] Setting default whitelist 'file,crypto,data'
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] Format mov,mp4,m4a,3gp,3g2,mj2 probed with size=2048 and score=100
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] ISO: File Type Major Brand: qt
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] Unknown dref type 0x73696c61 size 12
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] Shifting DTS by 40 because of negative CTTS.
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] Processing st: 0, edit list 0 - media time: 0, duration: 4000
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 0 ctts: 0, ctts_index: 0, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 20 ctts: 60, ctts_index: 1, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 40 ctts: 0, ctts_index: 2, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 60 ctts: -40, ctts_index: 3, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 80 ctts: -20, ctts_index: 4, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 100 ctts: 60, ctts_index: 5, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 120 ctts: 0, ctts_index: 6, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 140 ctts: -40, ctts_index: 7, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 160 ctts: -20, ctts_index: 8, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 180 ctts: 60, ctts_index: 9, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 200 ctts: 0, ctts_index: 10, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 220 ctts: -40, ctts_index: 11, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 240 ctts: -20, ctts_index: 12, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 260 ctts: 60, ctts_index: 13, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 280 ctts: 0, ctts_index: 14, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 300 ctts: -40, ctts_index: 15, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 320 ctts: -20, ctts_index: 16, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 340 ctts: 60, ctts_index: 17, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 360 ctts: 0, ctts_index: 18, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 380 ctts: -40, ctts_index: 19, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 400 ctts: -20, ctts_index: 20, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 420 ctts: 60, ctts_index: 21, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 440 ctts: 0, ctts_index: 22, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 460 ctts: -40, ctts_index: 23, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 480 ctts: -20, ctts_index: 24, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 500 ctts: 60, ctts_index: 25, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 520 ctts: 0, ctts_index: 26, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 540 ctts: -40, ctts_index: 27, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 560 ctts: -20, ctts_index: 28, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 580 ctts: 60, ctts_index: 29, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 600 ctts: 0, ctts_index: 30, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 620 ctts: -40, ctts_index: 31, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 640 ctts: -20, ctts_index: 32, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 660 ctts: 60, ctts_index: 33, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 680 ctts: 0, ctts_index: 34, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 700 ctts: -40, ctts_index: 35, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 720 ctts: -20, ctts_index: 36, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 740 ctts: 60, ctts_index: 37, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 760 ctts: 0, ctts_index: 38, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 780 ctts: -40, ctts_index: 39, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 800 ctts: -20, ctts_index: 40, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 820 ctts: 60, ctts_index: 41, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 840 ctts: 0, ctts_index: 42, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 860 ctts: -40, ctts_index: 43, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 880 ctts: -20, ctts_index: 44, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 900 ctts: 60, ctts_index: 45, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 920 ctts: 0, ctts_index: 46, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 940 ctts: -40, ctts_index: 47, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 960 ctts: -20, ctts_index: 48, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 980 ctts: 60, ctts_index: 49, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1000 ctts: 0, ctts_index: 50, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1020 ctts: -40, ctts_index: 51, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1040 ctts: -20, ctts_index: 52, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1060 ctts: 60, ctts_index: 53, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1080 ctts: 0, ctts_index: 54, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1100 ctts: -40, ctts_index: 55, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1120 ctts: -20, ctts_index: 56, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1140 ctts: 60, ctts_index: 57, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1160 ctts: 0, ctts_index: 58, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1180 ctts: -40, ctts_index: 59, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1200 ctts: -20, ctts_index: 60, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1220 ctts: 60, ctts_index: 61, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1240 ctts: 0, ctts_index: 62, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1260 ctts: -40, ctts_index: 63, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1280 ctts: -20, ctts_index: 64, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1300 ctts: 60, ctts_index: 65, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1320 ctts: 0, ctts_index: 66, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1340 ctts: -40, ctts_index: 67, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1360 ctts: -20, ctts_index: 68, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1380 ctts: 60, ctts_index: 69, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1400 ctts: 0, ctts_index: 70, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1420 ctts: -40, ctts_index: 71, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1440 ctts: -20, ctts_index: 72, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1460 ctts: 60, ctts_index: 73, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1480 ctts: 0, ctts_index: 74, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1500 ctts: -40, ctts_index: 75, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1520 ctts: -20, ctts_index: 76, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1540 ctts: 60, ctts_index: 77, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1560 ctts: 0, ctts_index: 78, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1580 ctts: -40, ctts_index: 79, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1600 ctts: -20, ctts_index: 80, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1620 ctts: 60, ctts_index: 81, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1640 ctts: 0, ctts_index: 82, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1660 ctts: -40, ctts_index: 83, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1680 ctts: -20, ctts_index: 84, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1700 ctts: 60, ctts_index: 85, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1720 ctts: 0, ctts_index: 86, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1740 ctts: -40, ctts_index: 87, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1760 ctts: -20, ctts_index: 88, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1780 ctts: 60, ctts_index: 89, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1800 ctts: 0, ctts_index: 90, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1820 ctts: -40, ctts_index: 91, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1840 ctts: -20, ctts_index: 92, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1860 ctts: 60, ctts_index: 93, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1880 ctts: 0, ctts_index: 94, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1900 ctts: -40, ctts_index: 95, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1920 ctts: -20, ctts_index: 96, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1940 ctts: 60, ctts_index: 97, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1960 ctts: 0, ctts_index: 98, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 1980 ctts: -40, ctts_index: 99, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2000 ctts: -20, ctts_index: 100, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2020 ctts: 60, ctts_index: 101, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2040 ctts: 0, ctts_index: 102, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2060 ctts: -40, ctts_index: 103, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2080 ctts: -20, ctts_index: 104, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2100 ctts: 60, ctts_index: 105, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2120 ctts: 0, ctts_index: 106, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2140 ctts: -40, ctts_index: 107, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2160 ctts: -20, ctts_index: 108, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2180 ctts: 60, ctts_index: 109, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2200 ctts: 0, ctts_index: 110, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2220 ctts: -40, ctts_index: 111, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2240 ctts: -20, ctts_index: 112, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2260 ctts: 60, ctts_index: 113, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2280 ctts: 0, ctts_index: 114, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2300 ctts: -40, ctts_index: 115, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2320 ctts: -20, ctts_index: 116, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2340 ctts: 60, ctts_index: 117, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2360 ctts: 0, ctts_index: 118, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2380 ctts: -40, ctts_index: 119, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2400 ctts: -20, ctts_index: 120, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2420 ctts: 60, ctts_index: 121, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2440 ctts: 0, ctts_index: 122, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2460 ctts: -40, ctts_index: 123, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2480 ctts: -20, ctts_index: 124, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2500 ctts: 60, ctts_index: 125, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2520 ctts: 0, ctts_index: 126, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2540 ctts: -40, ctts_index: 127, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2560 ctts: -20, ctts_index: 128, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2580 ctts: 60, ctts_index: 129, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2600 ctts: 0, ctts_index: 130, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2620 ctts: -40, ctts_index: 131, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2640 ctts: -20, ctts_index: 132, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2660 ctts: 60, ctts_index: 133, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2680 ctts: 0, ctts_index: 134, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2700 ctts: -40, ctts_index: 135, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2720 ctts: -20, ctts_index: 136, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2740 ctts: 60, ctts_index: 137, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2760 ctts: 0, ctts_index: 138, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2780 ctts: -40, ctts_index: 139, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2800 ctts: -20, ctts_index: 140, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2820 ctts: 60, ctts_index: 141, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2840 ctts: 0, ctts_index: 142, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2860 ctts: -40, ctts_index: 143, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2880 ctts: -20, ctts_index: 144, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2900 ctts: 60, ctts_index: 145, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2920 ctts: 0, ctts_index: 146, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2940 ctts: -40, ctts_index: 147, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2960 ctts: -20, ctts_index: 148, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 2980 ctts: 60, ctts_index: 149, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3000 ctts: 0, ctts_index: 150, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3020 ctts: -40, ctts_index: 151, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3040 ctts: -20, ctts_index: 152, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3060 ctts: 60, ctts_index: 153, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3080 ctts: 0, ctts_index: 154, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3100 ctts: -40, ctts_index: 155, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3120 ctts: -20, ctts_index: 156, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3140 ctts: 60, ctts_index: 157, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3160 ctts: 0, ctts_index: 158, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3180 ctts: -40, ctts_index: 159, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3200 ctts: -20, ctts_index: 160, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3220 ctts: 60, ctts_index: 161, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3240 ctts: 0, ctts_index: 162, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3260 ctts: -40, ctts_index: 163, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3280 ctts: -20, ctts_index: 164, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3300 ctts: 60, ctts_index: 165, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3320 ctts: 0, ctts_index: 166, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3340 ctts: -40, ctts_index: 167, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3360 ctts: -20, ctts_index: 168, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3380 ctts: 60, ctts_index: 169, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3400 ctts: 0, ctts_index: 170, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3420 ctts: -40, ctts_index: 171, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3440 ctts: -20, ctts_index: 172, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3460 ctts: 60, ctts_index: 173, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3480 ctts: 0, ctts_index: 174, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3500 ctts: -40, ctts_index: 175, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3520 ctts: -20, ctts_index: 176, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3540 ctts: 60, ctts_index: 177, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3560 ctts: 0, ctts_index: 178, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3580 ctts: -40, ctts_index: 179, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3600 ctts: -20, ctts_index: 180, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3620 ctts: 60, ctts_index: 181, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3640 ctts: 0, ctts_index: 182, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3660 ctts: -40, ctts_index: 183, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3680 ctts: -20, ctts_index: 184, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3700 ctts: 60, ctts_index: 185, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3720 ctts: 0, ctts_index: 186, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3740 ctts: -40, ctts_index: 187, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3760 ctts: -20, ctts_index: 188, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3780 ctts: 60, ctts_index: 189, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3800 ctts: 0, ctts_index: 190, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3820 ctts: -40, ctts_index: 191, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3840 ctts: -20, ctts_index: 192, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3860 ctts: 60, ctts_index: 193, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3880 ctts: 0, ctts_index: 194, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3900 ctts: -40, ctts_index: 195, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3920 ctts: -20, ctts_index: 196, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3940 ctts: 40, ctts_index: 197, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3960 ctts: 0, ctts_index: 198, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] stts: 3980 ctts: -40, ctts_index: 199, ctts_count: 200
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] Unknown dref type 0x73696c61 size 12
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] Processing st: 1, edit list 0 - media time: 2112, duration: 293927
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] drop a frame at curr_cts: 0 @ 0
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] drop a frame at curr_cts: 1024 @ 1
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] skip 64 audio samples from curr_cts: 2048
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] Unknown dref type 0x73696c61 size 12
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] Processing st: 2, edit list 0 - media time: 0, duration: 4000
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] Unknown dref type 0x73696c61 size 12
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] Processing st: 3, edit list 0 - media time: 0, duration: 4000
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] Unknown dref type 0x73696c61 size 12
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] Processing st: 4, edit list 0 - media time: 0, duration: 4000
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] Before avformat_find_stream_info() pos: 6542685 bytes read:44628 seeks:1 nb_streams:5
[hevc @ 000002accd130800] nal_unit_type: 32(VPS), nuh_layer_id: 0, temporal_id: 0
[hevc @ 000002accd130800] Decoding VPS
[hevc @ 000002accd130800] Main profile bitstream
[hevc @ 000002accd130800] nal_unit_type: 33(SPS), nuh_layer_id: 0, temporal_id: 0
[hevc @ 000002accd130800] Decoding SPS
[hevc @ 000002accd130800] Main profile bitstream
[hevc @ 000002accd130800] Decoding VUI
[hevc @ 000002accd130800] nal_unit_type: 34(PPS), nuh_layer_id: 0, temporal_id: 0
[hevc @ 000002accd130800] Decoding PPS
[hevc @ 000002accd130800] nal_unit_type: 34(PPS), nuh_layer_id: 0, temporal_id: 0
[hevc @ 000002accd130800] Decoding PPS
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] demuxer injecting skip 2112 / discard 0
[aac @ 000002accd137600] skip 2112 / discard 0 samples due to side data
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] All info found
[mov,mp4,m4a,3gp,3g2,mj2 @ 000002accd12e740] After avformat_find_stream_info() pos: 72902 bytes read:117494 seeks:2 frames:44
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'IMG_1895.MOV':
  Metadata:
    major_brand     : qt
    minor_version   : 0
    compatible_brands: qt
    creation_time   : 2020-10-17T15:04:42.000000Z
    com.apple.quicktime.location.accuracy.horizontal: 65.000000
    com.apple.quicktime.location.ISO6709: +37.0092+127.2600+031.719/
    com.apple.quicktime.make: Apple
    com.apple.quicktime.model: iPhone 7 Plus
    com.apple.quicktime.software: 14.0.1
    com.apple.quicktime.creationdate: 2020-10-18T00:04:41+0900
  Duration: 00:00:06.67, start: 0.000000, bitrate: 7851 kb/s
    Stream #0:0(und), 1, 1/600: Video: hevc (Main), 1 reference frame (hvc1 / 0x31637668), yuv420p(tv, bt709, left), 1920x1080 (1920x1088), 0/1, 7706 kb/s, 30 fps, 30 tbr, 600 tbn, 600 tbc (default)
    Metadata:
      rotate          : 90
      creation_time   : 2020-10-17T15:04:42.000000Z
      handler_name    : Core Media Video
      encoder         : HEVC
    Side data:
      displaymatrix: rotation of -90.00 degrees
    Stream #0:1(und), 43, 1/44100: Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, mono, fltp, 94 kb/s (default)
    Metadata:
      creation_time   : 2020-10-17T15:04:42.000000Z
      handler_name    : Core Media Audio
    Stream #0:2(und), 0, 1/600: Data: none (mebx / 0x7862656D), 0/1, 0 kb/s (default)
    Metadata:
      creation_time   : 2020-10-17T15:04:42.000000Z
      handler_name    : Core Media Metadata
    Stream #0:3(und), 0, 1/600: Data: none (mebx / 0x7862656D), 0/1, 0 kb/s (default)
    Metadata:
      creation_time   : 2020-10-17T15:04:42.000000Z
      handler_name    : Core Media Metadata
    Stream #0:4(und), 0, 1/600: Data: none (mebx / 0x7862656D), 0/1, 34 kb/s (default)
    Metadata:
      creation_time   : 2020-10-17T15:04:42.000000Z
      handler_name    : Core Media Metadata
Successfully opened the file.
Parsing a group of options: output url test_output.webm.
Applying option c:v (codec name) with argument libsvt_vp9.
Successfully parsed a group of options.
Opening an output file: test_output.webm.
[file @ 000002accd1a8600] Setting default whitelist 'file,crypto,data'
Successfully opened the file.
detected 32 logical cores
[hevc @ 000002accd1586c0] nal_unit_type: 32(VPS), nuh_layer_id: 0, temporal_id: 0
[hevc @ 000002accd1586c0] Decoding VPS
[hevc @ 000002accd1586c0] Main profile bitstream
[hevc @ 000002accd1586c0] nal_unit_type: 33(SPS), nuh_layer_id: 0, temporal_id: 0
[hevc @ 000002accd1586c0] Decoding SPS
[hevc @ 000002accd1586c0] Main profile bitstream
[hevc @ 000002accd1586c0] Decoding VUI
[hevc @ 000002accd1586c0] nal_unit_type: 34(PPS), nuh_layer_id: 0, temporal_id: 0
[hevc @ 000002accd1586c0] Decoding PPS
[hevc @ 000002accd1586c0] nal_unit_type: 34(PPS), nuh_layer_id: 0, temporal_id: 0
[hevc @ 000002accd1586c0] Decoding PPS
Stream mapping:
  Stream #0:0 -> #0:0 (hevc (native) -> vp9 (libsvt_vp9))
  Stream #0:1 -> #0:1 (aac (native) -> opus (libopus))
Press [q] to stop, [?] for help
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[aac @ 000002accd15f180] skip 2112 / discard 0 samples due to side data
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[aac @ 000002accd15f180] skip 64/1024 samples
[graph_1_in_0_1 @ 000002accd6dda40] Setting 'time_base' to value '1/44100'
[graph_1_in_0_1 @ 000002accd6dda40] Setting 'sample_rate' to value '44100'
[graph_1_in_0_1 @ 000002accd6dda40] Setting 'sample_fmt' to value 'fltp'
[graph_1_in_0_1 @ 000002accd6dda40] Setting 'channel_layout' to value '0x4'
[graph_1_in_0_1 @ 000002accd6dda40] tb:1/44100 samplefmt:fltp samplerate:44100 chlayout:0x4
[format_out_0_1 @ 000002accd6dc540] Setting 'sample_fmts' to value 's16|flt'
[format_out_0_1 @ 000002accd6dc540] Setting 'sample_rates' to value '48000|24000|16000|12000|8000'
[format_out_0_1 @ 000002accd6dc540] auto-inserting filter 'auto_resampler_0' between the filter 'Parsed_anull_0' and the filter 'format_out_0_1'
[AVFilterGraph @ 000002accd196400] query_formats: 4 queried, 6 merged, 3 already done, 0 delayed
[auto_resampler_0 @ 000002accd6dcb40] picking flt out of 2 ref:fltp
[auto_resampler_0 @ 000002accd6dcb40] [SWR @ 000002accd6e0440] Using fltp internally between filters
[auto_resampler_0 @ 000002accd6dcb40] ch:1 chl:mono fmt:fltp r:44100Hz -> ch:1 chl:mono fmt:flt r:48000Hz
[libopus @ 000002accd159900] No bit rate set. Defaulting to 64000 bps.
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 41 times
[hevc @ 000002accd1586c0] nal_unit_type: 39(SEI_PREFIX), nuh_layer_id: 0, temporal_id: 0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd1586c0] nal_unit_type: 20(IDR_N_LP), nuh_layer_id: 0, temporal_id: 0
[hevc @ 000002accd1586c0] Decoding SEI
[hevc @ 000002accd1586c0] Format yuv420p chosen by get_format().
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd159480] nal_unit_type: 1(TRAIL_R), nuh_layer_id: 0, temporal_id: 0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 2 times
[hevc @ 000002accd577cc0] nal_unit_type: 1(TRAIL_R), nuh_layer_id: 0, temporal_id: 0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd577cc0] Output frame with POC 0.
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd574f00] nal_unit_type: 1(TRAIL_R), nuh_layer_id: 0, temporal_id: 0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[hevc @ 000002accd574f00] Output frame with POC 1.
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd579800] nal_unit_type: 1(TRAIL_R), nuh_layer_id: 0, temporal_id: 0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd579800] Output frame with POC 2.
[hevc @ 000002accd1586c0] Decoded frame with POC 0.
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd574a80] nal_unit_type: 1(TRAIL_R), nuh_layer_id: 0, temporal_id: 0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd574a80] Output frame with POC 3.
[hevc @ 000002accd159480] Decoded frame with POC 4.
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd579c80] nal_unit_type: 1(TRAIL_R), nuh_layer_id: 0, temporal_id: 0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[hevc @ 000002accd579c80] Output frame with POC 4.
[hevc @ 000002accd577cc0] Decoded frame with POC 2.
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd578140] nal_unit_type: 1(TRAIL_R), nuh_layer_id: 0, temporal_id: 0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd578140] Output frame with POC 5.
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd57aa40] nal_unit_type: 1(TRAIL_R), nuh_layer_id: 0, temporal_id: 0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd574f00] Decoded frame with POC 1.
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd57aa40] Output frame with POC 6.
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd575380] nal_unit_type: 1(TRAIL_R), nuh_layer_id: 0, temporal_id: 0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd575380] Output frame with POC 7.
[hevc @ 000002accd579800] Decoded frame with POC 3.
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd575840] nal_unit_type: 1(TRAIL_R), nuh_layer_id: 0, temporal_id: 0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[hevc @ 000002accd575840] Output frame with POC 8.
[hevc @ 000002accd574a80] Decoded frame with POC 8.
[hevc @ 000002accd579c80] Decoded frame with POC 6.
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd57b800] nal_unit_type: 1(TRAIL_R), nuh_layer_id: 0, temporal_id: 0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd57b800] Output frame with POC 9.
[hevc @ 000002accd578140] Decoded frame with POC 5.
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd57a140] nal_unit_type: 1(TRAIL_R), nuh_layer_id: 0, temporal_id: 0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd57a140] Output frame with POC 10.
[hevc @ 000002accd57aa40] Decoded frame with POC 7.
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd57aec0] nal_unit_type: 1(TRAIL_R), nuh_layer_id: 0, temporal_id: 0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[hevc @ 000002accd57aec0] Output frame with POC 11.
[hevc @ 000002accd575380] Decoded frame with POC 12.
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd576140] nal_unit_type: 1(TRAIL_R), nuh_layer_id: 0, temporal_id: 0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd576140] Output frame with POC 12.
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd577800] nal_unit_type: 1(TRAIL_R), nuh_layer_id: 0, temporal_id: 0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[hevc @ 000002accd577800] Output frame with POC 13.
[hevc @ 000002accd575840] Decoded frame with POC 10.
[hevc @ 000002accd57b800] Decoded frame with POC 9.
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd1586c0] nal_unit_type: 1(TRAIL_R), nuh_layer_id: 0, temporal_id: 0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd57a140] Decoded frame with POC 11.
[hevc @ 000002accd1586c0] Output frame with POC 14.
[hevc @ 000002accd159480] nal_unit_type: 1(TRAIL_R), nuh_layer_id: 0, temporal_id: 0
[hevc @ 000002accd159480] Output frame with POC 15.
[hevc @ 000002accd57aec0] Decoded frame with POC 16.
[hevc @ 000002accd576140] Decoded frame with POC 14.
[hevc @ 000002accd577800] Decoded frame with POC 13.
[hevc @ 000002accd1586c0] Decoded frame with POC 15.
[hevc @ 000002accd159480] Decoded frame with POC 20.
[graph 0 input from stream 0:0 @ 000002acce6bed00] Setting 'video_size' to value '1920x1080'
[graph 0 input from stream 0:0 @ 000002acce6bed00] Setting 'pix_fmt' to value '0'
[graph 0 input from stream 0:0 @ 000002acce6bed00] Setting 'time_base' to value '1/600'
[graph 0 input from stream 0:0 @ 000002acce6bed00] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 000002acce6bed00] Setting 'frame_rate' to value '30/1'
[graph 0 input from stream 0:0 @ 000002acce6bed00] w:1920 h:1080 pixfmt:yuv420p tb:1/600 fr:30/1 sar:0/1
[transpose @ 000002acce6c0200] Setting 'dir' to value 'clock'
[format @ 000002acce6c0000] Setting 'pix_fmts' to value 'yuv420p'
[AVFilterGraph @ 000002accd6df880] query_formats: 5 queried, 4 merged, 0 already done, 0 delayed
[transpose @ 000002acce6c0200] w:1920 h:1080 dir:1 -> w:1080 h:1920 rotation:clockwise vflip:0
-------------------------------------------
SVT [version]   : SVT-VP9 Encoder Lib v0.3.0
SVT [build]     : GCC 10.2.0     64 bit
LIB Build date: Nov  3 2020 14:25:57
-------------------------------------------
Number of logical cores available: 32
Number of PPCS 37
-------------------------------------------
SVT [config]: Profile [0]       Level (auto)
SVT [config]: EncoderMode / Tune                                                : 9 / 0
SVT [config]: EncoderBitDepth                                                   : 8
SVT [config]: SourceWidth / SourceHeight                                        : 1080 / 1920
SVT [config]: Fps_Numerator / Fps_Denominator / Gop Size                : 30 / 1 / 12
SVT [config]: HierarchicalLevels / BaseLayerSwitchMode / PredStructure          : 3 / 0 / 2
SVT [config]: BRC Mode / QP                                                     : CQP / 32
-------------------------------------------

[webm @ 000002accd140840] get_metadata_duration returned: 0
Output #0, webm, to 'test_output.webm':
  Metadata:
    major_brand     : qt
    minor_version   : 0
    compatible_brands: qt
    com.apple.quicktime.creationdate: 2020-10-18T00:04:41+0900
    com.apple.quicktime.location.accuracy.horizontal: 65.000000
    com.apple.quicktime.location.ISO6709: +37.0092+127.2600+031.719/
    com.apple.quicktime.make: Apple
    com.apple.quicktime.model: iPhone 7 Plus
    com.apple.quicktime.software: 14.0.1
    encoder         : Lavf58.64.100
    Stream #0:0(und), 0, 1/1000: Video: vp9 (libsvt_vp9), 1 reference frame, yuv420p(tv, bt709, progressive, left), 1080x1920, 0/1, q=10-48, 7000 kb/s, 30 fps, 1k tbn, 30 tbc (default)
    Metadata:
      encoder         : Lavc58.112.101 libsvt_vp9
      creation_time   : 2020-10-17T15:04:42.000000Z
      handler_name    : Core Media Video
    Side data:
      displaymatrix: rotation of -0.00 degrees
    Stream #0:1(und), 0, 1/1000: Audio: opus (libopus), 48000 Hz, mono, flt, delay 312, 64 kb/s (default)
    Metadata:
      creation_time   : 2020-10-17T15:04:42.000000Z
      handler_name    : Core Media Audio
      encoder         : Lavc58.112.101 libopus
Clipping frame in rate conversion by 0.000008
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 2 times
[hevc @ 000002accd577cc0] nal_unit_type: 1(TRAIL_R), nuh_layer_id: 0, temporal_id: 0
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[hevc @ 000002accd577cc0] Output frame with POC 16.
[hevc @ 000002accd574f00] nal_unit_type: 1(TRAIL_R), nuh_layer_id: 0, temporal_id: 0
[hevc @ 000002accd574f00] Output frame with POC 17.
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[hevc @ 000002accd579800] nal_unit_type: 1(TRAIL_R), nuh_layer_id: 0, temporal_id: 0
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd579800] Output frame with POC 18.
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[hevc @ 000002accd574a80] nal_unit_type: 1(TRAIL_R), nuh_layer_id: 0, temporal_id: 0
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[hevc @ 000002accd574a80] Output frame with POC 19.
[hevc @ 000002accd577cc0] Decoded frame with POC 18.
[hevc @ 000002accd579c80] nal_unit_type: 1(TRAIL_R), nuh_layer_id: 0, temporal_id: 0
[hevc @ 000002accd579c80] Output frame with POC 20.
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd574f00] Decoded frame with POC 17.
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[hevc @ 000002accd578140] nal_unit_type: 1(TRAIL_R), nuh_layer_id: 0, temporal_id: 0
[hevc @ 000002accd579800] Decoded frame with POC 19.
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd578140] Output frame with POC 21.
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd57aa40] nal_unit_type: 1(TRAIL_R), nuh_layer_id: 0, temporal_id: 0
[hevc @ 000002accd57aa40] Output frame with POC 22.
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 2 times
[hevc @ 000002accd575380] nal_unit_type: 1(TRAIL_R), nuh_layer_id: 0, temporal_id: 0
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd574a80] Decoded frame with POC 24.
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd575380] Output frame with POC 23.
[hevc @ 000002accd575840] nal_unit_type: 1(TRAIL_R), nuh_layer_id: 0, temporal_id: 0
[hevc @ 000002accd575840] Output frame with POC 24.
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd579c80] Decoded frame with POC 22.
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[hevc @ 000002accd57b800] nal_unit_type: 1(TRAIL_R), nuh_layer_id: 0, temporal_id: 0
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd578140] Decoded frame with POC 21.
[hevc @ 000002accd57aa40] Decoded frame with POC 23.
[hevc @ 000002accd57b800] Output frame with POC 25.
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd57a140] nal_unit_type: 1(TRAIL_R), nuh_layer_id: 0, temporal_id: 0
[hevc @ 000002accd57a140] Output frame with POC 26.
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[hevc @ 000002accd57aec0] nal_unit_type: 39(SEI_PREFIX), nuh_layer_id: 0, temporal_id: 0
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd57aec0] nal_unit_type: 21(CRA_NUT), nuh_layer_id: 0, temporal_id: 0
[hevc @ 000002accd57aec0] Decoding SEI
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd575380] Decoded frame with POC 28.
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd57aec0] Output frame with POC 27.
[hevc @ 000002accd576140] nal_unit_type: 9(RASL_R), nuh_layer_id: 0, temporal_id: 0
[hevc @ 000002accd576140] Output frame with POC 28.
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd575840] Decoded frame with POC 26.
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd577800] nal_unit_type: 8(RASL_N), nuh_layer_id: 0, temporal_id: 0
[hevc @ 000002accd577800] Output frame with POC 29.
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[hevc @ 000002accd57b800] Decoded frame with POC 25.
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[hevc @ 000002accd57a140] Decoded frame with POC 27.
[hevc @ 000002accd1586c0] nal_unit_type: 8(RASL_N), nuh_layer_id: 0, temporal_id: 0
[hevc @ 000002accd1586c0] Output frame with POC 30.
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)

libsvt_hevc works fine, by the way.

env: ryzen 3950x, windows 10 20H2 19042.572

possibly relavant logs for building this binary attached. build.zip

mezzovide commented 3 years ago

hello, any update about this issue? i also bumped into this problem.