georgereynolds8 has quit [Quit: Ping timeout (120 seconds)]
georgereynolds8 has joined #ffmpeg
Muimi has quit [Quit: Going offline, see ya! (www.adiirc.com)]
ecapi has quit [Ping timeout: 264 seconds]
iive has quit [Quit: They came for me...]
JasonSilver has quit [Quit: JasonSilver]
JasonSilver has joined #ffmpeg
Ingvix has quit [Ping timeout: 258 seconds]
georgereynolds8 has quit [Quit: Ping timeout (120 seconds)]
georgereynolds8 has joined #ffmpeg
JasonSilver has quit [Ping timeout: 260 seconds]
ecapi has joined #ffmpeg
lemourin has quit [Quit: The Lounge - https://thelounge.chat]
lemourin has joined #ffmpeg
ecapi_ has joined #ffmpeg
ecapi_ has quit [Ping timeout: 272 seconds]
_whitelogger has quit [Server closed connection]
_whitelogger has joined #ffmpeg
MrZeus has joined #ffmpeg
sonicrules1234 has quit [Ping timeout: 258 seconds]
stolen has joined #ffmpeg
sonicrules1234 has joined #ffmpeg
Shuriko has joined #ffmpeg
MrZeus has quit [Ping timeout: 240 seconds]
lucasta has quit [Quit: Leaving]
NaviTheFairy has quit [Quit: Oh no. A thing broke.]
thilo has quit [Ping timeout: 240 seconds]
NaviTheFairy has joined #ffmpeg
thilo has joined #ffmpeg
HotPizza has joined #ffmpeg
HotPizza has quit [Client Quit]
Vonter has joined #ffmpeg
Sciencentistguy0 has joined #ffmpeg
Sciencentistguy has quit [Ping timeout: 240 seconds]
Sciencentistguy0 is now known as Sciencentistguy
elastic_dog has quit [Ping timeout: 255 seconds]
navi has quit [Quit: WeeChat 4.0.4]
elastic_dog has joined #ffmpeg
MRiddickW has joined #ffmpeg
lemourin has quit [Read error: Connection reset by peer]
lemourin has joined #ffmpeg
ecapi has quit [Read error: Connection reset by peer]
ecapi has joined #ffmpeg
robobub has quit [Server closed connection]
robobub has joined #ffmpeg
emanuele6 has joined #ffmpeg
yawkat has quit [Server closed connection]
yawkat has joined #ffmpeg
demon__ has quit [Read error: Connection reset by peer]
someuser has quit [Read error: Connection reset by peer]
maxim_d33 has quit [Ping timeout: 252 seconds]
someuser has joined #ffmpeg
anotheruser has joined #ffmpeg
someuser has quit [Remote host closed the connection]
maxim_d33 has joined #ffmpeg
someuser has joined #ffmpeg
ecapi has quit [Ping timeout: 240 seconds]
a0z has joined #ffmpeg
Ogobaga has quit [Quit: Konversation terminated!]
Ogobaga has joined #ffmpeg
chiselfuse has quit [Remote host closed the connection]
chiselfuse has joined #ffmpeg
durandal_1707 has quit [Ping timeout: 255 seconds]
durandal_1707 has joined #ffmpeg
waleee has quit [Ping timeout: 258 seconds]
ecapi has joined #ffmpeg
Ingvix has joined #ffmpeg
kurosu has quit [Quit: Connection closed for inactivity]
Friendship has quit [Ping timeout: 240 seconds]
Ogobaga has quit [Quit: Konversation terminated!]
Ogobaga has joined #ffmpeg
stolen has quit [Quit: Connection closed for inactivity]
AbleBacon has quit [Read error: Connection reset by peer]
elastic_dog has quit [Ping timeout: 260 seconds]
elastic_dog has joined #ffmpeg
FH_thecat has quit [Quit: Leaving]
elastic_dog has quit [Ping timeout: 255 seconds]
elastic_dog has joined #ffmpeg
<aaabbb> how can i change or remove the encoder settings in an hevc stream? i don't want to reencode with -x265-params no-info=1 for removing it
<furq> i don't think you can with ffmpeg
<furq> you could probably just do it with a hex editor though
<furq> it's just an ascii string
<aaabbb> is the space it's kept pre-allocated?
<aaabbb> i'll create a raw hevc stream with a single black frame with and without no-info=1 and compare them
<furq> it's stored in an sei
<furq> which is an arbitrary plaintext header
<aaabbb> is the size variable or fixed?
<furq> there's a bitstream filter to add an sei without reencoding but not to remove one
<furq> it's variable
<aaabbb> ok
<aaabbb> so i would have to write my own bitstream filter to remove one
<aaabbb> >To remove all AUDs, SEI and filler from an H.265 stream: ffmpeg -i INPUT -c:v copy -bsf:v 'filter_units=remove_types=35|38-40' OUTPUT
<aaabbb> from man ffmpeg-bitstream-filters, i'll try it
<furq> oh well that works
<furq> i was looking at hevc_metadata
<aaabbb> it looks like that does not remove it
<aaabbb> in fact the file is bit identical both before and after conversion
<aaabbb> before and after stream copy with bsf
Hackerpcs has quit [Quit: Hackerpcs]
<furq> i guess that's part of extradata then
<JEEB> extradata also gets touched
<JEEB> more likely it's not the correct type that is getting removed
Hackerpcs has joined #ffmpeg
<furq> Extradata is unchanged by this transformation,
<JEEB> that is surprising since trace_headers does it
<JEEB> anyways, trace_headers will tell you where it is
<furq> it should be type 39
<JEEB> so `ffmpeg -v verbose -i INPUT -map 0:v -c copy -frames:v 5 -bsf:v trace_headers -f null -`
<JEEB> that should tell whether it is in extradata or not
<JEEB> also for the record, I don't understand removing that SEI since it also completely removes the possibility of doing workarounds based on broken encoder versions, like we've had with x264 and lossless coding.
<JEEB> but it can be done technically :P
<furq> i see a type 39 sei in extradata
<furq> or type 39 nalu i mean
<furq> and yeah i also don't know why you'd remove it
<furq> filter_units will also potentially remove important seis if there are any mid-stream
<furq> or rather it sounds like the only seis it can remove are important
jtgd has quit [Quit: WeeChat 4.1.1]
<furq> but if these are videos you encoded yourself you probably don't have any
<aaabbb> ffmpeg -f lavfi -i color -c:v libx265 -frames:v 1 -bsf:v trace_headers -f null -
<aaabbb> i used this
<JEEB> also for the record, for cases like that where you have no input file
<aaabbb> it says it's 'user_data_payload_byte'
<JEEB> you can just do `-filter_complex "color[out]"` without any `-f blah -i foobar`
<JEEB> I did not know that until recently, but `-i` in such cases is actually optional ^^;
<JEEB> the out identifier is probably also unnecessary
<aaabbb> so i would have to remove or modify 'user_data_payload_byte'
<JEEB> that's the payload, the identifier of the NALU is before that :P
<furq> yeah
<furq> it's this
<aaabbb> interestingly when doing no-info=1, it also removes uuid_iso_iec_11578
rv1sr has joined #ffmpeg
<furq> right
<aaabbb> ok i see it's 39
<aaabbb> "Prefix Supplemental Enhancement Information"
<aaabbb> so why isn't filter_units=remove_types=39 working?
<JEEB> is that thing in extradata or not?
<JEEB> trace_headers should first log stuff in extradata, then the rest
<JEEB> it should tell
<aaabbb> i'm not sure how to tell
<aaabbb> it doesn't say extradata anywhere
kurosu has joined #ffmpeg
<aaabbb> it shows video, sequence, and picture parameter sets, then slice segment header
ivanich has joined #ffmpeg
nrg has quit [Quit: ZNC - https://znc.in]
nrg has joined #ffmpeg
<furq> extradata stuff is at the top before the first Packet: line
<furq> and yes that is in extradata
ivanich has quit [Remote host closed the connection]
ivanich has joined #ffmpeg
Shine has joined #ffmpeg
Gunstick- has joined #ffmpeg
Gunstick-- has quit [Ping timeout: 240 seconds]
a0z has quit [Ping timeout: 255 seconds]
vlm has joined #ffmpeg
ZedHedTed has quit [Ping timeout: 264 seconds]
ZedHedTed has joined #ffmpeg
<aaabbb> another question how do i remove the aspect ratio information from an hevc stream in an mp4 container?
<aaabbb> so that it defaults to sar=1 and the dar is based only on the dimensions?
<aaabbb> so that ffprobe does not show '854x480 [SAR 1280:1281 DAR 16:9]' and instead shows only '854x480'
<aaabbb> when i have '-bsf:v hevc_metadata=sample_aspect_ratio=0/1' to leave the sar undefined so it defaults to 1, it shows a strange '854x480 [SAR 30811:30902 DAR 731204:412195]'
<aaabbb> but when i change it to 1/1 it shows '854x480 [SAR 1:1 DAR 427:240], 232 kb/s, SAR 30811:30902 DAR 731204:412195'
sopparus has quit [Server closed connection]
sopparus has joined #ffmpeg
Friendship has joined #ffmpeg
<aaabbb> basically i want ffprobe -show_streams to show N/A for both sample_aspect_ratio and display_aspect_ratio
stolen has joined #ffmpeg
<aaabbb> oh great it looks like only direct264 can do that
<JEEB> you should check the result with trace_headers :P
<aaabbb> JEEB: yeah i did, sar_width and sar_height in the sps are still non-zero
<aaabbb> but if i can set them to 0, then the sar should default to 1/1 and the aspect ratio should be determined entirely by the dimensions
<JEEB> what you really want is aspect_ratio_info_present_flag = 0
<JEEB> also do note that the container has aspect ratio info as well, which often (like with mp4/matroska) generally is considered higher than video's
<aaabbb> i can remove the aspect ratio from the container more easily
<aaabbb> but i can't find how to remove it from the bitstream without setsar=1 which of course requires reencode
<JEEB> setting it to 1 should be possible, h264 and h265 metadata bsfs can update and add parts to VUI, but not remove them completely
<JEEB> and if you don't want the SAR info at all, you want to remove it completely
<aaabbb> when encoding with setsar=1, does it remove the sar info or set them to 1/1?
<JEEB> depends on the encoder logic
<aaabbb> x265
<JEEB> that's why you can't make assumption
<JEEB> libx265.c does set sar=1:1 in that case
<JEEB> so then the question is how does x265 itself interpret that
<aaabbb> doesn't that mean it would set width and height = 1 in the sps?
<JEEB> no
<JEEB> width and height is different from SAR
<aaabbb> sar_Width, sar_height i meant
<JEEB> as I said, depends on x265 itself does. FFmpeg's libx265.c wrapper passes it on
<JEEB> but in any case
<JEEB> what you want is the BSF to be modified to allow for removal of VUI entries in addition to just modifying or adding
<JEEB> since right now it can either add it if it is not in the original, or update values
<JEEB> but it does not set aspect_ratio_info_present_flag = 0 anywhere
lavaball has joined #ffmpeg
<aaabbb> when i do '-bsf:v hevc_metadata=sample_aspect_ratio=1/1', it moves the odd 30811/30902 sar outside of the brackets, does that mean it's moved into the container or something? with trace_headers, it no longer has sar_width=30811 and sar_height=30902, although aspect_ratio_info_present_flag is still 1 (which is ok)
dallemon has quit [Server closed connection]
<aaabbb> so that changes it to '854x480 [SAR 1:1 DAR 427:240], 232 kb/s, SAR 30811:30902 DAR 731204:412195'
dallemon has joined #ffmpeg
<aaabbb> i found a workaround
<aaabbb> a stream copy from the mp4 source to another mp4 with -bsf:v 'hevc_metadata=sample_aspect_ratio=1/1', then a stream copy to a raw .h265 file, then a stream copy back to an mp4
<aaabbb> ffmpeg -i test.mp4 -c:v copy -bsf:v 'hevc_metadata=sample_aspect_ratio=1/1' test2.mp4; ffmpeg -i test2.mp4 -c:v copy test3.h265; ffmpeg -i test3.h265 -c:v copy test4.mp4
Shine is now known as Guest243
Shuriko has quit [Ping timeout: 258 seconds]
<aaabbb> i forgot hevc_mp4toannexb but it seems to work anyway
Guest243 has quit [Read error: Connection reset by peer]
dallemon has quit [Quit: The Lounge - https://thelounge.chat]
<aaabbb> mp4box to the rescue! mp4box -par 1=w1:1 test.mp4
<aaabbb> completely fixes it, although it changes hvc1 to hev1 but i can change that back with ffmpeg :)
zmt00 has joined #ffmpeg
zmt01 has quit [Ping timeout: 240 seconds]
dallemon has joined #ffmpeg
Ogobaga has quit [Quit: Konversation terminated!]
Ogobaga has joined #ffmpeg
billchenchina has joined #ffmpeg
Blacker47 has joined #ffmpeg
dallemon has quit [Quit: Ping timeout (120 seconds)]
Jan\ has quit [Ping timeout: 255 seconds]
dallemon has joined #ffmpeg
JasonSilver has joined #ffmpeg
brianp has joined #ffmpeg
<brianp> Is there a way to define a "style" for drawtext filters that I could apply to every use of drawtext. By style I mean font, color, fontsize etc. It would be neat to define it once, and apply it against any dratext filter needed.
<JEEB> aaabbb: you should be able to just set the aspect ratio raw option (sar) and in theory that should then get passed to the codecpar. should be visible in the Input: and Output: things. try it on the input side first, and then output
<aaabbb> JEEB: that won't work with stream copy right?
<JEEB> if it still sets the parameter to the context, it should
<JEEB> which is why I said first try on the input side, since those values should get copied. and if that doesn't work, try on the output side
rsx has joined #ffmpeg
<JEEB> I just couldn't see an AVOption for the avformat sample aspect ratio
<aaabbb> JEEB: what's the aspect ratio raw option? i only know how to use setsar which needs a reencode and hevc_metadata which didn't help
<aaabbb> i also tried using -aspect but that didn't work either
<JEEB> aspect and sar
<JEEB> and try input side first, then output
<aaabbb> Unrecognized option 'sar'.
<aaabbb> probably because i'm on a version 4?
Jan\ has joined #ffmpeg
Friendship has quit [Read error: Connection reset by peer]
<aaabbb> anyways mp4box fixed the issue, and from now on when i transcode i'll make sure to have -vf setsar=1
Friendship has joined #ffmpeg
YuGiOhJCJ has quit [Quit: YuGiOhJCJ]
elastic_dog has quit [Ping timeout: 252 seconds]
redeeman has joined #ffmpeg
<redeeman> hello, when i use -c:v libx265 -crf 23, and then -preset fast/slow/veryslow, the files appear to become larger the slower the preset, wouldnt one expect it to be opposite?
<JEEB> that depends, think of it as the encoder "seeing" more
<aaabbb> redeeman: no, that's norma for x265
<JEEB> it's the same for all encoders
<aaabbb> >Due to x264 being much less complex, presets can pretty much maintain only a slight loss in quality as you encode faster. This gives an illusion that slower presets are slower due to spending more time compressing. The more correct way to see this is that slower presets are slower due to doing more motion calculations and finding the best scheme that best describes the frame, which in x264 just so happens
<JEEB> for example if you check x264 with the slower presets you will see this
<aaabbb> benefits compression too. However, x265 is waaay more complex with motion algorithms, meaning that accurately describing motion actually increases bitrate.
<JEEB> ehhh
<redeeman> aaabbb: yes but its same CRF, so enabling more expensive encoding should target same quality at lower bitrate?
<aaabbb> redeeman: you can't compare crfs across presets
<JEEB> redeeman: "same rate factor according to how the algorithm sees it"
<aaabbb> if you try crf 23 with ultrafast you'll see it's even worse quality than crf 30 with slow
<redeeman> okay, that makes sense then
<JEEB> this matches for all encoders, this same thing can be seen in x264 as well, esp. in the slower presets
<JEEB> so just ignore the x265-only'ness of the comments from aaabbb
elastic_dog has joined #ffmpeg
<aaabbb> JEEB: right i wasjust saying that because he's using x265
<aaabbb> however it's mroe apparent in x265 because with x264, a slower preset often happens to slightly reduce file size, enough that it's noticible and causes the misconception that slow preset = smaller file
<redeeman> okay so if i were to for example use crf 28 with preset veryslow, and that filesize somehow matched preset fast at crf 23 (just example), the preset veryslow wins out in quality?
<aaabbb> redeeman: generally yes
<aaabbb> i'm sure there are a few pathological cases where you could find a strange input that looks worse at high preset, but you won't run into that naturally
<JEEB> I would be surprised if not :) if you adjust CRF to match file size, the better preset should have better quality
<JEEB> aaabbb: I mean, you were quoting it so that is why I'm telling explicitly to ignore that x265-only bit.
<redeeman> i notice that when using the slower preset, the avg QP for I frames are almost similar to fast, but the avg QP for P frames is much lower, and more P frames exist
<aaabbb> JEEB: ooh yes
<aaabbb> redeeman: slower presets change a lot of settings, for example it'll try to use more B frames, it'll try to more accurately place B frames etc
<aaabbb> a slower preset mostly improves motion estimation, which isn't relevant to I frames
navi has joined #ffmpeg
<JEEB> I'd refrain from making such specific comments
<JEEB> unless you really know the ins and outs of each encoder
manwithluck has quit [Quit: ZNC - https://znc.in]
<JEEB> that is why I try to keep to generic level even if I know some things
manwithluck has joined #ffmpeg
<aaabbb> you're right it's ust that way for x265 with most default settings
<aaabbb> but most of the x265 parameters that get tweaked by a slower preset are relevant to motion estimation and accurate decisions
<JEEB> thank you for actually linking the docs
<aaabbb> this is also a really nice reference :) https://forum.doom9.org/showthread.php?t=167081
<JEEB> but the general gist is that since the default preset is supposed to be useful, most likely some of the fastest ones disable stuff that helps in all cases which then brings that expected file size reduction for the same rate factor value.
<JEEB> as you raise the preset to something more attempting to compress
stolen has quit [Quit: Connection closed for inactivity]
Shine_ has joined #ffmpeg
ZedHedTed has quit [Remote host closed the connection]
ZedHedTed has joined #ffmpeg
<redeeman> what about setting the profile to main10, i see many on forums that claims it improves encoding effeciency, I did a test: https://pastebin.com/NicQn0B5
<aaabbb> redeeman: it can improve efficiency and reduce banding in some situations
<aaabbb> especially with dark, flat scenes, so it's good for anime encodes, even if you have an 8-bit source
<redeeman> this is an 8bit source
<redeeman> but a real video
<aaabbb> it can sometimes improve efficiency, it's one of those things you have to test (which you did)
<aaabbb> you can also use vmaf to compare quality
manwithluck has quit [Quit: ZNC - https://znc.in]
<redeeman> this seems to have provided an extreme difference in bitrate, and if i just watch the video, i see no difference, but i havent tried extracting frames and comparing
<aaabbb> redeeman: are you just using -pix_fmt yuv420p10le?
<redeeman> i did -c:v libx265 -crf 20 -preset fast -profile:v main10 -x265-params "level=5.1:high-tier=1:crf=20" -pix_fmt yuv420p10le
Shine_ has quit [Ping timeout: 255 seconds]
<redeeman> and then vs -c:v libx265 -crf 20 -preset fast -profile:v main -x265-params "level=5.1:high-tier=1:crf=20"
<aaabbb> you don't need to manually set main10 as the profile, try with just the 10 bit pix fmt
<redeeman> wouldnt that just mean it autodetects main10?
<aaabbb> i'm not sure, but you don't need to change the profile manually
<redeeman> it doesnt work if i dont specify main10, it says: x265 [error]: main profile not supported, internal bit depth 10
<aaabbb> ah
manwithluck has joined #ffmpeg
<aaabbb> hm it works for me
noonien8 has joined #ffmpeg
<aaabbb> for a 1080rce
<aaabbb> for a 1080p 8 bit source*
<redeeman> i have ffmpeg 6.0 x265--3.5
<aaabbb> anyway maybe try 2 pass ABR to create two encodes, one with and one without yuv420p10le, and use vmaf to compare each to the original. and also manually look for banding in dark scenes
<aaabbb> that way you can compare them at the same bitrate
<aaabbb> i'm no expert so take my advice with grain of salt, but that's what i'd do
<redeeman> i will try do many more comparisins, i just wanted to know if it was in general a stupid thing for some reason
mven has quit [Ping timeout: 255 seconds]
anticw has quit [Server closed connection]
anticw has joined #ffmpeg
MrZeus has joined #ffmpeg
colona has quit [Server closed connection]
colona has joined #ffmpeg
billchenchina has quit [Remote host closed the connection]
The_Blode has quit [Server closed connection]
The_Blode has joined #ffmpeg
markizano has quit [Quit: Poweroff]
ecapi has quit [Ping timeout: 252 seconds]
ecapi has joined #ffmpeg
markizano has joined #ffmpeg
ecapi_ has joined #ffmpeg
ecapi has quit [Ping timeout: 255 seconds]
minimal has joined #ffmpeg
iconoclasthero_ has joined #ffmpeg
iconoclasthero_ is now known as iconoclast_hero
AbleBacon has joined #ffmpeg
ivanich has quit [Ping timeout: 245 seconds]
kraftwerk28 has quit [Quit: *disconnects*]
kraftwerk28 has joined #ffmpeg
ecs has quit [Server closed connection]
ecs has joined #ffmpeg
waleee has joined #ffmpeg
<redeeman> aaabbb: i just noticed, i got this: [swscaler @ 0x556c89700f00] deprecated pixel format used, make sure you did set range correctly
<redeeman> when using yuv420p10le
waleee has quit [Client Quit]
iconoclast_hero has quit [Ping timeout: 245 seconds]
psykose has quit [Remote host closed the connection]
jarthur has joined #ffmpeg
psykose has joined #ffmpeg
foul_owl has quit [Read error: Connection reset by peer]
<catsoften> Is anyone able to help with an error I'm getting compiling x264 on windows from github actions. Link to the log: https://github.com/catsoften/testingpublic/actions/runs/6814073893/job/18530090859#step:3:362 and build script: https://github.com/catsoften/testingpublic/blob/x264/build.sh
<catsoften> Sorry to bother you with a different project but I tried asking over a month ago in #x264 and it's been completely silent. Figured someone here would know more about this than I do since ffmpeg supports/uses x264
Ischwitch has joined #ffmpeg
Ingvix has quit [Ping timeout: 252 seconds]
Ischwitch is now known as Ingvix
foul_owl has joined #ffmpeg
BetweenUs has joined #ffmpeg
rsx has quit [Quit: rsx]
paddymahoney has quit [Remote host closed the connection]
paddymahoney has joined #ffmpeg
BetweenUs has quit [Quit: Leaving]
Foxtop78 has joined #ffmpeg
Foxtop78 has quit [Client Quit]
lucasta has joined #ffmpeg
Blacker47 has quit [Ping timeout: 258 seconds]
lavaball has quit [Remote host closed the connection]
mven has joined #ffmpeg
iderik has joined #ffmpeg
FH_thecat has joined #ffmpeg
vampirefrog has joined #ffmpeg
bertieb_ is now known as bertieb
Muimi has joined #ffmpeg
nd has quit [Ping timeout: 240 seconds]
nd_ has joined #ffmpeg
nd_ is now known as nd
qqq has joined #ffmpeg
mven has quit [Ping timeout: 240 seconds]
Narrat has joined #ffmpeg
mven has joined #ffmpeg
mven has quit [Quit: Goodbye.]
mven has joined #ffmpeg
waleee has joined #ffmpeg
Gunstick- has quit [Ping timeout: 240 seconds]
b50d has joined #ffmpeg
Foxtop78 has joined #ffmpeg
<Foxtop78> Hello, what could possible happen if i only use loudnorm filter for normalize my music with one pass instead of using two passes? I see in some forums that i should use ffmpeg-normalize script, but this doesn't work. Is it very bad for quality if i just use the loudnorm filter in one pass?
<durandal_1707> yes, dynamic mode is very ad-hoc and amateur code
<durandal_1707> i have some wip code to resolve this dynamic mess but that needs to be finished
<Foxtop78> then what is the solution if ffmpeg-normalize doesn't work for me? (not able to install the script)
esc_ape has joined #ffmpeg
<Foxtop78> is there a simple two line command i can use within a shell script to normalize all flac files in a folder?
esc--ape-- has quit [Ping timeout: 255 seconds]
Gunstick- has joined #ffmpeg
ZedHedTed has quit [Quit: leaving]
Foxtop78 has quit [Ping timeout: 250 seconds]
rvalue has quit [Read error: Connection reset by peer]
rvalue has joined #ffmpeg
rv1sr has quit []
mven3 has joined #ffmpeg
mven has quit [Ping timeout: 255 seconds]
mven3 is now known as mven
whatever_nicknam has joined #ffmpeg
b50d has quit [Remote host closed the connection]
lucasta has quit [Quit: Leaving]
lavaball has joined #ffmpeg
lemourin5 has joined #ffmpeg
lemourin is now known as Guest2984
Guest2984 has quit [Killed (copper.libera.chat (Nickname regained by services))]
lemourin5 is now known as lemourin
Muimi has quit [Quit: Going offline, see ya! (www.adiirc.com)]
ivanich has joined #ffmpeg
mrelcee has quit [Ping timeout: 260 seconds]
Muimi has joined #ffmpeg
vulpine has quit [Quit: Connection reset by purr]
vulpine has joined #ffmpeg
Tano has quit [Quit: WeeChat 4.0.4]
<whatever_nicknam> Does anyone know if DSCP values can be set on RTSP rtp streams without custom I/O? This line (https://ffmpeg.org/doxygen/trunk/rtsp_8c_source.html#l01522) suggests no, but thought I would double-check. Thanks!
ppw has joined #ffmpeg
buhman has quit [Server closed connection]
buhman has joined #ffmpeg
<ppw> is there a way to prevent transcoding to AAC to cut off the frequency at 16 kHz and increase the ceiling to 22 kHz
Tano has joined #ffmpeg
anotheruser has quit [Read error: Connection reset by peer]
someuser has quit [Read error: Connection reset by peer]
<whatever_nicknam> ppw, no clue, but it looks like there is a '-cutoff' flag: https://ffmpeg.org/ffmpeg-codecs.html#aac
<ppw> hmm interesting thanks
<ppw> it just might work
<ppw> oh shucks I'm using fraunhofer's encoder, not ffmpeg's
<JEEB> that also happens to utilize that option
<ppw> does it? ooh
<JEEB> too bad we don't yet have a system to tell user which global options are utilized by a specific module
vincento has joined #ffmpeg
anotheruser has joined #ffmpeg
someuser has joined #ffmpeg
whatever_nicknam has quit [Ping timeout: 250 seconds]
mrelcee has joined #ffmpeg
kron has quit [Ping timeout: 240 seconds]
kron has joined #ffmpeg
lusciouslover has joined #ffmpeg
mrelcee_ has joined #ffmpeg
mrelcee has quit [Ping timeout: 252 seconds]
mrelcee_ is now known as mrelcee
qaph has joined #ffmpeg
kron has quit [Ping timeout: 252 seconds]
Buster__ has joined #ffmpeg
ZedHedTed has joined #ffmpeg
<ppw> oh that's weird. ffmpeg accepts 8m and 31s of stdin data, then ends the encoding
qaph has quit [Ping timeout: 252 seconds]
mrelcee has quit [Ping timeout: 240 seconds]
mrelcee has joined #ffmpeg
ivanich_ has joined #ffmpeg
ivanich has quit [Read error: Connection reset by peer]
kron has joined #ffmpeg
<brianp> If i re-run the same command multiple times it fails about 1/5 times with "Cannot find a valid font for the family Abel" but the font file is always there, always in the same place.
MisterMinister has quit [Remote host closed the connection]
<brianp> The filter looks like: `drawtext=text='brian':expansion=none:fontfile='/Users/brianp/Library/Developer/CoreSimulator/Devices/0919DC53-7B8F-4843-BAA5-77EF0B8BA738/data/Containers/Data/Application/CFF2866F-747C-4240-BB99-0C1BCECEC6E2/Library/Caches/Abel-Regular.ttf':fontcolor='ffffff':fontsize='65.21739130434783':font='Abel':shadowcolor='212121@0.698
<brianp> 0392156862745':shadowx='2.0':shadowy='2.0':x='147.3913043478261':y='211.49009313587598'`
kron has quit [Ping timeout: 252 seconds]
mrelcee has quit [Quit: I want Waffles!]
kron has joined #ffmpeg
mrelcee has joined #ffmpeg
qaph has joined #ffmpeg
kron has quit [Ping timeout: 252 seconds]
Swedaniel has joined #ffmpeg
qaph is now known as kron
lemourin9 has joined #ffmpeg
lemourin is now known as Guest2753
Guest2753 has quit [Killed (tantalum.libera.chat (Nickname regained by services))]
lemourin9 is now known as lemourin
Buliarous has quit [Remote host closed the connection]
kron has quit [Ping timeout: 252 seconds]
kron has joined #ffmpeg
iderik has quit [Quit: WeeChat 3.0]
lavaball has quit [Quit: lavaball]
lavaball has joined #ffmpeg
XdaddyZX_ has quit [Server closed connection]
XdaddyZX_ has joined #ffmpeg
Capstan has joined #ffmpeg
l-boogie has joined #ffmpeg
l-boogie has quit [Client Quit]
luva6 has quit [Quit: Ping timeout (120 seconds)]
luva6 has joined #ffmpeg
vincento has quit [Ping timeout: 250 seconds]
Capstan has quit [Quit: Client closed]
Capstan has joined #ffmpeg
bitbinge has quit [Ping timeout: 264 seconds]
ecapi_ has quit [Remote host closed the connection]
lemourin is now known as Guest3930
lemourin0 has joined #ffmpeg
Guest3930 has quit [Killed (iridium.libera.chat (Nickname regained by services))]
ecapi_ has joined #ffmpeg
ecapi_ has quit [Remote host closed the connection]
ecapi_ has joined #ffmpeg
ecapi_ has quit [Ping timeout: 240 seconds]
bitbinge has joined #ffmpeg
Shine_ has joined #ffmpeg
vlm has quit [Quit: Leaving]
lemourin has quit [Read error: Connection reset by peer]
lemourin has joined #ffmpeg
Muimi has quit [Quit: Going offline, see ya! (www.adiirc.com)]
zwayn has joined #ffmpeg
MrZeus_ has joined #ffmpeg
MrZeus has quit [Ping timeout: 252 seconds]
lemourin has quit [Read error: Connection reset by peer]
lemourin has joined #ffmpeg
MrZeus__ has joined #ffmpeg
Narrat has quit [Quit: They say a little knowledge is a dangerous thing, but it's not one half so bad as a lot of ignorance.]
MrZeus_ has quit [Ping timeout: 255 seconds]
Shine_ has quit [Read error: Connection reset by peer]
ppw has left #ffmpeg [#ffmpeg]
MrZeus_ has joined #ffmpeg
lemourin has quit [Read error: Connection reset by peer]
MrZeus__ has quit [Ping timeout: 255 seconds]
lemourin has joined #ffmpeg
Shine_ has joined #ffmpeg
Buliarous has joined #ffmpeg
MrZeus_ has quit [Ping timeout: 258 seconds]
qaph has joined #ffmpeg
kron has quit [Ping timeout: 240 seconds]
Shine_ has quit [Read error: Connection reset by peer]
qaph is now known as kron