Converting subtitles to UTF8

This commit is contained in:
Wojciech Nagrodzki 2012-10-07 13:01:29 +02:00
parent e095510c10
commit fe2b72f4eb
Signed by: wnagrodzki
GPG key ID: E9D0EB0302264569
4 changed files with 10 additions and 6 deletions

View file

@ -111,6 +111,8 @@
[self.window makeKeyAndOrderFront:self];
}
self.subtitleDownloader.convertToUTF8 = [INPPreferencesWindowController convertToUTF8];
NSArray * array = [self.movieFilter moviePathsAmongFilePaths:filenames];
for (NSString * path in array) {

View file

@ -19,6 +19,7 @@
@interface INSubtitleDownloader : NSObject
@property (assign, nonatomic) BOOL convertToUTF8;
@property (weak, nonatomic) id<INSubtitleDownloaderDelegate> delegate;
-(void)downloadSubtitlesAtURL:(NSURL *)subtitlesURL forMovieAtURL:(NSURL *)movieURL completionHandler:(void (^)(NSURL * downloadedSubtitlesURL, NSError * error))completionHandler;

View file

@ -90,7 +90,8 @@
}
// save subtitles
if ([subtitles writeToURL:subtitlesSaveURL atomically:YES encoding:NSWindowsCP1250StringEncoding error:&error] == NO) {
NSStringEncoding encoding = self.convertToUTF8 == YES ? NSUTF8StringEncoding : NSWindowsCP1250StringEncoding;
if ([subtitles writeToURL:subtitlesSaveURL atomically:YES encoding:encoding error:&error] == NO) {
dispatch_async(dispatch_get_main_queue(), ^{
completionHandler(nil, error);
});

View file

@ -36,7 +36,7 @@
<key>CFBundleIconFile</key>
<string>AppIcon.icns</string>
<key>CFBundleIdentifier</key>
<string>com.izydor86.iNapi.${PRODUCT_NAME:rfc1034identifier}</string>
<string>com.izydor86.${PRODUCT_NAME:rfc1034identifier}</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
@ -59,6 +59,10 @@
<string>MainMenu</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<key>SUFeedURL</key>
<string>https://sites.google.com/site/izydor86/inapi/iNapiAppcast.xml</string>
<key>SUPublicDSAKeyFile</key>
<string>dsa_pub.pem</string>
<key>UTImportedTypeDeclarations</key>
<array>
<dict>
@ -144,9 +148,5 @@
</dict>
</dict>
</array>
<key>SUPublicDSAKeyFile</key>
<string>dsa_pub.pem</string>
<key>SUFeedURL</key>
<string>https://sites.google.com/site/izydor86/inapi/iNapiAppcast.xml</string>
</dict>
</plist>