VSE proxy fails to build with newer FFmpeg version? #88459

Closed
opened 2021-05-21 11:43:15 +02:00 by Paul Melis · 5 comments

System Information
Operating system: Arch Linux
Graphics card: GTX 970

Blender Version
Broken: 2.92 (Arch Linux package), but also manual 3.0 alpha (c154b078b5) build
Worked: 2.92 and 2.83.13 official binaries

Short description of error

I have a short video clip in Matroska format (see below for details). With the 2.92 and 2.83.13 official binaries creating a VSE proxy for this video works as expected. But with the Arch Linux 2.92 package and a locally built 3.0 alpha version VSE proxy generation fails:

  • The proxy_50.avi file is only a few kilobytes and subsequently the preview doesn't use the proxy
  • With 3.0 alpha the errors printed are Can't send video frame: Invalid argument, apparently coming from
static void add_to_proxy_output_ffmpeg(struct proxy_output_ctx *ctx, AVFrame *frame)
{
   ....

  int ret = avcodec_send_frame(ctx->c, frame);
  if (ret < 0) {
    /* Can't send frame to encoder. This shouldn't happen. */
    fprintf(stderr, "Can't send video frame: %s\n", av_err2str(ret));
    return;
  }

I suspect this is an issue related to the used FFmpeg version. As reported in system-info.txt these differ:

Official 2.92 binaries

FFmpeg:
=====================================

avcodec:   '58, 54, 100'
avdevice:  '58,  8, 100'
avformat:  '58, 29, 100'
avutil:    '56, 31, 100'
swscale:   ' 5,  5, 100'


Arch Linux 2.92 binaries, same for manually built 3.0 alpha:

FFmpeg:
=====================================

avcodec:   '58, 134, 100'
avdevice:  '58, 13, 100'
avformat:  '58, 76, 100'
avutil:    '56, 70, 100'
swscale:   ' 5,  9, 100'

Are there restrictions on which FFmpeg versions are used when building Blender? My current globally installed ffmpeg is 4.4.

Exact steps for others to reproduce the error

  • Add movie to VSE as strip, select it
  • Enable strip proxy & timecode
  • Set size to 50%
  • Set timecode index to Record Run
  • Rebuild proxy and Timecode indices
  • Console shows errors

Video contents:

ffmpeg version n4.4 Copyright (c) 2000-2021 the FFmpeg developers
  built with gcc 10.2.0 (GCC)
  configuration: --prefix=/usr --disable-debug --disable-static --disable-stripping --enable-amf --enable-avisynth --enable-cuda-llvm --enable-lto --enable-fontconfig --enable-gmp --enable-gnutls --enable-gpl --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libdav1d --enable-libdrm --enable-libfreetype --enable-libfribidi --enable-libgsm --enable-libiec61883 --enable-libjack --enable-libmfx --enable-libmodplug --enable-libmp3lame --enable-libopencore_amrnb --enable-libopencore_amrwb --enable-libopenjpeg --enable-libopus --enable-libpulse --enable-librav1e --enable-librsvg --enable-libsoxr --enable-libspeex --enable-libsrt --enable-libssh --enable-libtheora --enable-libv4l2 --enable-libvidstab --enable-libvmaf --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxcb --enable-libxml2 --enable-libxvid --enable-libzimg --enable-nvdec --enable-nvenc --enable-shared --enable-version3
  libavutil      56. 70.100 / 56. 70.100
  libavcodec     58.134.100 / 58.134.100
  libavformat    58. 76.100 / 58. 76.100
  libavdevice    58. 13.100 / 58. 13.100
  libavfilter     7.110.100 /  7.110.100
  libswscale      5.  9.100 /  5.  9.100
  libswresample   3.  9.100 /  3.  9.100
  libpostproc    55.  9.100 / 55.  9.100
Input #0, matroska,webm, from '2021-05-21_09-20-55.mkv':
  Metadata:
    ENCODER         : Lavf58.76.100
  Duration: 00:05:33.85, start: 0.000000, bitrate: 876 kb/s
  Stream #0:0: Video: h264 (High), yuv420p(tv, bt709, progressive), 1920x1080 [SAR 1:1 DAR 16:9], 60 fps, 60 tbr, 1k tbn, 120 tbc (default)
    Metadata:
      DURATION        : 00:05:33.850000000
  Stream #0:1: Audio: aac (LC), 48000 Hz, stereo, fltp (default)
    Metadata:
      title           : simple_aac_recording
      DURATION        : 00:05:33.781000000
**System Information** Operating system: Arch Linux Graphics card: GTX 970 **Blender Version** Broken: 2.92 (Arch Linux package), but also manual 3.0 alpha (c154b078b5297b53cdc2aa5fbbc3f9d51dcac527) build Worked: 2.92 and 2.83.13 official binaries **Short description of error** I have a short video clip in Matroska format (see below for details). With the 2.92 and 2.83.13 official binaries creating a VSE proxy for this video works as expected. But with the Arch Linux 2.92 package and a locally built 3.0 alpha version VSE proxy generation fails: * The proxy_50.avi file is only a few kilobytes and subsequently the preview doesn't use the proxy * With 3.0 alpha the errors printed are `Can't send video frame: Invalid argument`, apparently coming from ``` static void add_to_proxy_output_ffmpeg(struct proxy_output_ctx *ctx, AVFrame *frame) { .... int ret = avcodec_send_frame(ctx->c, frame); if (ret < 0) { /* Can't send frame to encoder. This shouldn't happen. */ fprintf(stderr, "Can't send video frame: %s\n", av_err2str(ret)); return; } ``` I suspect this is an issue related to the used FFmpeg version. As reported in system-info.txt these differ: ``` Official 2.92 binaries FFmpeg: ===================================== avcodec: '58, 54, 100' avdevice: '58, 8, 100' avformat: '58, 29, 100' avutil: '56, 31, 100' swscale: ' 5, 5, 100' Arch Linux 2.92 binaries, same for manually built 3.0 alpha: FFmpeg: ===================================== avcodec: '58, 134, 100' avdevice: '58, 13, 100' avformat: '58, 76, 100' avutil: '56, 70, 100' swscale: ' 5, 9, 100' ``` Are there restrictions on which FFmpeg versions are used when building Blender? My current globally installed ffmpeg is 4.4. **Exact steps for others to reproduce the error** * Add movie to VSE as strip, select it * Enable strip proxy & timecode * Set size to 50% * Set timecode index to Record Run * Rebuild proxy and Timecode indices * Console shows errors Video contents: ``` ffmpeg version n4.4 Copyright (c) 2000-2021 the FFmpeg developers built with gcc 10.2.0 (GCC) configuration: --prefix=/usr --disable-debug --disable-static --disable-stripping --enable-amf --enable-avisynth --enable-cuda-llvm --enable-lto --enable-fontconfig --enable-gmp --enable-gnutls --enable-gpl --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libdav1d --enable-libdrm --enable-libfreetype --enable-libfribidi --enable-libgsm --enable-libiec61883 --enable-libjack --enable-libmfx --enable-libmodplug --enable-libmp3lame --enable-libopencore_amrnb --enable-libopencore_amrwb --enable-libopenjpeg --enable-libopus --enable-libpulse --enable-librav1e --enable-librsvg --enable-libsoxr --enable-libspeex --enable-libsrt --enable-libssh --enable-libtheora --enable-libv4l2 --enable-libvidstab --enable-libvmaf --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxcb --enable-libxml2 --enable-libxvid --enable-libzimg --enable-nvdec --enable-nvenc --enable-shared --enable-version3 libavutil 56. 70.100 / 56. 70.100 libavcodec 58.134.100 / 58.134.100 libavformat 58. 76.100 / 58. 76.100 libavdevice 58. 13.100 / 58. 13.100 libavfilter 7.110.100 / 7.110.100 libswscale 5. 9.100 / 5. 9.100 libswresample 3. 9.100 / 3. 9.100 libpostproc 55. 9.100 / 55. 9.100 Input #0, matroska,webm, from '2021-05-21_09-20-55.mkv': Metadata: ENCODER : Lavf58.76.100 Duration: 00:05:33.85, start: 0.000000, bitrate: 876 kb/s Stream #0:0: Video: h264 (High), yuv420p(tv, bt709, progressive), 1920x1080 [SAR 1:1 DAR 16:9], 60 fps, 60 tbr, 1k tbn, 120 tbc (default) Metadata: DURATION : 00:05:33.850000000 Stream #0:1: Audio: aac (LC), 48000 Hz, stereo, fltp (default) Metadata: title : simple_aac_recording DURATION : 00:05:33.781000000 ```
Author

Added subscriber: @PaulMelis

Added subscriber: @PaulMelis
Author

Argh, just noticed https://developer.blender.org/T87932. Sorry for the noise

Argh, just noticed https://developer.blender.org/T87932. Sorry for the noise
Member

Added subscriber: @lichtwerk

Added subscriber: @lichtwerk
Member

Thx for the detailed report!

Indeed, this seems to be the same as #87932 (Failure to build movie strip proxy / ffmpeg incompatibility), will merge these reports.

Thx for the detailed report! Indeed, this seems to be the same as #87932 (Failure to build movie strip proxy / ffmpeg incompatibility), will merge these reports.
Member

Closed as duplicate of #87932

Closed as duplicate of #87932
Sign in to join this conversation.
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset Browser
Interest
Asset Browser Project Overview
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
EEVEE & Viewport
Interest
Freestyle
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
ID Management
Interest
Images & Movies
Interest
Import Export
Interest
Line Art
Interest
Masking
Interest
Metal
Interest
Modeling
Interest
Modifiers
Interest
Motion Tracking
Interest
Nodes & Physics
Interest
OpenGL
Interest
Overlay
Interest
Overrides
Interest
Performance
Interest
Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds & Tests
Interest
Python API
Interest
Render & Cycles
Interest
Render Pipeline
Interest
Sculpt, Paint & Texture
Interest
Text Editor
Interest
Translations
Interest
Triaging
Interest
Undo
Interest
USD
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Interest
Video Sequencer
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
Legacy
Blender 2.8 Project
Legacy
Milestone 1: Basic, Local Asset Browser
Legacy
OpenGL Error
Meta
Good First Issue
Meta
Papercut
Meta
Retrospective
Meta
Security
Module
Animation & Rigging
Module
Core
Module
Development Management
Module
EEVEE & Viewport
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline, Assets & IO
Module
Platforms, Builds & Tests
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Priority
High
Priority
Low
Priority
Normal
Priority
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blender/blender#88459
No description provided.