lavaball has quit [Remote host closed the connection]
rvalue has quit [Ping timeout: 264 seconds]
rvalue has joined #ffmpeg
KombuchaKip has quit [Quit: Leaving.]
bout_baby has quit [Remote host closed the connection]
KombuchaKip has joined #ffmpeg
jarthur has quit [Quit: jarthur]
<znf> Does anyone know if there are some graphs like these, but for AMD cards? https://www.elpamsoft.com/?p=Plex-Hardware-Transcoding
nigetilly has quit [Ping timeout: 260 seconds]
Tano has quit [Quit: WeeChat 4.0.4]
mven94 has joined #ffmpeg
fling has quit [Remote host closed the connection]
mven9 has quit [Ping timeout: 264 seconds]
mven94 is now known as mven9
fling has joined #ffmpeg
Marth64 has quit [Ping timeout: 268 seconds]
raccct has quit [Ping timeout: 250 seconds]
<znf> BtbN, I did get that working, btw: https://pastie.dev/O5lsHT.yaml
Tano has joined #ffmpeg
user23 has joined #ffmpeg
user23 has quit [Remote host closed the connection]
qaph has joined #ffmpeg
kron has quit [Ping timeout: 264 seconds]
qaph is now known as kron
Marth64 has joined #ffmpeg
thilo has quit [Ping timeout: 268 seconds]
thilo has joined #ffmpeg
fling has quit [Remote host closed the connection]
fling has joined #ffmpeg
Marth64[m] has joined #ffmpeg
wacko has quit [Ping timeout: 245 seconds]
chainik has quit [Quit: Ping timeout (120 seconds)]
vincent9 has joined #ffmpeg
kraftwerk28 has quit [Quit: *disconnects*]
chainik has joined #ffmpeg
kraftwerk28 has joined #ffmpeg
buzel has quit [Excess Flood]
vincent has quit [Read error: Connection reset by peer]
vincent9 is now known as vincent
Jhonny2x4 has quit [Ping timeout: 245 seconds]
Flat_ has joined #ffmpeg
Marth64 has quit [Ping timeout: 245 seconds]
Trel has quit [Ping timeout: 245 seconds]
wacko has joined #ffmpeg
JanC has quit [Ping timeout: 255 seconds]
Trel has joined #ffmpeg
mid-kid has joined #ffmpeg
Flat has quit [Ping timeout: 245 seconds]
ZedHedTed has joined #ffmpeg
minimal has quit [Quit: Leaving]
nigetilly has joined #ffmpeg
buzel has joined #ffmpeg
JanC has joined #ffmpeg
Owner__ has joined #ffmpeg
Ogobaga has quit [Quit: Konversation terminated!]
Ogobaga has joined #ffmpeg
Marth64[m] has quit [Ping timeout: 255 seconds]
Owner__ has quit [Client Quit]
Owner__ has joined #ffmpeg
navi has quit [Quit: WeeChat 4.0.4]
vincent has quit [Quit: cappuccigo]
Owner__ is now known as marth64
nigetilly has quit [Ping timeout: 276 seconds]
vincent has joined #ffmpeg
waleee has quit [Ping timeout: 264 seconds]
lemourin has quit [Read error: Connection reset by peer]
lemourin has joined #ffmpeg
LionEagle has quit [Quit: Leaving]
elastic_dog has quit [Ping timeout: 256 seconds]
lusciouslover has quit [Read error: Connection reset by peer]
lusciouslover has joined #ffmpeg
elastic_dog has joined #ffmpeg
Vonter has quit [Ping timeout: 264 seconds]
Vonter has joined #ffmpeg
Vonter has quit [Ping timeout: 260 seconds]
nigetilly has joined #ffmpeg
Vonter has joined #ffmpeg
nigetilly has quit [Ping timeout: 245 seconds]
nigetilly has joined #ffmpeg
Ogobaga has quit [Quit: Konversation terminated!]
Ogobaga has joined #ffmpeg
<nigetilly> hey quick question ....i download some free movies off youtube there from the 50s no copyright ...but my mothers TV doesnt support the format so i change it too mp4 and ac3 but the quailty drops massive anything i can do ?
<another|> what codec is it in?
<aaabbb> nigetilly: if the movies from youtube are h264, then you can do a stream copy to not transcode anything
<nigetilly> yea its in h264
<nigetilly> how does one stream copy
<aaabbb> ffmpeg -iOCOC input.mp4 -c:v copy -c:a ac3 output.mp4
<aaabbb> that's an example
<aaabbb> ffmpeg -i input.mp4 -c:v copy -c:a ac3 output.mp4
<nigetilly> ok thanks
<aaabbb> that i mean. that will copy the video, and convert the audio to ac3 from whatever it is
Vonter has quit [Ping timeout: 245 seconds]
<nigetilly> yep it def needs to be ac3
<nigetilly> :)
<aaabbb> is the quality of the audio or the video what drops?
<nigetilly> vid
Vonter has joined #ffmpeg
<aaabbb> and you can't use aac for audio?
<nigetilly> no
<nigetilly> not a option
<aaabbb> well if you have to use ac3 then "ffmpeg -i input.mp4 -c:v copy -c:a ac3 output.mp4" is a minimum that would work
<aaabbb> or it should work at least
<nigetilly> Tv doesnt know what it is
<nigetilly> the input is
<nigetilly> h.264
<nigetilly> atm
<aaabbb> what is the command you used? was it just "ffmpeg -i input.mp4 output.mp4"?
<nigetilly> when i change it to mpeg4 thats when the quality drops
<aaabbb> oh, you need it to be mpeg4?
<nigetilly> this is the thing ...some h.264 seem to work i think
<nigetilly> and others dont
<aaabbb> ah, that you may need to transcode it. what profile is the ones that work vs the ones that don't?
<aaabbb> for example the ones that all work, are they all constrained baseline?
<nigetilly> i have no idea
<nigetilly> this is the thing
<aaabbb> run ffprobe on them
<nigetilly> i download some ...and noticed that some did some didnt so i got ffmpeg
<nigetilly> and changed them
<nigetilly> so changed well others didnt
<nigetilly> i del the ones that didnt
<nigetilly> so i would have to get some more of them
<aaabbb> yeah try to get some more of them
<nigetilly> ok
<aaabbb> because some h264 profiles may be supported and others may not be
<nigetilly> yea
<nigetilly> thats what is happening aaabbb
<aaabbb> well you could transcode to the baseline profile
fling has quit [Remote host closed the connection]
<nigetilly> how do you do that mate
fling has joined #ffmpeg
<aaabbb> ffmpeg -i input.mp4 -c:v libx264 -profile:v baseline -c:a ac3 output.mp4
<aaabbb> that's the lowest profile
<nigetilly> ok
<aaabbb> it doesn't work with all resolutions/bitrates etc
<aaabbb> if that works, then try it with "main" instead of "baseline" because that will be higher quality per bit
<aaabbb> most good quality h264 uses profile "high", but that's not always supported on older hardware. "main" is more likely to be supported, and "baseline" will definitely be supported if h264 is
Muimi has joined #ffmpeg
<nigetilly> ok
<nigetilly> thanks so much
<nigetilly> that makes life alot easier know that
<nigetilly> knowing
<aaabbb> you can also use -crf and then a number to tweak the quality/size tradeoff
<aaabbb> the default is 23, which is the same as if you do "-crf 23". a lower crf is higher quality, but bigger file size
<aaabbb> and you can also increase quality by using -preset, the default is medium aka "-preset medium". if you have some time on your hands, you can set it to "-preset veryslow" which takes longer to convert, but gives you better quality without increasing the file size much
<nigetilly> oh ok
<nigetilly> how would that look
<aaabbb> so i'd suggest something like "ffmpeg -i input.mp4 -c:v libx264 -profile:v baseline -preset veryslow -crf 20 -c:a ac3 output.mp4"
<nigetilly> ok
<aaabbb> if the quality isn't good enough, you can decrease crf to 19 or even 18. if the file size is too big, you can increase the crf. usually you'll want it somewhere between 15 and 30 (roughly speaking), with lower meaning big file with high quality and higher meaning small file with worse quality
<nigetilly> yep yep
<nigetilly> ill do some testing now
<nigetilly> see what it comes out with
<nigetilly> :P
<nigetilly> so that line is saying ..video mp4 copy to video libx264 the profile goin to be baseline the present is going to be veryslow for better quality and the crf down to 20 from better quality and the audio going to be ac3
<aaabbb> yeah, well it won't copy it it will convert it to the baseline profile (which means features that are sometimes incompatible, like cabac, are turned off), using the veryslow preset (which means it takes longer to convert but the quality is btter) with the crf down from 23 to 20 (meaning better quality at the expense of file size), and the audio will be converted to ac3 with default settings, and it will be
<aaabbb> put into a .mp4 file
<nigetilly> yep yep
<nigetilly> what about if ya happy with the video format
<nigetilly> and your just looking to do the audio
<nigetilly> ffmpeg -i input.mp4 -c:a ac3 output.np4
<nigetilly> mp4
<nigetilly> ?
<nigetilly> ffmpeg -i input.mp4 -c:a ac3 output.mp4
<aaabbb> happy like it already works?
<aaabbb> ffmpeg -i input.mp4 -c:v copy -c:a ac3 output.mp4
<aaabbb> that will take the h264 video and copy it without any changes, but will convert the audio to ac3
<nigetilly> ok
<nigetilly> great
<nigetilly> im getting it now
<nigetilly> makes alot more sense to me
<aaabbb> and if baseline works, try main next, because it's better quality
<nigetilly> yep for sure
<aaabbb> basically you want to use the highest quality profile that is supported
<nigetilly> yep no doubt
<nigetilly> legend effort!!!
<aaabbb> you'll still lose quality if you have to transcode, but much less quality if you're converting to h264 instead of mpeg4 :)
<nigetilly> yep i hear ya
<nigetilly> thanks so much for your help
<aaabbb> yw :)
<nigetilly> :)
<nigetilly> where ya from aaabbb
<nigetilly> i got to take off for abit thanks again
JanC has quit [Ping timeout: 264 seconds]
vtorri_ has joined #ffmpeg
vtorri_ has left #ffmpeg [Leaving]
vtorri_ has joined #ffmpeg
JanC has joined #ffmpeg
otoburb has quit [Ping timeout: 268 seconds]
otoburb has joined #ffmpeg
yo0O0o has joined #ffmpeg
waleee has joined #ffmpeg
yo0O0o has quit [Remote host closed the connection]
rpthms has quit [Remote host closed the connection]
rpthms has joined #ffmpeg
stolen has joined #ffmpeg
vlm has joined #ffmpeg
AbleBacon has quit [Read error: Connection reset by peer]
vtorri_ has left #ffmpeg [Leaving]
jlc has quit [Ping timeout: 252 seconds]
waleee has quit [Ping timeout: 245 seconds]
holgersson has quit [Quit: “Format C:........[Done]“]
elastic_dog has quit [Ping timeout: 264 seconds]
blaze has quit [Quit: WeeChat 3.5]
ivanich has joined #ffmpeg
elastic_dog has joined #ffmpeg
rv1sr has joined #ffmpeg
jlc has joined #ffmpeg
Gaboradon has joined #ffmpeg
emanuele6 has joined #ffmpeg
Muimi has quit [Quit: Going offline, see ya! (www.adiirc.com)]
jlc has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
jlc has joined #ffmpeg
Ox7C5_ has joined #ffmpeg
holgersson has joined #ffmpeg
raccct has joined #ffmpeg
waleee has joined #ffmpeg
rbdr has joined #ffmpeg
YuGiOhJCJ has joined #ffmpeg
rbdr has quit [Client Quit]
YuGiOhJCJ has quit [Remote host closed the connection]
YuGiOhJCJ has joined #ffmpeg
YuGiOhJCJ has quit [Remote host closed the connection]
YuGiOhJCJ has joined #ffmpeg
rsx has joined #ffmpeg
emanuele6 has quit [Ping timeout: 260 seconds]
emanuele6 has joined #ffmpeg
BillTorvalds has joined #ffmpeg
vlm has quit [Quit: Leaving]
BetweenUs has joined #ffmpeg
rsx has quit [Ping timeout: 264 seconds]
Ox7C5_ has quit [Ping timeout: 256 seconds]
rsx has joined #ffmpeg
BetweenUs has quit [Quit: Leaving]
LuKaRo has quit [Remote host closed the connection]
Some_Person has quit [Quit: ZNC 1.8.2 - https://znc.in]
Some_Person has joined #ffmpeg
waleee has quit [Ping timeout: 245 seconds]
stolen has quit [Quit: Connection closed for inactivity]
rsx has quit [Quit: rsx]
LuKaRo has joined #ffmpeg
rbdr has joined #ffmpeg
alexherbo2 has joined #ffmpeg
ivanich_ has joined #ffmpeg
ivanich has quit [Read error: Connection reset by peer]
lavaball has joined #ffmpeg
nigetilly has quit [Remote host closed the connection]
LionEagle has joined #ffmpeg
emanuele6 has quit [Ping timeout: 240 seconds]
minimal has joined #ffmpeg
emanuele6 has joined #ffmpeg
BillTorvalds has quit [Quit: Leaving]
ivanich_ has quit [Remote host closed the connection]
zsoltiv__ has quit [Ping timeout: 264 seconds]
rvalue has quit [Ping timeout: 252 seconds]
jokoon has joined #ffmpeg
navi has joined #ffmpeg
<jokoon> I use ffmpeg.exe -f image2 -framerate 2 -i C:\_chest2\creations\calvin\croppedby2\%02d.png -vcodec libx264 -pix_fmt yuv420p calvin.mp4
<jokoon> on 13 PNGs
<jokoon> wait, no, 2.5 instead of 2
<jokoon> does that mean the last image will show about (2.5/13) seconds, or will it just be the last frame?
<jokoon> wait my math is bad
rvalue has joined #ffmpeg
<jokoon> VLC is weird on windows when dealing with start/end of video, it seems to cut off too early
<jokoon> firefox doesn't
<jokoon> Not sure if that's me
Jhonny2x4 has joined #ffmpeg
Ogobaga has quit [Quit: Konversation terminated!]
Ogobaga has joined #ffmpeg
Perflosopher has quit [Quit: Ping timeout (120 seconds)]
Perflosopher has joined #ffmpeg
rbdr has quit [Read error: Connection reset by peer]
rbdr has joined #ffmpeg
emmanuelux has quit [Quit: au revoir]
YuGiOhJCJ has quit [Quit: YuGiOhJCJ]
<CounterPillow> The mpeg-4 container does not standardise what should be done with the last frame of a video iirc, so what is done depends on the player
<jokoon> I duplicated PNG to avoid this, so I have 15 PNG instead of 13, with ./ffmpeg.exe -f image2 -framerate 2.6 -i C:\_chest2\creations\calvin\croppedby2\%02d.png -pix_fmt yuv420p calvin15.mp4 so it goes under 6s for whatsapp
zsoltiv has joined #ffmpeg
rv1sr has quit []
alexherbo2 has quit [Remote host closed the connection]
alexherbo2 has joined #ffmpeg
rbdr has quit [Quit: (Zzz)]
alexherbo2 has quit [Ping timeout: 250 seconds]
alexherbo2 has joined #ffmpeg
lavaball has quit [Quit: lavaball]
alexherbo2 has quit [Remote host closed the connection]
arseru has joined #ffmpeg
<arseru> Hi there! Could anyone point me to a good guide on how to rip DVDs to h265 using only ffmpeg on linux?
rbdr has joined #ffmpeg
raccct has quit [Ping timeout: 250 seconds]
jokoon has quit [Quit: Leaving]
lavaball has joined #ffmpeg
Ogobaga has quit [Read error: Connection reset by peer]
Ogobaga has joined #ffmpeg
rbdr has quit [Quit: (Zzz)]
rv1sr has joined #ffmpeg
rbdr has joined #ffmpeg
ivanich has joined #ffmpeg
marth64 has quit [Ping timeout: 264 seconds]
Jhonny2x4 has quit [Read error: Connection reset by peer]
billchenchina has joined #ffmpeg
rbdr has quit [Quit: (Zzz)]
Vonter has quit [Ping timeout: 276 seconds]
RetroPunk has quit [Quit: cya]
kasper93 has joined #ffmpeg
RetroPunk has joined #ffmpeg
ivanich_ has joined #ffmpeg
ivanich has quit [Read error: Connection reset by peer]
rvalue has quit [Ping timeout: 245 seconds]
rvalue has joined #ffmpeg
ivanich_ has quit [Remote host closed the connection]
ivanich has joined #ffmpeg
ivanich has quit [Remote host closed the connection]
emmanuelux has joined #ffmpeg
XdaddyZX_ has joined #ffmpeg
rvalue has quit [Ping timeout: 256 seconds]
billchenchina has quit [Remote host closed the connection]
Jibwood has joined #ffmpeg
theobjectivedad has quit [Remote host closed the connection]
Jhonny2x4 has joined #ffmpeg
theobjectivedad has joined #ffmpeg
rvalue has joined #ffmpeg
Muimi has joined #ffmpeg
bitoff has joined #ffmpeg
kasper93 has quit [Ping timeout: 268 seconds]
kasper93 has joined #ffmpeg
AbleBacon has joined #ffmpeg
kasper93_ has joined #ffmpeg
kasper93 has quit [Ping timeout: 260 seconds]
tinytoast has quit [Remote host closed the connection]
tinystoat has joined #ffmpeg
emmanuelux has quit [Read error: Connection reset by peer]
emmanuelux has joined #ffmpeg
kasper93_ has quit [Ping timeout: 240 seconds]
kasper93 has joined #ffmpeg
kasper93 has quit [Remote host closed the connection]
Jibwood has quit [Remote host closed the connection]
kasper93 has joined #ffmpeg
marth64 has joined #ffmpeg
Keshl has quit [Ping timeout: 246 seconds]
LionEagle has quit [Quit: Leaving]
Sakura`Kinomoto has quit [Ping timeout: 264 seconds]
Sakura`Kinomoto has joined #ffmpeg
XdaddyZX_ has quit [Quit: Connection closed for inactivity]
waleee has joined #ffmpeg
l4yer has quit [Ping timeout: 264 seconds]
user23 has joined #ffmpeg
l4yer has joined #ffmpeg
wyre has quit [Quit: ZNC 1.8.2 - https://znc.in]
Ogobaga has quit [Quit: Konversation terminated!]
Ogobaga has joined #ffmpeg
wyre has joined #ffmpeg
Sakura`Kinomoto has quit [Ping timeout: 260 seconds]
Sakura`Kinomoto has joined #ffmpeg
vulpine has quit [Quit: Connection reset by purr]
vulpine has joined #ffmpeg
Jhonny2x4 has quit [Read error: Connection reset by peer]
raccct has joined #ffmpeg
rv1sr has quit []
nigetilly has joined #ffmpeg
JanC_ has joined #ffmpeg
JanC is now known as Guest9721
Guest9721 has quit [Killed (tungsten.libera.chat (Nickname regained by services))]
JanC_ is now known as JanC
Sciencentistguy has joined #ffmpeg
emmanuelux_ has joined #ffmpeg
emmanuelux has quit [Ping timeout: 256 seconds]
emmanuelux_ has quit [Quit: au revoir]
emmanuelux has joined #ffmpeg
zsoltiv has quit [Remote host closed the connection]
SuicideShow has quit [Ping timeout: 256 seconds]
SuicideShow has joined #ffmpeg
Jhonny2x4 has joined #ffmpeg