mirror of
https://github.com/wnagrodzki/iNapi.git
synced 2025-04-05 11:51:57 +02:00
Converting subtitles to UTF8
This commit is contained in:
parent
e095510c10
commit
fe2b72f4eb
4 changed files with 10 additions and 6 deletions
|
@ -111,6 +111,8 @@
|
||||||
[self.window makeKeyAndOrderFront:self];
|
[self.window makeKeyAndOrderFront:self];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
self.subtitleDownloader.convertToUTF8 = [INPPreferencesWindowController convertToUTF8];
|
||||||
|
|
||||||
NSArray * array = [self.movieFilter moviePathsAmongFilePaths:filenames];
|
NSArray * array = [self.movieFilter moviePathsAmongFilePaths:filenames];
|
||||||
|
|
||||||
for (NSString * path in array) {
|
for (NSString * path in array) {
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
|
|
||||||
@interface INSubtitleDownloader : NSObject
|
@interface INSubtitleDownloader : NSObject
|
||||||
|
|
||||||
|
@property (assign, nonatomic) BOOL convertToUTF8;
|
||||||
@property (weak, nonatomic) id<INSubtitleDownloaderDelegate> delegate;
|
@property (weak, nonatomic) id<INSubtitleDownloaderDelegate> delegate;
|
||||||
|
|
||||||
-(void)downloadSubtitlesAtURL:(NSURL *)subtitlesURL forMovieAtURL:(NSURL *)movieURL completionHandler:(void (^)(NSURL * downloadedSubtitlesURL, NSError * error))completionHandler;
|
-(void)downloadSubtitlesAtURL:(NSURL *)subtitlesURL forMovieAtURL:(NSURL *)movieURL completionHandler:(void (^)(NSURL * downloadedSubtitlesURL, NSError * error))completionHandler;
|
||||||
|
|
|
@ -90,7 +90,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
// save subtitles
|
// 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(), ^{
|
dispatch_async(dispatch_get_main_queue(), ^{
|
||||||
completionHandler(nil, error);
|
completionHandler(nil, error);
|
||||||
});
|
});
|
||||||
|
|
|
@ -36,7 +36,7 @@
|
||||||
<key>CFBundleIconFile</key>
|
<key>CFBundleIconFile</key>
|
||||||
<string>AppIcon.icns</string>
|
<string>AppIcon.icns</string>
|
||||||
<key>CFBundleIdentifier</key>
|
<key>CFBundleIdentifier</key>
|
||||||
<string>com.izydor86.iNapi.${PRODUCT_NAME:rfc1034identifier}</string>
|
<string>com.izydor86.${PRODUCT_NAME:rfc1034identifier}</string>
|
||||||
<key>CFBundleInfoDictionaryVersion</key>
|
<key>CFBundleInfoDictionaryVersion</key>
|
||||||
<string>6.0</string>
|
<string>6.0</string>
|
||||||
<key>CFBundleName</key>
|
<key>CFBundleName</key>
|
||||||
|
@ -59,6 +59,10 @@
|
||||||
<string>MainMenu</string>
|
<string>MainMenu</string>
|
||||||
<key>NSPrincipalClass</key>
|
<key>NSPrincipalClass</key>
|
||||||
<string>NSApplication</string>
|
<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>
|
<key>UTImportedTypeDeclarations</key>
|
||||||
<array>
|
<array>
|
||||||
<dict>
|
<dict>
|
||||||
|
@ -144,9 +148,5 @@
|
||||||
</dict>
|
</dict>
|
||||||
</dict>
|
</dict>
|
||||||
</array>
|
</array>
|
||||||
<key>SUPublicDSAKeyFile</key>
|
|
||||||
<string>dsa_pub.pem</string>
|
|
||||||
<key>SUFeedURL</key>
|
|
||||||
<string>https://sites.google.com/site/izydor86/inapi/iNapiAppcast.xml</string>
|
|
||||||
</dict>
|
</dict>
|
||||||
</plist>
|
</plist>
|
||||||
|
|
Loading…
Add table
Reference in a new issue