QAAC: discussion, questions, feature requests, etc., [originally a thread for a feature request] |
![]() ![]() |
QAAC: discussion, questions, feature requests, etc., [originally a thread for a feature request] |
Jan 17 2013, 12:46
Post
#351
|
|
|
Group: Members Posts: 33 Joined: 25-November 12 Member No.: 104754 |
I don't know why MediaInfo shows something like that as "Sample Count", but I think it's not problem of qaac. You can dump mp4 file structure by tools like mp4box or boxdumper (of L-SMASH), which is FAR more reliable than MediaInfo when you want to inspect MP4. Thanks so much for the explanation. "mp4box -diso" does shows the correct value of 127772672 whereas MediaInfo shows 127772688 for the same file. Seems that MediaInfo is reporting the wrong values and I have reported this bug on the MediaInfo forum. "mp4box.exe -diso" shows millisecond duration under "SampleCount" and Sample Count under "Duration" in its XML output. The XML tag names are switched in mp4box but the values are right. This post has been edited by robertcollier4: Jan 17 2013, 12:56 |
|
|
|
Jan 25 2013, 13:09
Post
#352
|
|
|
Group: Members Posts: 32 Joined: 22-June 12 Member No.: 100900 |
[qaac] release 2.13 (refalac 2.13)
posted 4 hours ago by nu 774 Gracefully shutdown on console interrupt event (such as Ctrl+C, Ctrl+Break or closing console window). Gracefully means that it stops encoding immediately as if it were the end of input, and properly finalize the container, therefore resulting file will be playable (until that point). Of course, it is not that qaac can terminate gracefully in every possible situations. You can always forcefully kill qaac using task manager or something. https://sites.google.com/site/qaacpage/cabinet |
|
|
|
Jan 28 2013, 16:24
Post
#353
|
|
|
Group: Members Posts: 2 Joined: 4-March 11 Member No.: 88700 |
Can somebody give me a quick help?
I want to convert 5.1 AC3 to 5.1 AAC. But i don't know how to "convert" the ac3-file to a supportet inputfile for qaac. Can somebody tell me a working commandline? (like ffmpeg ----many options---- | qaac ---some more options---)? thanks |
|
|
|
Jan 28 2013, 16:40
Post
#354
|
|
|
Group: Members Posts: 132 Joined: 20-November 01 Member No.: 503 |
More graphical with MeGUI:
-------------------- http://forum.gleitz.info - das deutsche doom9/Gleitz-Forum
|
|
|
|
Jan 28 2013, 16:44
Post
#355
|
|
|
Group: Members Posts: 38 Joined: 26-May 02 Member No.: 2129 |
Either that or:
ffmpeg -i input.ac3 -f wav - | qaac -i --adts --no-delay - -o output.aac The "--adts --no-delay" part is kinda optional, but works good for movies. |
|
|
|
Jan 28 2013, 16:49
Post
#356
|
|
|
Group: Members Posts: 132 Joined: 20-November 01 Member No.: 503 |
You can also have QAAC output *.m4a by omitting "--adts"; I would prefer it in an MP4 container if it will be multiplexed later.
-------------------- http://forum.gleitz.info - das deutsche doom9/Gleitz-Forum
|
|
|
|
Jan 28 2013, 17:30
Post
#357
|
|
![]() Group: Developer Posts: 295 Joined: 22-November 10 From: Japan Member No.: 85902 |
@sneaker
You might want to specify -acodec pcm_f32le to avoid unnecessary quantization to pcm_s16le by ffmpeg. qaac can read float WAV just fine. |
|
|
|
Jan 28 2013, 17:32
Post
#358
|
|
|
Group: Members Posts: 2 Joined: 4-March 11 Member No.: 88700 |
More graphical with MeGUI: [...] Thanks, but this create a corrupt audio file (MediaInfo Bitrate 2kbit/s) and i think the reason could be, that I have some 2.0 parts in the 5.1 audio source. Can I "force" 5.1 in megui like -ac 6 in ffmpeg? Or can I convert the ac3-source lossles to a compleate 5.1 ac3-file? |
|
|
|
Jan 28 2013, 18:17
Post
#359
|
|
|
Group: Members Posts: 6 Joined: 6-March 11 Member No.: 88755 |
More graphical with MeGUI: [...] Thanks, but this create a corrupt audio file (MediaInfo Bitrate 2kbit/s) and i think the reason could be, that I have some 2.0 parts in the 5.1 audio source. Can I "force" 5.1 in megui like -ac 6 in ffmpeg? Or can I convert the ac3-source lossles to a compleate 5.1 ac3-file? You could also get eac3to (recently updated) and do this: CODE eac3to input.ac3 stdout.wav | qaac - -o "output.mp4" -i --verbose --threading The last two options on the qaac side are of course optional. I would recommend --verbose at least as qaac then displays the amt of channels you're dealing with. "-i" tells it to ignore wav headers (which will give you the wrong length and muck things up). On the eac3to side I didn't specify any flags, but you might want to use -down16 when using TrueHD input (let eac3to handle the dithering). If you're converting from 6.1 or 7.1 and want 5.1 output, you should also use -down6. QUOTE and i think the reason could be, that I have some 2.0 parts in the 5.1 audio source. I'm not sure if that's technically possible or makes any sense? Having silence in every channel except for front L/R does not a 2.0 source make. Note that eac3to uses ffmpeg to decode ac3 by default. I'm not sure if using it will help you at all. Alternatively, I have also had success with this tool: http://forum.doom9.org/showthread.php?t=165577 This post has been edited by LastSilmaril: Jan 28 2013, 18:26 |
|
|
|
Jan 29 2013, 05:52
Post
#360
|
|
|
Group: Members Posts: 38 Joined: 26-May 02 Member No.: 2129 |
You can also have QAAC output *.m4a by omitting "--adts"; I would prefer it in an MP4 container if it will be multiplexed later. Yeah, it really depends on the muxer. I sometimes use l-smash and it only supports adts, while mkvmerge supports both. And because of the "--no-delay" switch no gapless info is needed. I prefer that as it does not rely on the player using the proper delay, because some players just don't. @sneaker You might want to specify -acodec pcm_f32le to avoid unnecessary quantization to pcm_s16le by ffmpeg. qaac can read float WAV just fine. Thanks for the tip, though it does not seem to make a difference for ffmpeg's ac3 decoder. Usually I use eac3to as suggested by LastSilmaril because the author does keep proper bit depth conversions in mind, though it "only" uses 24 bit by default for the output. This post has been edited by sneaker: Jan 29 2013, 05:58 |
|
|
|
Jan 29 2013, 06:40
Post
#361
|
|
![]() Group: Developer Posts: 295 Joined: 22-November 10 From: Japan Member No.: 85902 |
Thanks for the tip, though it does not seem to make a difference for ffmpeg's ac3 decoder. Usually I use eac3to as suggested by LastSilmaril because the author does keep proper bit depth conversions in mind, though it "only" uses 24 bit by default for the output. Hmm, I tried with ffmpeg just now, and seems you are correct. Actually I was using avconv instead of ffmpeg, and it gives you different result. Tested with the attached AC3 (encoded with intentionally high gain, and it clips when quantized to int, giving you audibly different result)
sin.zip ( 8.25K )
Number of downloads: 26This post has been edited by nu774: Jan 29 2013, 06:42 |
|
|
|
Feb 2 2013, 18:04
Post
#362
|
|
|
Group: Members Posts: 32 Joined: 22-June 12 Member No.: 100900 |
[qaac] release 2.14 (refalac 1.14)
posted an hour ago by nu 774 Add --cue-track option to limit tracks to extract from cuesheet, and fixed several minor bugs. https://sites.google.com/site/qaacpage/cabinet |
|
|
|
Feb 5 2013, 11:30
Post
#363
|
|
|
Group: Members Posts: 32 Joined: 22-June 12 Member No.: 100900 |
[qaac] release 2.15 (refalac 2.15)
posted 23 minutes ago by nu 774 [ updated a minute ago ] Fixed an awful bug of refalac of 2.xx branch. It wasn't encoding in correct frame length (4096 samples) on some cases. I noticed it when I encoded directly from lossyFLAC (not piped input), which resulted 512 samples-per-frame ALAC file. It seemed playable, but apparently is not a normal/sane ALAC file; WAV input will be fine (including piped input). Direct input from FLAC or other formats might be affected, and Re-encoding is recommended. Only refalac of 2.xx branch is affected. qaac is fine. Use more strict sharing mode when opening files. Now qaac/refalac doesn't allow other processes to open the output file when qaac/refalac is writing to it. Reading can be shared, but now qaac/refalac cannot open a file for reading when another process is writing to it. https://sites.google.com/site/qaacpage/cabinet |
|
|
|
Feb 5 2013, 12:12
Post
#364
|
|
![]() Group: Developer Posts: 295 Joined: 22-November 10 From: Japan Member No.: 85902 |
Thanks for the tip, though it does not seem to make a difference for ffmpeg's ac3 decoder. Usually I use eac3to as suggested by LastSilmaril because the author does keep proper bit depth conversions in mind, though it "only" uses 24 bit by default for the output. Hmm, I tried with ffmpeg just now, and seems you are correct. Actually I was using avconv instead of ffmpeg, and it gives you different result. Tried this with latest ffmpeg binary from http://ffmpeg.zeranoe.com/builds/, and now ffmpeg can correctly output without integer clipping with -acodec pcm_f32le. The version I tried seems just too old (it was built on Nov 2012 or so, therefore it was not VERY old, but ffmpeg is really a moving target). |
|
|
|
Feb 5 2013, 12:22
Post
#365
|
|
![]() Group: Developer Posts: 295 Joined: 22-November 10 From: Japan Member No.: 85902 |
The refalac bug I fixed on 2.15 was because I changed source or filter layer not to repeatedly pull or generate samples until it reaches requested amount, but at the same time I didn't modified ALAC encoder to compensate the source/filter layer modification.
As a result, nobody assured ALAC encoder to process each frame per 4096 samples. Silly me! For usual cases (WAV input, with or without pipe, without DSP), source filter would read up until requested samples (=4096) anyway, so did no harm. |
|
|
|
Feb 8 2013, 14:14
Post
#366
|
|
|
Group: Members Posts: 38 Joined: 26-May 02 Member No.: 2129 |
Tried this with latest ffmpeg binary from http://ffmpeg.zeranoe.com/builds/, and now ffmpeg can correctly output without integer clipping with -acodec pcm_f32le. The version I tried seems just too old (it was built on Nov 2012 or so, therefore it was not VERY old, but ffmpeg is really a moving target). ffmpeg also supports pcm_f64le. Would it make any sense to use it with qaac? |
|
|
|
Feb 8 2013, 14:55
Post
#367
|
|
![]() Group: Developer Posts: 295 Joined: 22-November 10 From: Japan Member No.: 85902 |
|
|
|
|
Feb 8 2013, 15:00
Post
#368
|
|
|
Group: Members Posts: 38 Joined: 26-May 02 Member No.: 2129 |
|
|
|
|
Feb 8 2013, 15:06
Post
#369
|
|
|
Group: Members Posts: 132 Joined: 20-November 01 Member No.: 503 |
If the pipe output is stored as temporary file somewhere with low diskspace, it may break... Somehow I remember that pipes under Windows can be inefficient. But I won't swear it. It may have been in times of Windows 9x.
-------------------- http://forum.gleitz.info - das deutsche doom9/Gleitz-Forum
|
|
|
|
Feb 8 2013, 15:18
Post
#370
|
|
![]() Group: Developer Posts: 295 Joined: 22-November 10 From: Japan Member No.: 85902 |
But it won't break anything even if there's zero practical advantage? It won't break anything or lose quality. However, native decoding format of ffmpeg (for MDCT codec) will be f32, and same for CoreAudio AAC codec. Therefore, it will simply waste time for unnecessary float<->double conversion + increased I/O size. |
|
|
|
Feb 8 2013, 15:19
Post
#371
|
|
|
Group: Members Posts: 38 Joined: 26-May 02 Member No.: 2129 |
I see.
|
|
|
|
Feb 11 2013, 15:40
Post
#372
|
|
|
Group: Members Posts: 27 Joined: 12-February 06 Member No.: 27717 |
Will I get proper channel order for my 5.1-channel AAC file if I first decode the DTS-HD MA track to a multichannel wav file with eac3to and then encode that one with qaac? I need to decode to wav as there's sometimes clipping in the decoded output and eac3to needs a second pass to handle it.
|
|
|
|
Feb 12 2013, 01:50
Post
#373
|
|
![]() Group: Developer Posts: 295 Joined: 22-November 10 From: Japan Member No.: 85902 |
Will I get proper channel order for my 5.1-channel AAC file if I first decode the DTS-HD MA track to a multichannel wav file with eac3to and then encode that one with qaac? I need to decode to wav as there's sometimes clipping in the decoded output and eac3to needs a second pass to handle it. Read https://github.com/nu774/qaac/wiki/Multichannel--handling. IIRC DTS-HD MA is a 24bit lossless format, and I don't understand why you worry about clipping. If , for some reason, eac3to detects DTS-HD MA input as clipped and lower the gain, the process is not lossless, by definition. |
|
|
|
Feb 12 2013, 04:36
Post
#374
|
|
|
Group: Members Posts: 27 Joined: 12-February 06 Member No.: 27717 |
Sorry, should have been a bit more clear. Clipping is sometimes detected when downmixing 7.1ch or 6.1ch to 5.1ch. I do that for movies that I put on my media player and put the movie with the original audio track in my archive.
|
|
|
|
Feb 12 2013, 05:23
Post
#375
|
|
![]() Group: Developer Posts: 295 Joined: 22-November 10 From: Japan Member No.: 85902 |
|
|
|
|
![]() ![]() |
|
Lo-Fi Version | Time is now: 25th May 2013 - 02:03 |