<BtbN> Run ffmpeg manually, and read its output
<noobaroo> What do you mean by run it manually? I can't read its output because it closes unexpectedly
<noobaroo> I was recommended before to use BtBN build (I guess that's you :)) I just see lgpl and shared though, which one of your builds includes nonfree components?
<BtbN> The terminal only closes because it only belonged to ffmpeg
<BtbN> open the terminal yourself, and run ffmpeg from it
<BtbN> then it won't close
<BtbN> And nonfree by principle cannot be distributed, so you will not find any (legal) builds anywhere.
<BtbN> The literal only nonfree component there is though is fdk-aac, and that's really not worth the hassle.
<noobaroo> I did open the terminal myself, I always do. I don't know any other way to run ffmpeg.
<BtbN> Then it has no right to close itself oO
<noobaroo> But libfdkaac is better than aac, is it not ?
<BtbN> so? It's nonfree (for a silly reason, but nonfree nontheless)
<BtbN> Not worth the hassle
murb has joined #ffmpeg
xx has quit [Ping timeout: 260 seconds]
<noobaroo> I'm trying rav1e for the first time since svtav1 won't work, but it's running at 0.0887x on speed=7. Is that normal?
<noobaroo> The wiki says rav1e claims to be the fastest software encoder
<noobaroo> svtav1 used to work fine, I used to use it all the time, idk what happened
<BtbN> av1 software encoders are slow, yes
jess has quit []
<BtbN> Have you tried a different terminal?
<BtbN> Maybe svt prints something that your main one somehow HATES
<furq> i think rav1e is singlethreaded unless you set -tiles
<furq> svt has frame threading so that probably works automatically
SnakesAndStuff has quit [Read error: Connection reset by peer]
<noobaroo> Well a different terminal has no issues, I have no idea why this is the case all of the sudden as I have been using the same terminal for months without problems but it is what it is
lexano has quit [Ping timeout: 255 seconds]
<noobaroo> furq What should I set -tiles to?
KDDLB7 has joined #ffmpeg
KDDLB has quit [Ping timeout: 240 seconds]
KDDLB7 is now known as KDDLB
jarthur has quit [Quit: jarthur]
m5zs7k has quit [Remote host closed the connection]
m5zs7k has joined #ffmpeg
iive has quit [Quit: They came for me...]
intrac has quit [Quit: Konversation terminated!]
intrac has joined #ffmpeg
bitbinge has quit [Ping timeout: 260 seconds]
Kruppt has quit [Quit: Leaving]
MisterMinister has quit [Ping timeout: 255 seconds]
e^pi-1 has joined #ffmpeg
e^pi-1 has quit [Quit: WeeChat 4.2.1]
e^pi-1 has joined #ffmpeg
ppw has joined #ffmpeg
<ppw> hi
<ppw> is there a simple way of extracting multiple clips from the same video file if I provide a set of start and end times?
evilscreww has joined #ffmpeg
evilscreww has quit [Ping timeout: 250 seconds]
KDDLB has quit [Quit: The Lounge - https://thelounge.chat]
Starz0r has quit [Ping timeout: 255 seconds]
<noobaroo> Yes, add "-ss 00:11:00 -to 00:12:00" for example
<noobaroo> ppw i am a noob myself but that is one thing I do know
Suchiman has quit [Quit: Connection closed for inactivity]
Starz0r has joined #ffmpeg
<Marth64> ```ffmpeg -ss 00:00:01 -to 00:02:00 -i INPUT.mkv -ss 00:05:01 -to 00:09:00 -i INPUT.mkv -ss 00:10:01 -to 00:15:00 -i INPUT.mkv -map 0 -c copy CLIP1_REMUX.mkv -map 1 -c copy CLIP2_REMUX.mkv -map 3 -c copy CLIP4_REMUX.mkv```
<Marth64> err
<Marth64> ```ffmpeg -ss 00:00:01 -to 00:02:00 -i INPUT.mkv -ss 00:05:01 -to 00:09:00 -i INPUT.mkv -ss 00:10:01 -to 00:15:00 -i INPUT.mkv -map 0 -c copy CLIP1_REMUX.mkv -map 1 -c copy CLIP2_REMUX.mkv -map 2 -c copy CLIP3_REMUX.mkv```
<Marth64> something like that.
<ppw> ehhh
<Marth64> basically you define n inputs one for each file, and before each one you put -ss <start> -to <end> then you map em all back out
<ppw> can't I just feed ffmpeg a text file with timestamps?
<Marth64> yeah you can script and run it in sequence if that makes it easier to work with
<Marth64> eg. for each segment: ffmpeg -ss START -to END -i INPUT.mkv -c copy OUTPUT.mkv and repeat this for each of your <START, END> tuples
treefrob has quit [Ping timeout: 255 seconds]
<Marth64> no direct method afaik to say, "here are timestamps go split to n files"
<Marth64> with just a file sheet of timestamps
<Marth64> but the CLI interface is forgiving and easy for something like this
<Marth64> there are ways to give ffmpeg options as a file, i forgot the exact switch
Vonter has joined #ffmpeg
<noobaroo> I have an srt file that has the first dialogue start at 17 seconds, but my actual video doesn't start talking until 24 seconds. What's the easiest way to allign the subtitles with the video properly?
<Marth64> -itsoffset or use SubtitleEdit (2 mins job)
<Marth64> ffmpeg -itsoffset 5 -i MyFavoriteSubs.srt MyNewSubs.srt
<noobaroo> Thanks :) You're awesome
<Marth64> np
JanC has quit [Ping timeout: 264 seconds]
treefrob has joined #ffmpeg
bitbinge has joined #ffmpeg
minimal has quit [Quit: Leaving]
JanC has joined #ffmpeg
<ppw> Marth64: would this work? https://bpa.st/O5LQ
<Marth64> it is different
<Marth64> your ask (correct me if wrong): how to take 1 video, split different segments of it into individual files
<Marth64> url: how to take 1 video, pick different segments, and join them to 1 new video
<Marth64> the document says "extract" but it's not extracting, its concatenating
<Marth64> does that help?
<Marth64> i think the author meant to say concatenate / join to one video (which is what they are doing) but used the word extract
<Marth64> you can validate this by seeing they are using the "concat=" filter ;)
fling has quit [Remote host closed the connection]
evilscreww has joined #ffmpeg
fling has joined #ffmpeg
MisterMinister has joined #ffmpeg
<aaabbb> when downsampling from s16 48khz to u8 8khz ("-c:a pcm_u8 -ar 8000"), does ffmpeg's swr use dither by default?
evilscreww has quit [Remote host closed the connection]
<Marth64> aaabbb: i am not too familiar with swr but from reading this, i think probably not. following my train of thought:
<Marth64> 1) https://ffmpeg.org/ffmpeg-all.html#Resampler-Options (dither_method) -> Set dither method. Default value is 0.
<Marth64> its an educated guess but i am not sure if there is any implied things there aside from what i see
<aaabbb> Marth64: so for going from s16 48khz to u8 8khz, i should probably manually select dither?
<Marth64> aaabbb: i would personally explicitly set it, that way it's predictable. i am sorry in advance if my hypothesis is wrong
<Marth64> i do not do much advanced audio processing
<furq> dither is off by default
<aaabbb> furq: then i assume i should be using dither when going down from s16 to u8 for sure :)
bitbinge has quit [Ping timeout: 260 seconds]
<aaabbb> is soxr still better than swr?
<aaabbb> and is there any reason i should use -osf u8 in addition to -c:a pcm_u8 (when saving to a wav)?
FlorianBad_ has joined #ffmpeg
FlorianBad_ is now known as FlorianBad
AbleBacon has quit [Read error: Connection reset by peer]
lolok has quit [Quit: lolok]
mrelcee has quit [Ping timeout: 246 seconds]
<aaabbb> ok it looks like it has no effect. i read on redit that it was needed but could not confirm
mrelcee has joined #ffmpeg
FlorianBad has quit [Quit: Konversation terminated!]
FlorianBad has joined #ffmpeg
bitbinge has joined #ffmpeg
hamzah has quit [Ping timeout: 250 seconds]
<noobaroo> Is it normal that adding metadata while changing nothing else takes a few minutes to complete?
<aaabbb> noobaroo: if the file is extremely big and/or your storage medium is slow, yeah
<aaabbb> post the command you used
Tinos has quit [Remote host closed the connection]
<noobaroo> aaabbb "ffmpeg -i $V -c copy -metadata:s:s:0 language=english Vida_S01_E01.webm"
<noobaroo> Also, is it normal that I'm using
<noobaroo> Oops sorry, pressed enter by accident. Is it normal that I'm using "-b:v 2500k" but the total bitrate of the file comes out to be 1900k and I'm assuming that's including audio, so it's really less than that
<aaabbb> noobaroo: if you're doing -b:v then you're transcoding, not just changing metadata. and yes that's normal. you really want to use 2pass instead of a single pass
Ox7C5_ has joined #ffmpeg
<noobaroo> Two separate questions, I showed you the command I used to change metadata
<aaabbb> "ffmpeg -an -i in.mp4 -c:v libx264 -b:v 2500k -pass 1 -f null - && ffmpeg -i in.mp4 -c:v libx264 -b:v 2500k -pass 2 out.mp4" (example if you're using libx264)
<aaabbb> if you don't use 2pass then the accuracy of your abr setting will be low, and the quality can also suffer, especially at the beginning
jagannatharjun has joined #ffmpeg
<noobaroo> Earlier, JEEB told me 2 pass doesn't provide any benefit except in libvpx-vp9
<aaabbb> noobaroo: the command you gave should complete very very fast unless it is very large file. if it's not, then paste the entire thing to bpa.st
<aaabbb> he probably means it doesn't give any benefit compared to crf (tho that's technically not true for x264, it gives a miniscule benefit for more accurate direct=auto decisions)
<aaabbb> what codec are you using?
<noobaroo> He said this: https://bpa.st/VTEQ
<noobaroo> I'm using libsvtav1 and it doesn't support 2 pass :( Usually I use 2 pass with libx265
<aaabbb> he's right, it doesn't improve compression efficiency (i think av1 can get better compression efficiency with 2pass? not sure)
bitbinge has quit [Ping timeout: 260 seconds]
<aaabbb> but it does improve the accuracy of decision making which improves quality and gives you a more accurate average bitrate
<noobaroo> libsvtav1 doesn't support 2 pass in ffmpeg :(
<aaabbb> are you sure? you can't use -svtav1-params to do 2pass?
<aaabbb> noobaroo: JEEB said "you wouldn't need 2pass for the non-ABR case", but if you are using -b:v, you are doing abr
cancername has quit [Ping timeout: 255 seconds]
<noobaroo> Actually now that I think again, it may work. It was killing my terminal window every time I tried to use -svtav1-params for 2 pass, but I just had the same problem today while using 1 pass libsvtav1 and I discovered using a different terminal program worked fine
<noobaroo> I'll try again with this new terminal
<aaabbb> i have no idea if it supports 2pass in ffmpeg, i rarely use libsvtav1
zenloading has quit [Quit: Leaving]
<aaabbb> in general though, with the exception of libvpx-vp9, maybe libaom-av1, and libx265 if you're enabling specific options like multi-pass-opt-distortion, the only major benefit from 2pass is more accurate abr. libx264 has a tiny tiny benefit because it can use more temporal direct mvs in 2pass mode, but the benefit is microscopic (and not worth the extra encode time)
<noobaroo> I'm going to wait for the current command to finish before I see if 2 pass works on this new terminal. I don't want to run too many things at once
<galad> libsvtav1 uses three pass
<noobaroo> So for libx265 and libsvtav1, does 2 pass provide higher quality at 2500kbps?
<galad> But the implementation in ffmpeg doesn’t support it
<aaabbb> noobaroo: for libx265, it allows you to enable options that can improve quality. it does not improve quality on its own
<galad> Next version of svtav1 will require only 2, so it will be easier to integrate it in ffmpeg
<aaabbb> s/quality/compression efficiency/
<noobaroo> Aw, that's disappointing. I see 3 passes on https://gitlab.com/AOMediaCodec/SVT-AV1/-/blob/master/Docs/Parameters.md#multi-pass-options But it's weird because -pass can be 1 2 or 3, but -passes can only be 1 or 2.
<aaabbb> noobaroo: because 1 means "one-pass" and 2 means "multi-pass"
<noobaroo> Oh okay. Too bad ffmpeg doesn't support it
<aaabbb> is there a reason you need to use abr?
<noobaroo> I have limited storage space
<aaabbb> you should use crf then
<aaabbb> unless you want to match an exact file size
<noobaroo> So is it normal that -b:v 2500k makes the file less than 1900k?
<aaabbb> it's normal that single pass abr has badly fluctuating quality and comes out with an inaccurate average bitrate, yes
<aaabbb> the reason is that the encoder cannot tell what the rest of the video is like. it can look ahead a little bit but if it sees let's say 20 seconds of calm, it might try to average your 2500k, but then the video has 20 seconds of action, now it's screwed because it has no "surplus" of bits to use
<aaabbb> with 2pass it essentially has infinite lookahead and can say "ok i'll give 1500k to the first calm scene and 3500k to the second action-packed scene"
five6184803 has quit [Remote host closed the connection]
five6184803 has joined #ffmpeg
<aaabbb> by action-packed i mean requiring a higher bitrate for good quality, and by calm i mean requiring lower bitrate
kushal__ has joined #ffmpeg
mccobsta0 has joined #ffmpeg
rodeo_ has joined #ffmpeg
tomaw_ has joined #ffmpeg
mccobsta has quit [Quit: Ping timeout (120 seconds)]
jagannatharjun has quit [Ping timeout: 268 seconds]
rodeo has quit [Ping timeout: 268 seconds]
sopparus has quit [Ping timeout: 268 seconds]
JavaBean has quit [Remote host closed the connection]
chaoticryptidz has quit [Quit: No Ping reply in 180 seconds.]
Faely has quit [Ping timeout: 268 seconds]
Dagger has quit [Ping timeout: 268 seconds]
rodeo_ is now known as rodeo
moviuro_ has joined #ffmpeg
mccobsta0 is now known as mccobsta
NotFaely has joined #ffmpeg
javabean_ has joined #ffmpeg
moviuro has quit [Ping timeout: 268 seconds]
jkhsjdhjs has quit [Ping timeout: 268 seconds]
q66 has quit [Ping timeout: 268 seconds]
The_Blode has quit [Ping timeout: 268 seconds]
foamy has quit [Ping timeout: 268 seconds]
jkhsjdhjs has joined #ffmpeg
kus has quit [Ping timeout: 268 seconds]
blb has quit [Ping timeout: 268 seconds]
kepstin has quit [Ping timeout: 268 seconds]
bcheng has quit [Ping timeout: 268 seconds]
buzel has quit [Ping timeout: 268 seconds]
chaoticryptidz has joined #ffmpeg
The_Blode has joined #ffmpeg
foamy has joined #ffmpeg
blb has joined #ffmpeg
kepstin has joined #ffmpeg
FH_thecat has quit [Quit: Leaving]
buzelAzul has joined #ffmpeg
Dagger has joined #ffmpeg
tomaw has quit [Ping timeout: 633 seconds]
tomaw_ is now known as tomaw
YuGiOhJCJ has joined #ffmpeg
q66 has joined #ffmpeg
sopparus has joined #ffmpeg
jagannatharjun has joined #ffmpeg
YuGiOhJCJ has quit [Remote host closed the connection]
bcheng has joined #ffmpeg
YuGiOhJCJ has joined #ffmpeg
luva has quit [Quit: Ping timeout (120 seconds)]
luva has joined #ffmpeg
zsoltiv_ has quit [Ping timeout: 252 seconds]
zsoltiv_ has joined #ffmpeg
FH_thecat has joined #ffmpeg
System_Error has quit [Remote host closed the connection]
waleee has joined #ffmpeg
System_Error has joined #ffmpeg
five6184803 has quit [Remote host closed the connection]
five6184803 has joined #ffmpeg
Marth64 has quit [Ping timeout: 268 seconds]
Marth64 has joined #ffmpeg
junaid_ has joined #ffmpeg
MisterMinister has quit [Ping timeout: 255 seconds]
System_Error has quit [Ping timeout: 260 seconds]
moviuro_ is now known as moviuro
System_Error has joined #ffmpeg
rv1sr has joined #ffmpeg
Marth64 has quit [Ping timeout: 264 seconds]
Marth64 has joined #ffmpeg
Marth64 has quit [Ping timeout: 240 seconds]
Marth64 has joined #ffmpeg
Marth64 has quit [Ping timeout: 268 seconds]
Marth64 has joined #ffmpeg
xx has joined #ffmpeg
junaid_ has quit [Quit: Lost terminal]
Marth64 has quit [Ping timeout: 264 seconds]
Marth64 has joined #ffmpeg
Haripesch60 has joined #ffmpeg
luc4 has joined #ffmpeg
luc4 has quit [Client Quit]
Keshl has quit [Read error: Connection reset by peer]
Keshl_ has joined #ffmpeg
Suchiman has joined #ffmpeg
MrZeus has joined #ffmpeg
MrZeus has quit [Read error: Connection reset by peer]
Marth64 has quit [Ping timeout: 268 seconds]
Marth64 has joined #ffmpeg
Haripesch60 has quit [Ping timeout: 250 seconds]
kasper93 has quit [Ping timeout: 256 seconds]
JanC has joined #ffmpeg
JanC is now known as Guest1062
Guest1062 has quit [Ping timeout: 255 seconds]
j45 has quit [Ping timeout: 260 seconds]
j45 has joined #ffmpeg
Vonter has quit [Ping timeout: 260 seconds]
Vonter has joined #ffmpeg
e^pi-1 has quit [Ping timeout: 260 seconds]
Ox7C5_ has quit [Quit: Lost terminal]
five6184803 has quit [Remote host closed the connection]
five6184803 has joined #ffmpeg
Traneptora has quit [Quit: Quit]
lavaball has joined #ffmpeg
e^pi-1 has joined #ffmpeg
Marth64 has quit [Ping timeout: 268 seconds]
Marth64 has joined #ffmpeg
MrZeus has joined #ffmpeg
kasper93 has joined #ffmpeg
MrZeus has quit [Read error: Connection reset by peer]
aleeku_ has joined #ffmpeg
MrZeus has joined #ffmpeg
MrZeus has quit [Read error: Connection reset by peer]
evilscreww has joined #ffmpeg
dostoyevsky2 has quit [Ping timeout: 252 seconds]
wwalker has quit [Ping timeout: 252 seconds]
evilscreww has quit [Ping timeout: 250 seconds]
dostoyevsky2 has joined #ffmpeg
wwalker has joined #ffmpeg
theobjectivedad has quit [Read error: Connection reset by peer]
theobjectivedad has joined #ffmpeg
System_Error has quit [Remote host closed the connection]
omegatron has joined #ffmpeg
lavaball has quit [Quit: lavaball]
System_Error has joined #ffmpeg
Blacker47 has joined #ffmpeg
evilscreww has joined #ffmpeg
junaid_ has joined #ffmpeg
Xaldafax has joined #ffmpeg
Vonter has quit [Ping timeout: 264 seconds]
evilscreww has quit [Ping timeout: 250 seconds]
Vonter has joined #ffmpeg
five6184803 has quit [Remote host closed the connection]
five6184803 has joined #ffmpeg
vlm has joined #ffmpeg
lexano has joined #ffmpeg
rvalue has quit [Ping timeout: 272 seconds]
evilscreww has joined #ffmpeg
evilscreww has quit [Ping timeout: 250 seconds]
Marth64 has quit [Ping timeout: 268 seconds]
Marth64 has joined #ffmpeg
rvalue has joined #ffmpeg
System_Error has quit [Ping timeout: 260 seconds]
cxc has joined #ffmpeg
Marth64 has quit [Ping timeout: 252 seconds]
Marth64 has joined #ffmpeg
e^pi-1 has quit [Quit: WeeChat 4.2.1]
MrZeus has joined #ffmpeg
five6184803 has quit [Remote host closed the connection]
five6184803 has joined #ffmpeg
YuGiOhJCJ has quit [Quit: YuGiOhJCJ]
cxc has quit [Quit: EOF from client]
lavaball has joined #ffmpeg
zenloading has joined #ffmpeg
MrZeus_ has joined #ffmpeg
MrZeus has quit [Ping timeout: 240 seconds]
emanuele6 has quit [Read error: Connection reset by peer]
MrZeus_ has quit [Read error: Connection reset by peer]
emanuele6 has joined #ffmpeg
Ox7C5_ has joined #ffmpeg
Marth64 has quit [Ping timeout: 252 seconds]
Marth64 has joined #ffmpeg
MrZeus has joined #ffmpeg
lucasta has joined #ffmpeg
bitbinge has joined #ffmpeg
buzelAzul is now known as buzel
beaver has quit [Quit: Tu ne dois pas utiliser ces options, t'es une personne idiote. Pourquoi dois-je pas les utiliser ?, je ne sais pas. Pourquoi Tor est compromis de par sa conception ? Comment arrive t'on à une compromission ? Je ne sais pas non plus … Elle est bonne l]
beaver has joined #ffmpeg
Tano has quit [Quit: WeeChat 4.1.2]
MrZeus has quit [Read error: Connection reset by peer]
hjckr has quit [Ping timeout: 252 seconds]
jagannatharjun has quit [Quit: Connection closed for inactivity]
beaver has quit [Remote host closed the connection]
beaver has joined #ffmpeg
hjckr has joined #ffmpeg
AbleBacon has joined #ffmpeg
beaver has quit [Quit: - N'utilisez pas Tor, il est vulnérable. Ah oui, tu arrives à l'exploiter toi ? - Non. T'es une agence fédérale ? - Non plus. - N'utilisez pas les options A,B,C, ça peut nuir à votre anonymat sur Tor. Ah oui, comment ? T'as un PoC/Une explication d]
MrZeus has joined #ffmpeg
Marth64 has quit [Ping timeout: 268 seconds]
Marth64 has joined #ffmpeg
MrZeus has quit [Read error: Connection reset by peer]
Tinos has joined #ffmpeg
javabean_ is now known as javabean
junaid_ has quit [Quit: Lost terminal]
Gaboradon has joined #ffmpeg
Tinos has quit [Remote host closed the connection]
Tinos has joined #ffmpeg
lucasta has quit [Quit: Leaving]
beaver has joined #ffmpeg
Marth64 has quit [Ping timeout: 252 seconds]
Marth64 has joined #ffmpeg
cancername has joined #ffmpeg
MrZeus has joined #ffmpeg
JanC has quit [Ping timeout: 255 seconds]
murb has quit [Ping timeout: 268 seconds]
JanC has joined #ffmpeg
Juest has quit [Read error: Connection reset by peer]
MrZeus has quit [Read error: Connection reset by peer]
minimal has joined #ffmpeg
evilscreww has joined #ffmpeg
<evilscreww> i just dont get what im doing wrong here
beaver has quit [Quit: (beaver, n'utilise pas Tor, c'est dangereux.) - Ah oui ? T'as déjà pu désanonymiser une personne toi ?. (Non). (beaver n'utilise pas les options A,B,C, y'a un risque de désanonymisation avec Tor). - T'as un Proof Of Concept de ce sujet ? - Tu connais]
JanC_ has joined #ffmpeg
JanC has quit [Killed (zirconium.libera.chat (Nickname regained by services))]
JanC_ is now known as JanC
murb has joined #ffmpeg
Juest has joined #ffmpeg
theobjectivedad has quit [Read error: Connection reset by peer]
beaver has joined #ffmpeg
raccct has joined #ffmpeg
theobjectivedad has joined #ffmpeg
cancername has quit [Ping timeout: 264 seconds]
beaver has quit [Remote host closed the connection]
MisterMinister has joined #ffmpeg
beaver has joined #ffmpeg
cancername has joined #ffmpeg
bitbinge has quit [Ping timeout: 260 seconds]
Juest has quit [Ping timeout: 268 seconds]
Marth64 has quit [Ping timeout: 252 seconds]
Marth64 has joined #ffmpeg
Juest has joined #ffmpeg
theracermaster has joined #ffmpeg
jagannatharjun has joined #ffmpeg
evilscreww has quit [Remote host closed the connection]
evilscreww has joined #ffmpeg
Tinos has quit [Remote host closed the connection]
Tinos has joined #ffmpeg
vlm has quit [Remote host closed the connection]
vlm has joined #ffmpeg
waleee has quit [Quit: WeeChat 4.1.2]
evilscreww has quit [Remote host closed the connection]
evilscreww has joined #ffmpeg
raccct has quit [Quit: Client closed]
bitbinge has joined #ffmpeg
raccct has joined #ffmpeg
raccct has quit [Ping timeout: 250 seconds]
xx has quit [Ping timeout: 260 seconds]
xx has joined #ffmpeg
beaver is now known as ahahaha
cancername has quit [Read error: Connection reset by peer]
Marth64 has quit [Ping timeout: 252 seconds]
Marth64 has joined #ffmpeg
ivanich has joined #ffmpeg
five6184803 has quit [Remote host closed the connection]
five6184803 has joined #ffmpeg
junaid_ has joined #ffmpeg
bitbinge has quit [Ping timeout: 260 seconds]
evilscreww has quit [Remote host closed the connection]
ahahaha is now known as beaver
MrZeus has joined #ffmpeg
iive has joined #ffmpeg
Marth64 has quit [Ping timeout: 268 seconds]
Marth64 has joined #ffmpeg
MisterMinister has quit [Ping timeout: 255 seconds]
minimal has quit [Quit: Leaving]
tips_ has joined #ffmpeg
Traneptora has joined #ffmpeg
zenloading has quit [Ping timeout: 252 seconds]
Tano has joined #ffmpeg
omegatron has quit [Quit: Power is a curious thing. It can be contained, hidden, locked away, and yet it always breaks free.]
MisterMinister has joined #ffmpeg
hamzah has joined #ffmpeg
MrZeus has quit [Read error: Connection reset by peer]
ivanich has quit [Remote host closed the connection]
Livio has joined #ffmpeg
yans has joined #ffmpeg
beaver has quit [Quit: Totalement idiot]
beaver has joined #ffmpeg
Haxxa has quit [Quit: Haxxa flies away.]
Haxxa has joined #ffmpeg
waleee has joined #ffmpeg
MrZeus has joined #ffmpeg
hamzah has quit [Quit: Client closed]
MrZeus has quit [Read error: Connection reset by peer]
MrZeus has joined #ffmpeg
johnmcnuggets has joined #ffmpeg
MrZeus has quit [Read error: Connection reset by peer]
MrZeus has joined #ffmpeg
MrZeus has quit [Read error: Connection reset by peer]
MrZeus has joined #ffmpeg
MrZeus has quit [Read error: Connection reset by peer]
MrZeus has joined #ffmpeg
averne has quit [Quit: quit]
fling has quit [Remote host closed the connection]
fling has joined #ffmpeg
robobub has joined #ffmpeg
raccct has joined #ffmpeg
raccct has quit [Client Quit]
junaid_ has quit [Remote host closed the connection]
theobjectivedad has quit [Ping timeout: 260 seconds]
theobjectivedad has joined #ffmpeg
man84 has joined #ffmpeg
Tinos has quit [Remote host closed the connection]
Tinos has joined #ffmpeg
junaid_ has joined #ffmpeg
raccct has joined #ffmpeg
averne has joined #ffmpeg
five6184803 has quit [Remote host closed the connection]
five6184803 has joined #ffmpeg
cancername has joined #ffmpeg
ivanich has joined #ffmpeg
averne_ has joined #ffmpeg
averne has quit [Ping timeout: 268 seconds]
averne_ is now known as averne
ivanich_ has joined #ffmpeg
ivanich has quit [Read error: Connection reset by peer]
ivanich_ has quit [Read error: Connection reset by peer]
raccct has quit [Quit: Client closed]
hamzah has joined #ffmpeg
averne has quit [Quit: quit]
averne has joined #ffmpeg
Blacker47 has quit [Quit: Life is short. Get a V.90 modem fast!]
junaid_ has quit [Quit: Lost terminal]
System_Error has joined #ffmpeg
System_Error has quit [Remote host closed the connection]
System_Error has joined #ffmpeg
averne has quit [Ping timeout: 252 seconds]
averne has joined #ffmpeg
JanC has quit [Ping timeout: 255 seconds]
JanC has joined #ffmpeg
Teraii has quit [Quit: %Ho Ishuudaa%]
Ox7C5_ has quit [Quit: Lost terminal]
johnmcnuggets has quit [Quit: Leaving]
rv1sr has quit []
Teraii has joined #ffmpeg
jagannatharjun has quit [Quit: Connection closed for inactivity]
bitbinge has joined #ffmpeg
beaver has quit []
ppw has left #ffmpeg [#ffmpeg]
beaver has joined #ffmpeg
beaver has quit [Remote host closed the connection]
NotFaely is now known as Faely
beaver has joined #ffmpeg
lavaball has quit [Remote host closed the connection]
beaver is now known as thanks
noobaroo has quit [Quit: Konversation terminated!]
thanks is now known as in
in has left #ffmpeg [#ffmpeg]
Marth64 has quit [Ping timeout: 272 seconds]
Marth64 has joined #ffmpeg
Tinos has quit [Remote host closed the connection]
Tinos has joined #ffmpeg
bitbinge has quit [Ping timeout: 260 seconds]
minimal has joined #ffmpeg
Marth64 has quit [Ping timeout: 252 seconds]
beaver has joined #ffmpeg
Marth64 has joined #ffmpeg
beaver is now known as en_detente
en_detente has quit [Remote host closed the connection]
gchound has joined #ffmpeg
beaver has joined #ffmpeg
cancername has quit [Ping timeout: 272 seconds]
beaver has quit [K-Lined]
Tinos has quit [Ping timeout: 250 seconds]
five6184803 has quit [Remote host closed the connection]
five61848033 has joined #ffmpeg
averne has quit [Quit: quit]
averne has joined #ffmpeg
intrac has quit [Quit: Konversation terminated!]
intrac has joined #ffmpeg
Marth64 has quit [Ping timeout: 252 seconds]
Marth64 has joined #ffmpeg
intrac has quit [Ping timeout: 246 seconds]
bitbinge has joined #ffmpeg
intrac has joined #ffmpeg
zmt01 has joined #ffmpeg
vlm has quit [Quit: Leaving]
zmt00 has quit [Ping timeout: 264 seconds]
Marth64 has quit [Ping timeout: 268 seconds]
Marth64 has joined #ffmpeg
SuicideShow has quit [Ping timeout: 272 seconds]
SuicideShow has joined #ffmpeg
bitbinge has quit [Ping timeout: 260 seconds]
xx has quit [Ping timeout: 260 seconds]
Tinos has joined #ffmpeg
Marth64 has quit [Ping timeout: 252 seconds]
Marth64 has joined #ffmpeg
Marth64 has quit [Remote host closed the connection]
noobaroo has joined #ffmpeg