Search found 6 matches

by coconut
Sun Jul 05, 2009 11:43 pm
Forum: Development
Topic: CLI: parsing of per-audio-track arguments
Replies: 3
Views: 970

Re: CLI: parsing of per-audio-track arguments

[Updated: patches cleanly atop r2684; fixed difference between manicure.rb and generated code.] Sorry for the slow turnaround; I've been pretty busy. I have two patches (which include the above changes by John) 1-cli-use-str_split-parser.patch : Use str_split() instead of strtok() or str_sep(). 2-cl...
by coconut
Wed Jul 01, 2009 11:08 pm
Forum: Development
Topic: CLI: parsing of per-audio-track arguments
Replies: 3
Views: 970

CLI: parsing of per-audio-track arguments

Hi! I have a patch against r2654 to make the CLI more flexible about setting options for some, but not all, audio tracks. For example, --ab 128,,96 would mean to set a bitrate of 128 for track 1 and 96 for track 3, while using default settings for track 2 (and any tracks after 3). This feature is fr...
by coconut
Sun Jun 21, 2009 11:41 pm
Forum: Feature Requests
Topic: Feature-Request: ability to specify Vorbis by "-q", not kbps
Replies: 19
Views: 3753

Re: Feature-Request: ability to specify Vorbis by "-q", not kbps

Thanks for catching the CLI mistake; on second glance it looks pretty bad. I liked your first idea better; it could apply to any per-audio-track option. "Pass one setting to use for all audio tracks, or a comma-separated list to apply to each track in order. Skipped tracks get default treatment...
by coconut
Sun Jun 21, 2009 10:42 pm
Forum: Bugs
Topic: [Fixed][SVN2592] HandBrakeCLI --subtitle-forced won't work
Replies: 1
Views: 772

[Fixed][SVN2592] HandBrakeCLI --subtitle-forced won't work

Hi awesome HandBrake developers. test/test.c says: case 's': subtracks = str_split( optarg, "," ); break; case 'F': subtracks = str_split( optarg, "," ); break; I think you meant to say "subforce" the second time you said "subtracks". I don't know whether chan...
by coconut
Sat Jun 20, 2009 11:05 pm
Forum: Feature Requests
Topic: Feature-Request: ability to specify Vorbis by "-q", not kbps
Replies: 19
Views: 3753

Re: Feature-Request: ability to specify Vorbis by "-q", not kbps

(Updated 7/1: applies cleanly against r2654; CLI part requires a separate patch but allows mixing of --ab/--aq in a sensible way now.) Thanks for the advice! Well, this patch set (against svn r2590) implements the relevant CLI switch: --aq <float> Set audio quality/qualities, in encoder's units (def...
by coconut
Sat Jun 20, 2009 5:21 pm
Forum: Feature Requests
Topic: Feature-Request: ability to specify Vorbis by "-q", not kbps
Replies: 19
Views: 3753

Re: Feature-Request: ability to specify Vorbis by "-q", not kbps

Hi, I also want this pony (for all codecs, but especially Vorbis) and I'm working on it. If anybody is interested in helping me add support the Mac and/or Win GUI, or testing the feature with ca_aac, that would be awesome. At the moment I can only really develop and test under Linux. I'm also wonder...