You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to use FFmpegFrameGrabber with AV1 videos:
import org.bytedeco.javacv.FFmpegFrameGrabber
import org.bytedeco.javacv.FFmpegLogCallback
FFmpegLogCallback.set()
val url = "https://www.elecard.com/storage/video/Stream1_AV1_720p_1.5mbps.webm"
val frameGrabber = new FFmpegFrameGrabber(url)
frameGrabber.start()
but it fails with the following error:
Info: Input #0, matroska,webm, from 'https://www.elecard.com/storage/video/Stream1_AV1_720p_1.5mbps.webm':
Info: Metadata:
Info: encoder :
Info: libwebm-0.2.1.0
Info:
Info: Duration:
Info: 00:02:54.20
Info: , start:
Info: 0.000000
Info: , bitrate:
Info: 1458 kb/s
Info:
Info: Stream #0:0
Info: (eng)
Info: : Video: av1 (Main), yuv420p(tv), 1280x720
Info: , SAR 1:1 DAR 16:9
Info: ,
Info: 25 fps,
Info: 25 tbr,
Info: 1k tbn,
Info: 1k tbc
Info: (default)
Info:
org.bytedeco.javacv.FFmpegFrameGrabber$Exception: avcodec_find_decoder() error: Unsupported video format or codec not found: 32797. (For more details, make sure FFmpegLogCallback.set() has been called.)
at org.bytedeco.javacv.FFmpegFrameGrabber.startUnsafe(FFmpegFrameGrabber.java:968)
at org.bytedeco.javacv.FFmpegFrameGrabber.start(FFmpegFrameGrabber.java:846)
at org.bytedeco.javacv.FFmpegFrameGrabber.start(FFmpegFrameGrabber.java:841)
... 36 elided
This number 32797 corresponds to decoder AV_CODEC_ID_AV1. If i set it explicitly it also doesn't work
Hello,
I'm trying to use FFmpegFrameGrabber with AV1 videos:
but it fails with the following error:
This number 32797 corresponds to decoder AV_CODEC_ID_AV1. If i set it explicitly it also doesn't work
returns null.
I'm using the following dependencies:
also tried to switch to
with no success.
Am I missing some native libraries?
It works fine when I use the same URL with command line ffmpeg (version 4.1), OS Debian 10
The text was updated successfully, but these errors were encountered: