From: johnallen Date: Thu, 4 Jan 2007 00:40:45 +0000 (+0000) Subject: added title # to output filename X-Git-Url: http://git.osdn.jp/view?a=commitdiff_plain;h=98367cc31ca45802f1f69c05a60bd57bdacebb91;p=handbrake-jp%2Fhandbrake-jp-git.git added title # to output filename git-svn-id: svn://localhost/HandBrake/trunk@88 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- diff --git a/macosx/ExpressController.m b/macosx/ExpressController.m index 406abe3f..ec2ce5d7 100644 --- a/macosx/ExpressController.m +++ b/macosx/ExpressController.m @@ -298,12 +298,9 @@ } } -// job->file = strdup( [[NSString stringWithFormat: -// @"%@/%s - Title %d - %@.m4v", fConvertFolderString, -// title->name, title->index, [fConvertFormatPopUp -// titleOfSelectedItem]] UTF8String] ); - job->file = strdup( [[NSString stringWithFormat: - @"%@/%s.m4v", fConvertFolderString, title->name] UTF8String]); + job->file = strdup( [[NSString stringWithFormat: + @"%@/%s - Title %d.m4v", fConvertFolderString, + title->name, title->index] UTF8String] ); hb_add( fHandle, job ); }