[Ffmpeg-devel-irc] ffmpeg.log.20150622

burek burek021 at gmail.com
Tue Jun 23 02:05:01 CEST 2015


[00:04:11 CEST] <justinX> hi poop. The only thing I can see about keyframe options are minimum/maximum/disable ?
[00:06:19 CEST] <poop> justinX: -g 1 works, but the video looks poor and the file sizes are really large.
[00:06:20 CEST] <justinX> would "...  imposed upon WebM files, over and above the Matroska counterpart  ...  and keyframes stored at the beginning of clusters" be related?
[00:07:03 CEST] <justinX> I mean, do .webm always do what you want?
[00:08:00 CEST] <poop> I have several webm files where the clusters begin with keyframes, but I didn't do the encoding.
[00:08:08 CEST] <poop> I need "Key frames SHOULD be placed at the beginning of clusters."
[00:08:46 CEST] <poop> Wish they put a 'MUST' there...
[00:11:25 CEST] <justinX> ah
[00:13:44 CEST] <poop> I'm going to check my output with mkvalidator instead of my own program. Maybe this is an error on my part.
[00:23:21 CEST] <poop> So much for that.
[00:29:01 CEST] <poop> justinX: The error was in my program, not ffmpeg side. Thanks for your help!
[00:41:12 CEST] <justinX> ok
[03:38:29 CEST] <meandrain> hi. Any idea if it is possible to adnotate a video (with text comments over it) with ffmpeg?
[03:38:47 CEST] <c_14> Annotate in what way?
[03:38:56 CEST] <meandrain> it is ok if text is encoded into frame (it does not need to be like a subtitle)
[03:39:03 CEST] <c_14> drawtext
[03:39:25 CEST] <c_14> that or ass subtitles
[03:39:34 CEST] <meandrain> Let's say I want to make a video to explain to somebody how to install an app. I have the video but I don't want audio, just to add some texts to it
[03:39:46 CEST] <c_14> drawtext
[03:39:51 CEST] <meandrain> yes
[03:40:22 CEST] <c_14> https://ffmpeg.org/ffmpeg-filters.html#drawtext-1
[03:40:32 CEST] <meandrain> c_14 thanx
[04:11:09 CEST] <knock_knock> How can I find errors in a h246 file?
[04:21:15 CEST] <c_14> You want to find out if there are errors, or you want the specific spot?
[04:29:43 CEST] <knock_knock> specific spot
[04:29:58 CEST] <knock_knock> I know there are errors, I just dont know what they are or where
[04:41:18 CEST] <c_14> You could try `ffmpeg -i video -f null /dev/null' and then look how far it got in the video before it died
[04:41:24 CEST] <c_14> That'll give you the first point.
[04:41:37 CEST] <c_14> Then find the first seekpoint after that where it works.
[04:41:44 CEST] <c_14> And then the point where it dies next, etc.
[04:41:52 CEST] <c_14> Not sure if there's a way to just find all the broken points.
[04:42:31 CEST] <knock_knock> can ffmpeg find a pattern of broken points? Like if theres a break every n bytes or NALs or something?
[04:43:44 CEST] <c_14> If you leverage the api, maybe. Don't think the cli will do it.
[04:45:13 CEST] <knock_knock> I'm getting a lot of "concealing 140 DC, 140 AC, 140 MV errors", how can I show those errors?
[04:46:02 CEST] <c_14> loglevel debug maybe?
[04:47:10 CEST] <knock_knock> Thanks, will try. When I get an output h264 @ 0xsomeaddr, that's a memory address, right? Not in the input file?
[04:47:36 CEST] <c_14> pretty sure, ye
[04:47:53 CEST] <knock_knock> Thanks
[04:49:56 CEST] <knock_knock> Is there a way to show the address in the file where the error occurs? I'm getting some useful errors now, but I'm not sure where in the file the errors are.
[04:53:02 CEST] <c_14> Maybe, I don't know of one though.
[07:46:31 CEST] <siphon> ffmpeg adds seek information to live webm when I pipe the output to a tcp socket.
[07:46:42 CEST] <siphon> I think this is because I added '-f webm'.
[07:46:52 CEST] <siphon> Is there any way to not have this seek information included?
[07:48:05 CEST] <siphon> (SeekHead, Seek, SeekID, SeekPosition EBML elements)
[08:22:58 CEST] <gurpartap1> I want to run ffmpeg command on the terminal emulator of my android phone. Any idea how I can install ffmpeg on my android phone?
[09:36:51 CEST] <feliwir> hey i keep getting undefined references for ffmpeg eventhough i link all libraries
[09:45:54 CEST] <feliwir> i've built both ffmpeg & my program with the latest gcc version (from github)
[09:46:32 CEST] <feliwir> is there a way to get the compiler version that was used for ffmpeg compilation
[09:47:03 CEST] <c_14> `ffmpeg -version' should print it
[09:48:34 CEST] <feliwir> ah thanks. Hm it used gcc 6.0, just like my program did. I link against all ffmpeg libraries, but i still get things like: "undefined reference to av_gettime_relative
[09:49:12 CEST] <c_14> configure line?
[09:49:53 CEST] <feliwir> http://pastebin.com/DRF7qYTg
[09:55:11 CEST] <c_14> Does it work with just ./configure ?
[09:55:42 CEST] <feliwir> c_14: i didn't test that, but my laptop would need hours to compile everything
[09:56:05 CEST] <c_14> any errors in config.log ?
[09:56:09 CEST] <c_14> especially near the end?
[09:58:55 CEST] <feliwir> c_14: no, not a single error
[09:59:43 CEST] <c_14> That exact configure line works for me with gcc 4.9.2 on git HEAD
[10:01:04 CEST] <feliwir> i can you show you my link configuration maybe i screwed that: http://pastebin.com/B85GqjVJ
[10:01:12 CEST] <feliwir> ( it looks a bit ugly due to cmake)
[10:02:16 CEST] <c_14> Wait, are you linking your own program against the libraries?
[10:02:32 CEST] <feliwir> c_14: yes
[10:02:59 CEST] <c_14> Did you include libavutil/time.h ?
[10:03:28 CEST] <feliwir> not anywhere in my program
[10:03:54 CEST] <feliwir> just avcodec.h, avformat.h and swresample
[10:06:00 CEST] <c_14> Hmm, the linker flags look fine.
[10:07:02 CEST] <feliwir> when in try to use ffplay on a file i keep getting: protocol not found. What does that mean?
[10:08:57 CEST] <c_14> You disabled the file protocol with --disable-everything and never enabled it
[10:09:14 CEST] <c_14> *reenabled
[10:09:28 CEST] <feliwir> hm. I try a normal ./configure and write here if it works then
[10:10:09 CEST] <feliwir> where can i report bugs by the way? There is a mistake in EAprobe
[10:10:23 CEST] <c_14> https://ffmpeg.org/bugreports.html
[10:11:47 CEST] <c_14> If you still can't get it to work with the regular ./configure; you might want to ask on the libav-user at ffmpeg.org mailing list
[10:15:06 CEST] <feliwir> hm there are 1000 open bugs, so i should maybe try to fix the bug myself? It doesn't seem like they are dealt with that fast
[10:15:29 CEST] <c_14> Depends on the bug. Some of those are feature requests, some are difficult to track down etc
[10:15:40 CEST] <c_14> Fixing the bug yourself and sending a patch to the ml is always appreciated though.
[10:16:09 CEST] <feliwir> The bug is that ffmpeg chooses the wrong codec for vp6a files (vp6 files with alpha)
[10:16:33 CEST] <feliwir> so each of those files isn't loadable
[10:18:02 CEST] <c_14> Might be an easy fix, but I'm not acquainted with that part of the codebase.
[10:18:17 CEST] <c_14> If you can fix it yourself, https://ffmpeg.org/developer.html#Submitting-patches
[10:19:58 CEST] <feliwir> oh. It sounds very complicated :-/ I thought i could just make a PR
[10:20:30 CEST] <c_14> The mailing list is preferred. Easier for people to track.
[10:20:33 CEST] <c_14> It's not that complicated.
[10:20:49 CEST] <c_14> As long as you follow the coding guidelines and don't break fate, you can just use git send-email to send your patch to the ml
[10:21:33 CEST] <c_14> (attaching the patch to an email is fine too, it's just more likely to break depending on your mail client)
[10:22:29 CEST] <feliwir> i never used mailing lists and i don't have a mail client except the one inside of the browser
[10:23:13 CEST] <feliwir> by the way i just recompiled ffmpeg with only "./configure". Bugs are still the same
[10:24:17 CEST] <c_14> try the libav-user at ffmpeg.org mailing list. Make sure to describe your problem and provide snippets of the actual errors. Maybe someone there knows what's going on.
[10:29:05 CEST] <siphon> Anyone have experience with sending output to a tcp port?
[10:30:10 CEST] <siphon> The output to a file is different than what I'm receiving using tcp.
[10:43:21 CEST] <anoop_r> http://pastebin.com/n3qcbq8R
[10:43:54 CEST] <anoop_r> please help me
[10:44:03 CEST] <anoop_r> which componet i miss
[10:45:53 CEST] <anoop_r> component i miss
[11:22:43 CEST] <feliwir> does anyone see something wrong here: http://pastebin.com/8i9g4KLx ?
[11:26:34 CEST] <feliwir> it's a minimal program showing my linker error
[11:31:20 CEST] <cbsrobot_> feliwir: where is your libavutil/avutil.h ?
[11:32:16 CEST] <feliwir> cbsrobot_: it's in /usr/local/include
[11:33:18 CEST] <feliwir> ah it's called avcodec_alloc_frame now?
[11:38:19 CEST] <feliwir> however when i fixed it i get even more errors: http://hastebin.com/umumemobil.text
[11:39:12 CEST] <gurpartap1> Is it possible in ffmpeg to sync audio and video to system clock?
[11:39:14 CEST] <chama> when did the eq filter introduce to ffmpeg?
[11:39:50 CEST] <chama> in ffmpeg 2.4.2 it says
[11:39:50 CEST] <chama> No such filter: 'eq'
[11:40:13 CEST] <gurpartap1> relaxed: Is it possible in ffmpeg to sync audio and video to system clock?
[11:40:48 CEST] <gurpartap1> relaxed_: Is it possible in ffmpeg to sync audio and video to system clock?
[11:42:09 CEST] <feliwir> someone had the same errors like me before?
[11:58:18 CEST] <gurpartap1> Venti : Is it possible in ffmpeg to sync audio and video to system clock?
[11:58:30 CEST] <gurpartap1> trn: Is it possible in ffmpeg to sync audio and video to system clock?
[12:02:58 CEST] <feliwir> how can i convert to vp6 with ffmpeg by then way? when i use -f vp6 it says thats not a suitable output format
[12:14:58 CEST] <feliwir> and how do i set the background color in ffplay?
[12:23:32 CEST] <feliwir> is saw that there is a colors option, but i don't know how to set the background color
[12:27:37 CEST] <staysix> Hello, is FFmpeg capable of online/real-time downsampling?
[12:51:46 CEST] <rachelfish> hi there #ffmpeg is there any way to make a composite of two videos with a chroma key / greenscreen?
[12:58:43 CEST] <gurpartap1> wcpan_: Is it possible in ffmpeg to sync audio and video to system clock?
[13:00:12 CEST] <wcpan_> I don't think there is a flag to do so, you can use ffmpeg library
[13:04:57 CEST] <BtbN> There is no chroma key filter in ffmpeg.
[13:05:03 CEST] <staysix> Hi, is FFmpeg capable of online/real-time downsampling?
[13:05:35 CEST] <BtbN> ffmpeg git has a color key filter now, which operates on RGB colors, and isn't exactly fast yet.
[13:05:53 CEST] <BtbN> It can do somewhat ok greenscreen filtering, but a chrome key filter would be better.
[13:06:56 CEST] <gurpartap1> Btbn:  Is it possible in ffmpeg to sync audio and video to system clock?
[13:08:00 CEST] Last message repeated 1 time(s).
[13:08:23 CEST] <BtbN> It still syncs audio and video automaticaly based on their timestamps.
[13:08:43 CEST] <BtbN> If your device gives you broken timestamps, there's not much you can do about it, specialy when it's not a static offset.
[13:11:56 CEST] <durandal_1707> rachelfish: there is colorkey
[13:12:05 CEST] <rachelfish> What's the difference?
[13:12:32 CEST] <rachelfish> colorkey only works on a specific color vs a range of colors?
[13:13:19 CEST] <durandal_1707> depends who good is your greenscreen
[13:13:34 CEST] <durandal_1707> *how
[13:16:38 CEST] <BtbN> colorkey = operates on RGB colors
[13:16:42 CEST] <BtbN> chromakey = YUV
[13:17:10 CEST] <BtbN> As most videos are YUV, colorkey is not optimal at all, and degrades quality and performance
[13:17:33 CEST] <BtbN> Also, the colorkey filter is not yet optimized at all, so it's very slow.
[13:23:51 CEST] <gurpartap1> BtnN: please can you review my commandline?
[13:26:46 CEST] <jcorneli> I've been experimenting with creating "screencast" videos using ffmpeg
[13:26:55 CEST] <jcorneli> This works fine: ffmpeg -f alsa -i pulse -f x11grab -r 30 -s 1280x720 -i :0.0+5,0 -acodec libvorbis -vcodec huffyuv output.avi
[13:27:07 CEST] <jcorneli> However, when I try to convert the AVI files to WEBM, I get choppy audio
[13:27:44 CEST] <jcorneli> Can anyone suggest a formula for converting to WEBM?
[13:28:19 CEST] <jcorneli> I've also tried directly recording to WEBM, but the audio drops out.
[13:29:13 CEST] <jcorneli> What I tried for converting the API is: ffmpeg -i output.avi -c:v libvpx -minrate 1M -maxrate 1M -b:v 1M -qscale 8 output.webm
[13:29:24 CEST] <gurpartap1> BtbN: here is http://pastebin.com/DZsMipy1 commandline options
[13:43:30 CEST] <jcorneli> aha, I think I figured it out
[13:44:12 CEST] <jcorneli> The initial recording should use a less compressed audio format, like this: ffmpeg -f alsa -i pulse -f x11grab -r 30 -s 1280x720 -i :0.0+5,0 -acodec libvo_aacenc -vcodec huffyuv output.avi
[13:44:26 CEST] <jcorneli> then the command for conversion seems to work fine.
[14:39:02 CEST] <feliwir> c_14: git send-mail doesn't seem to be a valid command
[14:43:32 CEST] <feliwir> how do i send patches when git send-mail isn't working?
[14:43:47 CEST] <BtbN> git send-email is a very valid command.
[14:44:26 CEST] <feliwir> git: 'send-email' is not a git command. See 'git --help'.
[14:46:21 CEST] <BtbN> Your git installation is damaged then
[14:46:47 CEST] <feliwir> BtbN: my git installation is very fresh from the debian repositories
[14:51:30 CEST] <feliwir> ah it's a seperate package
[15:12:47 CEST] <feliwir> can someone tell me what i do need to pass to git send-email when my patch is ready? I've never used that command before
[15:24:51 CEST] <feliwir> anyone please? I have really no idea how to submit my commit with git send-email
[15:29:24 CEST] <durandal_1707> you can send patch as attachment
[15:30:00 CEST] <feliwir> durandal_1707: would this be okay as patch: http://pastebin.com/QqGP2BE7 ?
[15:30:29 CEST] <feliwir> i'd like to add an example file
[15:31:39 CEST] <durandal_1707> Looks like you already sent it
[15:31:48 CEST] <feliwir> i made a dry run
[15:31:59 CEST] <feliwir> or did you receive something? :D
[15:32:16 CEST] <durandal_1707> You can reply to mail with example file
[15:32:44 CEST] <durandal_1707> or edit patch with link in it
[15:32:49 CEST] <feliwir> seems ok. I am really not used to mailing lists :(
[15:35:38 CEST] <feliwir> ohm: Need MIME::Base64 and Authen::SASL todo auth at /usr/lib/git-core/git-send-email line 1262.
[15:36:05 CEST] <feliwir> what do i need to install?
[15:37:24 CEST] <spaam> what dist?
[15:37:30 CEST] <feliwir> linux mint
[15:38:22 CEST] <spaam> feliwir: libauthen-sasl-perl and libmime-base64-perl
[15:39:58 CEST] <feliwir> thanks spaam. Now i get this: Please log in via your web browser and then try again.
[15:41:54 CEST] <feliwir> got it :)
[15:47:05 CEST] <Nico__> Hi ! I have some problem to compile ffmpeg with nbk for android application. It return that : Makefile:2: config.mak: No such file or directory Makefile:59: /common.mak: No such file or directory Makefile:100: /libavutil/Makefile: No such file or directory Makefile:100: /library.mak: No such file or directory Makefile:102: /doc/Makefile: No such file or directory Makefile:185: /tests/Makefile: No such file or directory make: *** No r
[15:47:25 CEST] <Nico__> I'm using Windows 8 with Cygwin
[15:48:25 CEST] <Nico__> Can someone help me please ?
[15:54:38 CEST] <Mavrik> Doesn't the app come with a proper NDK compile script?
[15:54:43 CEST] <Mavrik> Or do you have to compile ffmpeg yourself?
[15:54:57 CEST] <Nico__> I have to do myself
[15:55:48 CEST] <Mavrik> well then run configure first.
[15:55:56 CEST] <spectromas> does anyone know of a way to recognize the lame preset use for an mp3 file (V0, V2 etc)?
[15:56:21 CEST] <Nico__> Ok I try
[15:58:42 CEST] <Nico__> ok
[15:58:51 CEST] <Nico__> i return "C compiler test failed."
[15:59:05 CEST] <Nico__> it*
[16:01:03 CEST] <Nico__> My command "gcc", used for compile, return an error
[16:01:24 CEST] <Nico__> And i don't know how to use it with Win8.1
[16:02:30 CEST] <Nico__> Tried on an Ubuntu VM, doesn't work too
[16:25:37 CEST] <proserpine-> whats the prefered video/audio encoding for faster youtube processing?
[16:28:04 CEST] <Nico__> Proserpine : avi i think
[16:33:31 CEST] <Mavrik> proserpine-, https://support.google.com/youtube/answer/1722171?hl=en
[16:34:20 CEST] <proserpine-> i'm trying ot convert an audio file to video by looping an image at 1fps
[16:34:27 CEST] <proserpine-> it gets uploaded fine but stuck at processing
[16:34:44 CEST] <Mavrik> 1 fps video can cause issues yes.
[16:37:15 CEST] <proserpine-> use libvo_aacenc?
[16:37:17 CEST] <proserpine-> or which one
[16:49:28 CEST] <proserpine-> hmm i use ffmpeg  -loop 1 -r 2 -i blank-240p.png -i audio.aac -c:a libvo_aacenc -ab 44100 -ar 48000 -ac 2 -b:a 128k -shortest -pix_fmt yuv420p video.mp4
[16:49:37 CEST] <proserpine-> let's see how fast youtube will process it
[16:54:23 CEST] <proserpine-> hmm took 5 mins for 2 hours long audio, not bad :)
[16:55:49 CEST] <chungy> youtube accepts just about anything
[16:56:06 CEST] <Mavrik> proserpine-, fdk-aac is the best of the AAC encoders
[16:56:10 CEST] <Mavrik> in ffmpeg
[16:58:37 CEST] <proserpine-> Mavrik: it's not included in static build of ffmpeg? i think i need to compile myself :(
[16:59:09 CEST] <Mavrik> yeah, license forbids distribution of compiled ffmpeg with fdk-aac
[16:59:18 CEST] <proserpine-> ah i see
[17:01:54 CEST] <proserpine-> fiy "ffmpeg  -loop 1 -r 2 -i blank.png -i audio.aac -c:v libx264 -preset medium -tune stillimage -crf 0 -c:a libvo_aacenc -ab 44100 -ar 48000 -ac 2 -b:a 128k -shortest -pix_fmt yuv420p video.mkv" seems to be processed fastest with youtube
[19:06:38 CEST] <feliwir> is carl in here?
[19:21:52 CEST] <durandal_1707> no
[19:23:46 CEST] <feliwir> durandal_1707, did you read my patch? Because carl was unable to reproduce the error it fixed
[19:31:10 CEST] <durandal_1707> yes I read it and I'm little confused what you are attempting to do
[20:20:35 CEST] <feliwir> durandal_1707, did you test the file i've provided?
[20:22:07 CEST] <durandal_1707> it is only missing probe check
[20:22:38 CEST] <feliwir> durandal_1707, yes that's what i added
[20:22:44 CEST] <feliwir> if i am not mistaken :D
[20:23:03 CEST] <durandal_1707> First 4 bytes so format is guessed
[20:23:24 CEST] <durandal_1707> No you added it in wrong place
[20:23:36 CEST] <feliwir> durandal_1707, i added it in ea_probe
[20:23:48 CEST] <feliwir> seemed like the probe function to me
[20:25:31 CEST] <durandal_1707> in patch it is under process_ea_header
[20:26:23 CEST] <feliwir> ohm. I added it in ea_probe and process_ea_header i think
[20:27:57 CEST] <feliwir> might be the case that i failed with that mailing list stuff though -.-
[20:28:46 CEST] <durandal_1707> yes, clean up code and start again
[20:29:05 CEST] <feliwir> mailing lists are a stupid concept -.-
[20:29:40 CEST] <llogan> what method would you prefer instead?
[20:30:28 CEST] Action: llogan switches to twitter to perform reviews
[20:31:24 CEST] <feliwir> llogan, pull requests on github
[20:32:00 CEST] <llogan> another person wants to use something called reviewboard
[20:35:49 CEST] <feliwir> i can't even see what i changed on that e-mail list -.-
[20:36:13 CEST] <feliwir> brb
[20:36:38 CEST] <llogan> i'm beginning to feel old
[20:39:50 CEST] <feliwir> how do i attach a new .diff to the email conversation?
[20:46:11 CEST] <llogan> feliwir: what client are you using?
[20:46:24 CEST] <feliwir> llogan, gmail browser client? :D
[20:46:46 CEST] <llogan> oh, FIIK. sorry.
[20:47:07 CEST] <c_14> feliwir: probably just reply to the email and attach a patch?
[20:47:11 CEST] <c_14> make sure you don't top-post
[20:49:16 CEST] <feliwir> okay. I like how everyone is thinking that i meant a real crash in the e-mail conversation -.-
[20:59:05 CEST] <feliwir> c_14, llogan i attached a new .diff now without tabs and only with the changes required
[21:04:08 CEST] <dericed> hi all, anyone else attending IETF93 in Prague?
[21:13:42 CEST] <llogan> dericed: i'm not, but you could ask in ffmpeg-devel
[21:14:43 CEST] <dericed> llogan: might do that on friday. By then we can confirm that ffv1 and mkv are on the agenda.
[21:18:12 CEST] <llogan> are you just attending, or also giveing a presentation?
[21:19:04 CEST] <dericed> i may not attend, but I think Tessa Fallon is organizing a presentation (pending agenda). Jerome Martinez (mediainfo) will be there too, he's been working on the ffv1 spec lately.
[21:22:03 CEST] <pjw> I have a question about a crash I'm running into, I'll open a bug but wanted to see if others are running into this.  I run Gentoo, have ffmpeg-2.6.3, with libavcodec.so.56.26.100.  Using handbrake trying to encode a Blu Ray source with PGS subtitles, handbrake crashes in libavcodec, in avcodec_decode_subtitle2().  This machine used to be able to encode Blu Rays with this setup before no problem, and an update in the past couple of months
[21:22:03 CEST] <pjw> seems to have broken things.  Anyone seeing this crash at all?
[21:22:42 CEST] <pjw> gdb backtrace is unfortunately small, but definitely leads to avcodec_decode_subtitle2() in libavcodec.so.56
[21:23:32 CEST] <pjw> Also worth noting is I tried two different Blu Ray sources, same result.
[21:24:04 CEST] <c_14> Please test with current git FFmpeg and without Handbrake.
[21:24:27 CEST] <pjw> Will do, thanks!
[21:56:19 CEST] <Wolfgange> How would I specify the audio bitrate of a raw audio input? Currently ffmpeg attempts to guess it, and gets it wrong resulting in a high pitch, sped up audio. I've looked on the ffmpeg help and did not see an option for that
[21:56:56 CEST] <c_14> You mean the samplerate?
[21:56:57 CEST] <c_14> -ar
[21:57:21 CEST] <Wolfgange> Maybe that's what I need
[22:01:41 CEST] <Wolfgange> No, I noticed I get "Estimating duration from bitrate, this may be innaccurate". Is there a way to specify duration?
[22:04:00 CEST] <c_14> That shouldn't matter. That's just a guess assuming cbr and taking the filesize into account. When ffmpeg processes the file it'll get the real time.
[22:05:49 CEST] <Wolfgange> I bet I have a raw audio file that was processed with different settings
[22:11:19 CEST] <feliwir> how many guys have to review a patch?
[22:11:38 CEST] <c_14> At least one.
[22:11:54 CEST] <c_14> It might sit for a week or so to ensure nobody has issues with it though.
[22:12:19 CEST] <c_14> Wolfgange: when you say "raw audio file" do you mean pcm?
[22:12:32 CEST] <Wolfgange> Yes
[22:13:28 CEST] <c_14> The bitrate of a raw pcm file is firmly decided by 2 characteristics, the bit depth and the samplerate
[22:13:45 CEST] <Wolfgange> It was due to the sample rate actually being 22050 rather than 44100. Thanks everyone.
[22:14:42 CEST] <feliwir> c_14, that sounds really sad considering the fact that only 2 lines were added/changed :D
[22:16:29 CEST] <c_14> It's to ensure that a decent sized number of people have a chance to comment on all changes.
[00:00:00 CEST] --- Tue Jun 23 2015


More information about the Ffmpeg-devel-irc mailing list