BtbN changed the topic of #ffmpeg to: Welcome to the FFmpeg USER support channel | Development channel: #ffmpeg-devel | Bug reports: https://ffmpeg.org/bugreports.html | Wiki: https://trac.ffmpeg.org/ | This channel is publically logged | FFmpeg 7.0 is released
alexherbo2 has quit [Remote host closed the connection]
lullerhaus has quit []
lullerhaus has joined #ffmpeg
CarlFK has quit [Quit: Leaving.]
aaabbb has joined #ffmpeg
lucasta has quit [Remote host closed the connection]
emmanuelux has quit [Read error: Connection reset by peer]
yans has joined #ffmpeg
jarrhed has quit [Quit: WeeChat 4.4.1]
xx has quit [Ping timeout: 260 seconds]
jarrhed has joined #ffmpeg
sugoi has quit [Remote host closed the connection]
sugoi has joined #ffmpeg
Sakura`Kinomoto has joined #ffmpeg
jb3 has quit [Quit: ZNC 1.8.2 - https://znc.in]
jb3 has joined #ffmpeg
rex has quit [Remote host closed the connection]
rex has joined #ffmpeg
jb3 has quit [Remote host closed the connection]
jb3 has joined #ffmpeg
rex has quit [Quit: Bye]
rex has joined #ffmpeg
sugoi has quit [Ping timeout: 245 seconds]
Traneptora has quit [Quit: Quit]
Kei_N_ has joined #ffmpeg
Kei_N has quit [Read error: Connection reset by peer]
sihloo has quit [Quit: ZNC 1.9.1 - https://znc.in]
sihloo has joined #ffmpeg
fred has joined #ffmpeg
fred has left #ffmpeg [++ATH0]
sugoi has joined #ffmpeg
Muimi has joined #ffmpeg
sugoi has quit [Ping timeout: 248 seconds]
yans has quit [Ping timeout: 246 seconds]
sugoi has joined #ffmpeg
ewomer has quit [Ping timeout: 248 seconds]
sugoi has quit [Ping timeout: 246 seconds]
Suchiman has quit [Quit: Connection closed for inactivity]
flotwig_ has joined #ffmpeg
flotwig has quit [Ping timeout: 248 seconds]
coldfeet has joined #ffmpeg
rpthms has quit [Remote host closed the connection]
rv1sr has joined #ffmpeg
l4yer has quit [Ping timeout: 244 seconds]
rpthms has joined #ffmpeg
l4yer has joined #ffmpeg
rex has quit [Quit: Bye]
rex has joined #ffmpeg
Muimi has quit [Quit: Going offline, see ya! (www.adiirc.com)]
ewomer has joined #ffmpeg
sugoi has joined #ffmpeg
lavaball has joined #ffmpeg
jarrhed has quit [Ping timeout: 260 seconds]
jarrhed has joined #ffmpeg
coldfeet has quit [Remote host closed the connection]
sugoi has quit [Ping timeout: 246 seconds]
sugoi has joined #ffmpeg
coldfeet has joined #ffmpeg
sugoi has quit [Ping timeout: 260 seconds]
alexherbo2 has joined #ffmpeg
l4yer has quit [Ping timeout: 252 seconds]
l4yer has joined #ffmpeg
sugoi has joined #ffmpeg
sugoi has quit [Ping timeout: 246 seconds]
hussein1 has quit [Ping timeout: 260 seconds]
hussein1 has joined #ffmpeg
kepstin has quit [Remote host closed the connection]
kepstin has joined #ffmpeg
jemius has joined #ffmpeg
xx has joined #ffmpeg
flom84 has joined #ffmpeg
flom84 has quit [Remote host closed the connection]
Rue has left #ffmpeg [WeeChat 4.4.0]
jemius has quit [Quit: Leaving]
jemius has joined #ffmpeg
HerbY_NL has joined #ffmpeg
rex has quit [Read error: Connection reset by peer]
rex has joined #ffmpeg
coldfeet has quit [Remote host closed the connection]
tomb^ has joined #ffmpeg
<tomb^> Hi all, I'm getting an error when trying to ffprobe it, "index entry 879 + TemporalOffset 1 = 880, which is out of bounds", apparently avid is allergic to it and won't import the file, is there a way to fix that without transcoding the entire file with ffmpeg? I tried ffmpeg -c:v copy -c:a copy but with no luck
HerbY_NL has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
sugoi has joined #ffmpeg
sugoi has quit [Ping timeout: 252 seconds]
jemius has quit [Quit: Leaving]
HerbY_NL has joined #ffmpeg
HerbY_NL has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
sugoi has joined #ffmpeg
sugoi has quit [Ping timeout: 265 seconds]
coldfeet has joined #ffmpeg
alexherbo2 has quit [Remote host closed the connection]
minimal has joined #ffmpeg
rex has quit [Read error: Connection reset by peer]
rex has joined #ffmpeg
robobub has quit [Quit: Connection closed for inactivity]
sugoi has joined #ffmpeg
HerbY_NL has joined #ffmpeg
sugoi has quit [Ping timeout: 252 seconds]
Traneptora has joined #ffmpeg
HerbY_NL has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
emmanuelux has joined #ffmpeg
frankplow has quit [Quit: Goodbye]
frankplow has joined #ffmpeg
alexherbo2 has joined #ffmpeg
Schrostfutz has joined #ffmpeg
<Schrostfutz> Hi, for reasons I have to parse a VP9 frame header. Is this something I can do using libavcodec? It looks like while the logic is present, it's not exposed and I can only use it to decode the whole frame.
Marth64[m] is now known as Marth64
<frankplow> Schrostfutz: If this is just something you need as a one-off, you could maybe use the CLI and the trace_headers bitstream filter?
<Schrostfutz> frankplow: Unfortunately I need something I could link against
<Marth64> I think in theory you can modify the decoder in libavcodec to emit the frame level metadata you need then get it that way (I have no in depth knowledge of vp9)
<Marth64> just tossing an idea out there but it could work I think
<Marth64> i.e. emit the data you need from the header as frame level metadata
<Marth64> mpeg12 does this to indicate presence of closed captions as an example
<Marth64> which is frame level
jemius has joined #ffmpeg
celmor has joined #ffmpeg
FlorianBad has quit [Remote host closed the connection]
FlorianBad has joined #ffmpeg
Schrostfutz has quit [Remote host closed the connection]
Schrostfutz has joined #ffmpeg
<Schrostfutz> Marth64: Thanks for the idea, I'll have a look at this!
<Marth64> good luck! might be cleanest tbh since I think you can read the frame level metadata with standard av_ apis. then your burden is just patching the decoder again
<Marth64> (when updating ffmpeg for example)
j45 has quit [Ping timeout: 260 seconds]
<Marth64> a simple git format-patch should do for a patch file you can reuse later
<Marth64> or just diff
sugoi has joined #ffmpeg
Schrostfutz has quit [Ping timeout: 245 seconds]
j45 has joined #ffmpeg
zsoltiv_ has joined #ffmpeg
Sketch has quit [Ping timeout: 276 seconds]
MoC has joined #ffmpeg
lavaball has quit [Remote host closed the connection]
<JEEB> Marth64: btw there is a framework specifically for parsing bistream specifics, which is also utilized by the trace_headers bsf
<JEEB> ah right, CBS is the framework
lucasta has joined #ffmpeg
sugoi has quit [Ping timeout: 246 seconds]
<Marth64> good to know thx JEEB
<JEEB> also it's utilized to rewrite headers with the XYZ_metadata bit stream filters
alexherbo2 has quit [Remote host closed the connection]
<JEEB> trace_headers actually could be utilized programmatically if it attached the analysis results to the AVPacket that got passed through it
<JEEB> right now it just logs the results in verbose mode
<JEEB> `ffmpeg -v verbose -i input -c copy -bsf:v trace_headers -f null pipe:`
alexherbo2 has joined #ffmpeg
alexherbo2 has quit [Remote host closed the connection]
<Marth64> hmmm. does something similar exist for audio? like for ac3 header details?
<Marth64> til that bsf exists
<Marth64> trace_headers that ie
<Marth64> is*
beaver has joined #ffmpeg
beaver has quit [Client Quit]
ja_02 has joined #ffmpeg
Sketch has joined #ffmpeg
s55 has quit [Ping timeout: 260 seconds]
Suchiman has joined #ffmpeg
s55 has joined #ffmpeg
<JEEB> Marth64: for AC3 there's just the basic parser, but one could add a CBS parser for it to utilize with trace_headers
kuba-orlik0397 has quit [Quit: The Lounge - https://thelounge.chat]
kuba-orlik0397 has joined #ffmpeg
kuba-orlik0397 has quit [Read error: Connection reset by peer]
kuba-orlik0397 has joined #ffmpeg
HerbY_NL has joined #ffmpeg
jemius has quit [Quit: Leaving]
HerbY_NL has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
squeaktoy has quit [Ping timeout: 272 seconds]
squeaktoy has joined #ffmpeg
jarthur has joined #ffmpeg
rv1sr has quit []
coldfeet has quit [Remote host closed the connection]
Haxxa has quit [Quit: Haxxa flies away.]
Haxxa has joined #ffmpeg
<tomb^> Hi all, I'm getting an error when trying to ffprobe it, "index entry 879 + TemporalOffset 1 = 880, which is out of bounds", apparently avid is allergic to it and won't import the file, is there a way to fix that without transcoding the entire file with ffmpeg? I tried ffmpeg -c:v copy -c:a copy but with no luck
lavaball has joined #ffmpeg
minimal has quit [Quit: Leaving]
jarthur has quit [Quit: jarthur]
jtgd has quit [Quit: WeeChat 4.4.1]
jtgd has joined #ffmpeg
celmor has quit [Quit: Client closed]
lavaball has quit [Quit: lavaball]
jtgd has quit [Ping timeout: 276 seconds]
celmor has joined #ffmpeg
vlm has joined #ffmpeg
sugoi has joined #ffmpeg
sugoi has quit [Ping timeout: 245 seconds]
MoC has quit [Quit: Konversation terminated!]
ewomer has quit [Quit: WeeChat 4.4.1]
ewomer has joined #ffmpeg
Dagger2 is now known as Dagger
lec_thege8042726 has quit [Remote host closed the connection]
SuicideShow has quit [Ping timeout: 260 seconds]
SuicideShow has joined #ffmpeg
sugoi has joined #ffmpeg
HarshK23 has quit [Quit: Connection closed for inactivity]
sugoi has quit [Ping timeout: 244 seconds]
darkapex_ has quit [Remote host closed the connection]
darkapex_ has joined #ffmpeg
deus0ww has quit [Ping timeout: 248 seconds]
deus0ww has joined #ffmpeg