lossyFlac conversion with foobar-> corrupted length value, After conversion wrong number of samples, duration display |
![]() ![]() |
lossyFlac conversion with foobar-> corrupted length value, After conversion wrong number of samples, duration display |
Apr 3 2010, 15:36
Post
#1
|
|
|
Group: Members Posts: 32 Joined: 15-November 03 From: Munich Member No.: 9858 |
Hi,
I converted a bunch of flac files to lossyWav/lossyFlac with foobar (1.0.1). Foobar and Mr.Questionman report a ridiculous high duration and number of samples (see attachment). Screenshot Here is the command line I used in foobar: /d /c E:\p\Audio\lossyWAV_1.2.0\lossywav - --standard --altpreset --silent --stdout|E:\p\Audio\flac-1.2.1-win\bin\flac - -b 512 -5 -T comment="lossyWav aps" -f -o%d What goes wrong here? How could I (automatically) correct the metadata? Cheers johnb This post has been edited by johnb: Apr 3 2010, 15:48 |
|
|
|
Apr 3 2010, 17:34
Post
#2
|
|
![]() Group: Developer Posts: 1230 Joined: 27-June 07 Member No.: 44789 |
Do you get the correct sample length / duration if you use this command line? :
CODE /d /c E:\p\Audio\lossyWAV_1.2.0\lossywav - --standard --altpreset --silent --stdout|E:\p\Audio\flac-1.2.1-win\bin\flac - -b 512 -5 -f -o %d By the way your command line has a space missing: QUOTE -f -o%d Should be: CODE -f -o %d That's all I can think is a problem at the moment. C. EDIT: Command line space correction added This post has been edited by carpman: Apr 3 2010, 17:38 -------------------- TAK -p4m :: LossyWAV -q 6 | TAK :: Lame 3.98 -V 2
|
|
|
|
Apr 3 2010, 18:32
Post
#3
|
|
|
Group: Members Posts: 32 Joined: 15-November 03 From: Munich Member No.: 9858 |
Carpman, thanks for your answer.
The command line was basically taken from the Wiki: http://wiki.hydrogenaudio.org/index.php?ti...verter_settings There the space is also missing ... However, I added the space, still the same result. As for the sample count: no it is wrong, i.e. 107 3741 823 in flossy vs. 45 789 041 in flac. I suppose this is also why the display reports a bitrate of 8kbits/s ;-) |
|
|
|
Apr 4 2010, 01:16
Post
#4
|
|
![]() Group: Developer Posts: 1230 Joined: 27-June 07 Member No.: 44789 |
All I can add is that it's odd, as your command line for FLAC is identical to mine apart from:
the "--altpreset" switch and: QUOTE -T comment="lossyWav aps" So if it's neither of those, then why this happens I haven't a clue. Perhaps one of the experts will be able to help out. C. -------------------- TAK -p4m :: LossyWAV -q 6 | TAK :: Lame 3.98 -V 2
|
|
|
|
Apr 4 2010, 11:29
Post
#5
|
|
|
Group: Members Posts: 32 Joined: 15-November 03 From: Munich Member No.: 9858 |
I removed the --altpreset and -T in the converter setting with unfortunately the same result!
In order to analyze this further, I did the following at the dos prompt: - converted the original flac to wav - applied lossywav - encoded to flac => the resulting flac is correct regarding duration, # of samples, bitrate So I thought, let's convert the wav by means of the foobar converter with the already mentioned command line. => the resulting flac shows again the original symptoms I have no clue! johnb |
|
|
|
Apr 4 2010, 15:35
Post
#6
|
|
![]() lossyWAV Developer Group: Developer Posts: 1722 Joined: 11-April 07 From: Wherever here is Member No.: 42400 |
Looking at the size of the file, the audio data of the output file is as big as it can be in a compliant RIFF WAV file. The input file exceeds the size limit. That is why the audio has been cut short.
-------------------- lossyWAV -q X | FLAC -8 ~= 308kbps
SGS III (Rooted) + 64GB |
|
|
|
Apr 4 2010, 16:28
Post
#7
|
|
|
Group: Members Posts: 32 Joined: 15-November 03 From: Munich Member No.: 9858 |
Hi Nick.C,
maybe I have failed to describe the screenshot properly. The first file in the playlist is the flac file, the second is the lossyflac file. As a matter of fact, the real duration of each is 7min 11s. The first is about 40MB, the second 23MB in file size. So I don't think the files exceed any limit. I think it boils down to the question, how this large number of samples is set in the conversion. The audio in the lossyflac file ends after the 7.11min when playing in foobar. Cheers johnb This post has been edited by johnb: Apr 4 2010, 16:32 |
|
|
|
Apr 4 2010, 17:33
Post
#8
|
|
![]() lossyWAV Developer Group: Developer Posts: 1722 Joined: 11-April 07 From: Wherever here is Member No.: 42400 |
Hmmmm.... When piping (into lossyWAV, etc.) from foobar the apparent data length is the maximum for the RIFF container. When foobar stops sending audio data then lossyWAV closes and then FLAC closes and writes the size of the audio data into the FLAC header. This looks strange to me as I have never encountered the phenomenon during all of the development period of lossyWAV.
-------------------- lossyWAV -q X | FLAC -8 ~= 308kbps
SGS III (Rooted) + 64GB |
|
|
|
Apr 4 2010, 19:14
Post
#9
|
|
![]() Group: Developer Posts: 1230 Joined: 27-June 07 Member No.: 44789 |
Just a thought, but would it be worth johnb trying the same thing with WavPack or TAK? If they came out okay then it would suggest it's a FLAC issue?
C. -------------------- TAK -p4m :: LossyWAV -q 6 | TAK :: Lame 3.98 -V 2
|
|
|
|
Apr 4 2010, 20:13
Post
#10
|
|
|
Group: Members Posts: 2 Joined: 26-December 09 From: Turin Member No.: 76360 |
Foobar requires "--ignore-chunk-sizes" switch in the FLAC converter setup
E.g. "flac -s --ignore-chunk-sizes -5 -b 512 - -o %d" |
|
|
|
Apr 5 2010, 00:49
Post
#11
|
|
![]() Group: Developer Posts: 1230 Joined: 27-June 07 Member No.: 44789 |
Not for me it doesn't. Unless this is a fb2k version issue. I'm on 0.9.4.5.
C. -------------------- TAK -p4m :: LossyWAV -q 6 | TAK :: Lame 3.98 -V 2
|
|
|
|
Apr 5 2010, 00:56
Post
#12
|
|
|
Group: Members Posts: 32 Joined: 15-November 03 From: Munich Member No.: 9858 |
Thanks a lot, that did the trick for me!
I had switched recently from fb 0.9.x to 1.0.1. Previously I think it worked without that option. johnb This post has been edited by johnb: Apr 5 2010, 00:59 |
|
|
|
![]() ![]() |
|
Lo-Fi Version | Time is now: 25th May 2013 - 16:21 |