|
@@ -1,560 +0,0 @@
|
|
|
-/*****************************************************************************
|
|
|
- * VLCPlaylistCollectionViewCell.m
|
|
|
- * VLC for iOS
|
|
|
- *****************************************************************************
|
|
|
- * Copyright (c) 2013-2018 VideoLAN. All rights reserved.
|
|
|
- * $Id$
|
|
|
- *
|
|
|
- * Authors: Felix Paul Kühne <fkuehne # videolan.org>
|
|
|
- * Tamas Timar <ttimar.vlc # gmail.com>
|
|
|
- * Gleb Pinigin <gpinigin # gmail.com>
|
|
|
- * Carola Nitz <nitz.carola # googlemail.com>
|
|
|
- *
|
|
|
- * Refer to the COPYING file of the official project for license.
|
|
|
- *****************************************************************************/
|
|
|
-
|
|
|
-#import "VLCPlaylistCollectionViewCell.h"
|
|
|
-#import "VLCThumbnailsCache.h"
|
|
|
-#import "NSString+SupportedMedia.h"
|
|
|
-#import "VLC-Swift.h"
|
|
|
-
|
|
|
-@interface VLCPlaylistCollectionViewCell ()
|
|
|
-{
|
|
|
- UIImage *_checkboxEmptyImage;
|
|
|
- UIImage *_checkboxImage;
|
|
|
- BOOL _editing;
|
|
|
-}
|
|
|
-
|
|
|
-@end
|
|
|
-
|
|
|
-@implementation VLCPlaylistCollectionViewCell
|
|
|
-
|
|
|
-- (void)dealloc
|
|
|
-{
|
|
|
- [self _removeObserver];
|
|
|
-}
|
|
|
-
|
|
|
-- (void)awakeFromNib
|
|
|
-{
|
|
|
- _checkboxEmptyImage = [UIImage imageNamed:@"checkboxEmpty"];
|
|
|
- _checkboxImage = [UIImage imageNamed:@"checkbox"];
|
|
|
- self.metaDataLabel.hidden = YES;
|
|
|
- [super awakeFromNib];
|
|
|
-}
|
|
|
-
|
|
|
-+ (NSString *)cellIdentifier
|
|
|
-{
|
|
|
- return @"VLCPlaylistCollectionViewCell";
|
|
|
-}
|
|
|
-
|
|
|
-- (void)setEditing:(BOOL)editing animated:(BOOL)animated
|
|
|
-{
|
|
|
- _editing = editing;
|
|
|
- self.isSelectedView.hidden = !_editing;
|
|
|
-
|
|
|
- [self shake];
|
|
|
- [self selectionUpdate];
|
|
|
- [self _updatedDisplayedInformationForKeyPath:@"editing"];
|
|
|
-}
|
|
|
-
|
|
|
-- (void)selectionUpdate
|
|
|
-{
|
|
|
- if (self.selected)
|
|
|
- self.isSelectedView.image = _checkboxImage;
|
|
|
- else
|
|
|
- self.isSelectedView.image = _checkboxEmptyImage;
|
|
|
-}
|
|
|
-
|
|
|
-- (void)shake
|
|
|
-{
|
|
|
- if (_editing) {
|
|
|
- [UIView animateWithDuration:0.3 animations:^{
|
|
|
- self.contentView.transform = CGAffineTransformMakeScale(0.9f, 0.9f);
|
|
|
- }];
|
|
|
- CAKeyframeAnimation* animation = [CAKeyframeAnimation animationWithKeyPath:@"transform.rotation.z"];
|
|
|
- CGFloat shakeAngle = 0.02f;
|
|
|
- animation.values = @[@(-shakeAngle), @(shakeAngle)];
|
|
|
- animation.autoreverses = YES;
|
|
|
- animation.duration = 0.125;
|
|
|
- animation.repeatCount = HUGE_VALF;
|
|
|
-
|
|
|
- [[self layer] addAnimation:animation forKey:@"shakeAnimation"];
|
|
|
- self.contentView.layer.cornerRadius = 10.0;
|
|
|
- self.contentView.clipsToBounds = YES;
|
|
|
- } else {
|
|
|
- [UIView animateWithDuration:0.3 animations:^{
|
|
|
- self.contentView.transform = CGAffineTransformMakeScale(1.0f, 1.0f);
|
|
|
- self.contentView.layer.cornerRadius = 0.0;
|
|
|
- self.contentView.clipsToBounds = NO;
|
|
|
- }];
|
|
|
- [[self layer] removeAnimationForKey:@"shakeAnimation"];
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
|
|
|
-{
|
|
|
- [self _updatedDisplayedInformationForKeyPath:keyPath];
|
|
|
-}
|
|
|
-
|
|
|
-- (void)_removeObserver
|
|
|
-{
|
|
|
- @try {
|
|
|
- if ([_mediaObject isKindOfClass:[MLLabel class]]) {
|
|
|
- [_mediaObject removeObserver:self forKeyPath:@"files"];
|
|
|
- [_mediaObject removeObserver:self forKeyPath:@"name"];
|
|
|
- } else if ([_mediaObject isKindOfClass:[MLShow class]])
|
|
|
- [_mediaObject removeObserver:self forKeyPath:@"episodes"];
|
|
|
- else if ([_mediaObject isKindOfClass:[MLShowEpisode class]]) {
|
|
|
- [_mediaObject removeObserver:self forKeyPath:@"name"];
|
|
|
- [_mediaObject removeObserver:self forKeyPath:@"files"];
|
|
|
- [_mediaObject removeObserver:self forKeyPath:@"artworkURL"];
|
|
|
- [_mediaObject removeObserver:self forKeyPath:@"unread"];
|
|
|
- } else if ([_mediaObject isKindOfClass:[MLAlbum class]]) {
|
|
|
- [_mediaObject removeObserver:self forKeyPath:@"name"];
|
|
|
- [_mediaObject removeObserver:self forKeyPath:@"tracks"];
|
|
|
- } else if ([_mediaObject isKindOfClass:[MLAlbumTrack class]]) {
|
|
|
- [_mediaObject addObserver:self forKeyPath:@"unread" options:0 context:nil];
|
|
|
- [_mediaObject removeObserver:self forKeyPath:@"artist"];
|
|
|
- [_mediaObject removeObserver:self forKeyPath:@"title"];
|
|
|
- [_mediaObject removeObserver:self forKeyPath:@"files"];
|
|
|
- MLFile *anyFileFromTrack = [(MLAlbumTrack *)_mediaObject anyFileFromTrack];
|
|
|
- if (anyFileFromTrack)
|
|
|
- [anyFileFromTrack removeObserver:self forKeyPath:@"artworkURL"];
|
|
|
- } else if ([_mediaObject isKindOfClass:[MLFile class]]) {
|
|
|
- [_mediaObject removeObserver:self forKeyPath:@"computedThumbnail"];
|
|
|
- [_mediaObject removeObserver:self forKeyPath:@"lastPosition"];
|
|
|
- [_mediaObject removeObserver:self forKeyPath:@"duration"];
|
|
|
- [_mediaObject removeObserver:self forKeyPath:@"fileSizeInBytes"];
|
|
|
- [_mediaObject removeObserver:self forKeyPath:@"title"];
|
|
|
- [_mediaObject removeObserver:self forKeyPath:@"thumbnailTimeouted"];
|
|
|
- [_mediaObject removeObserver:self forKeyPath:@"unread"];
|
|
|
- [_mediaObject removeObserver:self forKeyPath:@"albumTrackNumber"];
|
|
|
- [_mediaObject removeObserver:self forKeyPath:@"album"];
|
|
|
- [_mediaObject removeObserver:self forKeyPath:@"artist"];
|
|
|
- [_mediaObject removeObserver:self forKeyPath:@"genre"];
|
|
|
- [(MLFile*)_mediaObject didHide];
|
|
|
- }
|
|
|
- }
|
|
|
- @catch (NSException *exception) {
|
|
|
- APLog(@"removing observer failed");
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-- (void)_addObserver
|
|
|
-{
|
|
|
- if ([_mediaObject isKindOfClass:[MLLabel class]]) {
|
|
|
- [_mediaObject addObserver:self forKeyPath:@"files" options:0 context:nil];
|
|
|
- [_mediaObject addObserver:self forKeyPath:@"name" options:0 context:nil];
|
|
|
- } else if ([_mediaObject isKindOfClass:[MLShow class]])
|
|
|
- [_mediaObject addObserver:self forKeyPath:@"episodes" options:0 context:nil];
|
|
|
- else if ([_mediaObject isKindOfClass:[MLShowEpisode class]]) {
|
|
|
- [_mediaObject addObserver:self forKeyPath:@"name" options:0 context:nil];
|
|
|
- [_mediaObject addObserver:self forKeyPath:@"files" options:0 context:nil];
|
|
|
- [_mediaObject addObserver:self forKeyPath:@"artworkURL" options:0 context:nil];
|
|
|
- [_mediaObject addObserver:self forKeyPath:@"unread" options:0 context:nil];
|
|
|
- } else if ([_mediaObject isKindOfClass:[MLAlbum class]]) {
|
|
|
- [_mediaObject addObserver:self forKeyPath:@"name" options:0 context:nil];
|
|
|
- [_mediaObject addObserver:self forKeyPath:@"tracks" options:0 context:nil];
|
|
|
- } else if ([_mediaObject isKindOfClass:[MLAlbumTrack class]]) {
|
|
|
- [_mediaObject addObserver:self forKeyPath:@"unread" options:0 context:nil];
|
|
|
- [_mediaObject addObserver:self forKeyPath:@"artist" options:0 context:nil];
|
|
|
- [_mediaObject addObserver:self forKeyPath:@"title" options:0 context:nil];
|
|
|
- [_mediaObject addObserver:self forKeyPath:@"files" options:0 context:nil];
|
|
|
- MLFile *anyFileFromTrack = [(MLAlbumTrack *)_mediaObject anyFileFromTrack];
|
|
|
- if (anyFileFromTrack)
|
|
|
- [anyFileFromTrack addObserver:self forKeyPath:@"artworkURL" options:0 context:nil];
|
|
|
- } else if ([_mediaObject isKindOfClass:[MLFile class]]) {
|
|
|
- [_mediaObject addObserver:self forKeyPath:@"computedThumbnail" options:0 context:nil];
|
|
|
- [_mediaObject addObserver:self forKeyPath:@"lastPosition" options:0 context:nil];
|
|
|
- [_mediaObject addObserver:self forKeyPath:@"duration" options:0 context:nil];
|
|
|
- [_mediaObject addObserver:self forKeyPath:@"fileSizeInBytes" options:0 context:nil];
|
|
|
- [_mediaObject addObserver:self forKeyPath:@"title" options:0 context:nil];
|
|
|
- [_mediaObject addObserver:self forKeyPath:@"thumbnailTimeouted" options:0 context:nil];
|
|
|
- [_mediaObject addObserver:self forKeyPath:@"unread" options:0 context:nil];
|
|
|
- [_mediaObject addObserver:self forKeyPath:@"albumTrackNumber" options:0 context:nil];
|
|
|
- [_mediaObject addObserver:self forKeyPath:@"album" options:0 context:nil];
|
|
|
- [_mediaObject addObserver:self forKeyPath:@"artist" options:0 context:nil];
|
|
|
- [_mediaObject addObserver:self forKeyPath:@"genre" options:0 context:nil];
|
|
|
- [[NSNotificationCenter defaultCenter] addObserver:self
|
|
|
- selector:@selector(thumbnailWasUpdated:)
|
|
|
- name:MLFileThumbnailWasUpdated
|
|
|
- object:nil];
|
|
|
- [(MLFile*)_mediaObject willDisplay];
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-- (void)setMediaObject:(MLFile *)mediaObject
|
|
|
-{
|
|
|
- if (_mediaObject != mediaObject) {
|
|
|
-
|
|
|
- [self _removeObserver];
|
|
|
-
|
|
|
- _mediaObject = mediaObject;
|
|
|
- // prevent the cell from recycling the current snap for random contents
|
|
|
- self.thumbnailView.image = nil;
|
|
|
-
|
|
|
- [self _addObserver];
|
|
|
- }
|
|
|
-
|
|
|
- [self _updatedDisplayedInformationForKeyPath:nil];
|
|
|
-}
|
|
|
-
|
|
|
-- (void)setMedia:(VLCMLMedia *)media
|
|
|
-{
|
|
|
- if (_media != media) {
|
|
|
- _media = media;
|
|
|
- }
|
|
|
- [self _updateDisplayedInformations];
|
|
|
-}
|
|
|
-
|
|
|
-- (void)_updateDisplayedInformations
|
|
|
-{
|
|
|
- _titleLabel.text = _media.title;
|
|
|
- _subtitleLabel.text = [NSString stringWithFormat:@"%@ - %@",
|
|
|
- [_media formatDuration],
|
|
|
- [_media formatSize]];
|
|
|
- _thumbnailView.image = [UIImage imageWithContentsOfFile:_media.thumbnail.absoluteString];
|
|
|
-}
|
|
|
-
|
|
|
-- (void)_updatedDisplayedInformationForKeyPath:(NSString *)keyPath
|
|
|
-{
|
|
|
- self.thumbnailView.contentMode = UIViewContentModeScaleAspectFill;
|
|
|
- if ([self.mediaObject isKindOfClass:[MLFile class]]) {
|
|
|
- [self _configureForMLFile:(MLFile *)self.mediaObject];
|
|
|
- } else if ([self.mediaObject isKindOfClass:[MLLabel class]]) {
|
|
|
- [self _configureForFolder:(MLLabel *)self.mediaObject];
|
|
|
- } else if ([self.mediaObject isKindOfClass:[MLAlbum class]]) {
|
|
|
- [self _configureForAlbum:(MLAlbum *)self.mediaObject];
|
|
|
- } else if ([self.mediaObject isKindOfClass:[MLAlbumTrack class]]) {
|
|
|
- [self _configureForAlbumTrack:(MLAlbumTrack *)self.mediaObject];
|
|
|
- } else if ([self.mediaObject isKindOfClass:[MLShow class]]) {
|
|
|
-
|
|
|
- MLShow *mediaObject = (MLShow *)self.mediaObject;
|
|
|
- [self _configureForShow:mediaObject];
|
|
|
-
|
|
|
- if ([keyPath isEqualToString:@"computedThumbnail"] || [keyPath isEqualToString:@"episodes"] || !keyPath || (!self.thumbnailView.image && [keyPath isEqualToString:@"editing"])) {
|
|
|
- self.thumbnailView.image = [VLCThumbnailsCache thumbnailForManagedObject:mediaObject];
|
|
|
- }
|
|
|
- } else if ([self.mediaObject isKindOfClass:[MLShowEpisode class]]) {
|
|
|
- [self _configureForShowEpisode:(MLShowEpisode *)self.mediaObject];
|
|
|
- }
|
|
|
- if (![self.mediaObject isKindOfClass:[MLShow class]] && ([keyPath isEqualToString:@"computedThumbnail"] || !keyPath || (!self.thumbnailView.image && [keyPath isEqualToString:@"editing"]))) {
|
|
|
- self.thumbnailView.image = [VLCThumbnailsCache thumbnailForManagedObject:self.mediaObject];
|
|
|
- }
|
|
|
- [self setNeedsDisplay];
|
|
|
-}
|
|
|
-
|
|
|
-#pragma mark - presentation
|
|
|
-
|
|
|
-- (void)_configureForShow:(MLShow *)show
|
|
|
-{
|
|
|
- self.titleLabel.text = show.name;
|
|
|
- NSUInteger count = show.episodes.count;
|
|
|
- NSString *string = @"";
|
|
|
- if (show.releaseYear)
|
|
|
- string = [NSString stringWithFormat:@"%@ — ", show.releaseYear];
|
|
|
- self.subtitleLabel.text = [string stringByAppendingString:[NSString stringWithFormat:(count > 1) ? NSLocalizedString(@"LIBRARY_EPISODES", nil) : NSLocalizedString(@"LIBRARY_SINGLE_EPISODE", nil), count, show.unreadEpisodes.count]];
|
|
|
- self.mediaIsUnreadView.hidden = YES;
|
|
|
- self.progressView.hidden = YES;
|
|
|
- self.folderIconView.image = [UIImage imageNamed:@"tvShow"];
|
|
|
- self.folderIconView.hidden = NO;
|
|
|
-}
|
|
|
-
|
|
|
-- (void)_configureForAlbumTrack:(MLAlbumTrack *)albumTrack
|
|
|
-{
|
|
|
- MLFile *anyFileFromTrack = albumTrack.anyFileFromTrack;
|
|
|
-
|
|
|
- self.subtitleLabel.text = [NSString stringWithFormat:@"%@ — %@ — %@", albumTrack.artist, [NSString stringWithFormat:NSLocalizedString(@"LIBRARY_TRACK_N", nil), albumTrack.trackNumber.intValue], [VLCTime timeWithNumber:[anyFileFromTrack duration]]];
|
|
|
- self.titleLabel.text = albumTrack.title;
|
|
|
-
|
|
|
- [self _showPositionOfItem:anyFileFromTrack];
|
|
|
- self.folderIconView.hidden = YES;
|
|
|
-}
|
|
|
-
|
|
|
-- (void)_configureForShowEpisode:(MLShowEpisode *)showEpisode
|
|
|
-{
|
|
|
- self.titleLabel.text = showEpisode.name;
|
|
|
-
|
|
|
- MLFile *anyFileFromEpisode = showEpisode.files.anyObject;
|
|
|
- if (self.titleLabel.text.length < 1) {
|
|
|
- self.titleLabel.text = [NSString stringWithFormat:@"S%02dE%02d", showEpisode.seasonNumber.intValue, showEpisode.episodeNumber.intValue];
|
|
|
- self.subtitleLabel.text = [NSString stringWithFormat:@"%@", [VLCTime timeWithNumber:[anyFileFromEpisode duration]]];
|
|
|
- } else
|
|
|
- self.subtitleLabel.text = [NSString stringWithFormat:@"S%02dE%02d — %@", showEpisode.seasonNumber.intValue, showEpisode.episodeNumber.intValue, [VLCTime timeWithNumber:[anyFileFromEpisode duration]]];
|
|
|
- [self _showPositionOfItem:anyFileFromEpisode];
|
|
|
- self.folderIconView.hidden = YES;
|
|
|
-}
|
|
|
-
|
|
|
-- (void)_configureForAlbum:(MLAlbum *)album
|
|
|
-{
|
|
|
- self.titleLabel.text = album.name;
|
|
|
- MLAlbumTrack *anyTrack = [album.tracks anyObject];
|
|
|
- NSUInteger count = album.tracks.count;
|
|
|
- NSMutableString *string = [[NSMutableString alloc] init];
|
|
|
- if (anyTrack) {
|
|
|
- if (anyTrack.artist.length > 0) {
|
|
|
- [string appendString:anyTrack.artist];
|
|
|
- [string appendString:@" — "];
|
|
|
- }
|
|
|
- }
|
|
|
- [string appendString:[NSString stringWithFormat:(count > 1) ? NSLocalizedString(@"LIBRARY_TRACKS", nil) : NSLocalizedString(@"LIBRARY_SINGLE_TRACK", nil), count]];
|
|
|
- if (album.releaseYear.length > 0)
|
|
|
- [string appendFormat:@" — %@", album.releaseYear];
|
|
|
- self.subtitleLabel.text = string;
|
|
|
- self.mediaIsUnreadView.hidden = YES;
|
|
|
- self.progressView.hidden = YES;
|
|
|
- self.folderIconView.hidden = YES;
|
|
|
-}
|
|
|
-
|
|
|
-- (void)_configureForFolder:(MLLabel *)label
|
|
|
-{
|
|
|
- self.titleLabel.text = label.name;
|
|
|
- NSUInteger count = label.files.count;
|
|
|
- self.subtitleLabel.text = (count == 1) ? NSLocalizedString(@"ONE_FILE", nil) : [NSString stringWithFormat:NSLocalizedString(@"NUM_OF_FILES", nil), count];
|
|
|
- self.mediaIsUnreadView.hidden = YES;
|
|
|
- self.progressView.hidden = YES;
|
|
|
- self.folderIconView.image = [UIImage imageNamed:@"folderIcon"];
|
|
|
- self.folderIconView.hidden = NO;
|
|
|
-}
|
|
|
-
|
|
|
-- (void)_configureForMLFile:(MLFile *)mediaFile
|
|
|
-{
|
|
|
- if (mediaFile.isAlbumTrack) {
|
|
|
- NSString *string = @"";
|
|
|
- if (mediaFile.albumTrack.artist)
|
|
|
- string = [NSString stringWithFormat:@"%@ — ", mediaFile.albumTrack.artist];
|
|
|
- else if (mediaFile.albumTrack.album.name)
|
|
|
- string = [NSString stringWithFormat:@"%@ — ", mediaFile.albumTrack.artist];
|
|
|
- self.titleLabel.text = [string stringByAppendingString:(mediaFile.albumTrack.title.length > 1) ? mediaFile.albumTrack.title : mediaFile.title];
|
|
|
- } else
|
|
|
- self.titleLabel.text = mediaFile.title;
|
|
|
-
|
|
|
- if (_editing)
|
|
|
- self.subtitleLabel.text = [NSString stringWithFormat:@"%@ — %@", [VLCTime timeWithNumber:[mediaFile duration]], [NSByteCountFormatter stringFromByteCount:[mediaFile fileSizeInBytes] countStyle:NSByteCountFormatterCountStyleFile]];
|
|
|
- else {
|
|
|
- self.subtitleLabel.text = [NSString stringWithFormat:@"%@", [VLCTime timeWithNumber:[mediaFile duration]]];
|
|
|
- if (mediaFile.videoTrack) {
|
|
|
- NSString *width = [[mediaFile videoTrack] valueForKey:@"width"];
|
|
|
- NSString *height = [[mediaFile videoTrack] valueForKey:@"height"];
|
|
|
- if (width.intValue > 0 && height.intValue > 0)
|
|
|
- self.subtitleLabel.text = [self.subtitleLabel.text stringByAppendingFormat:@" — %@x%@", width, height];
|
|
|
- }
|
|
|
- }
|
|
|
- [self _showPositionOfItem:mediaFile];
|
|
|
- self.folderIconView.hidden = YES;
|
|
|
-}
|
|
|
-
|
|
|
-- (void)_showPositionOfItem:(MLFile *)mediaLibraryFile
|
|
|
-{
|
|
|
- if (!mediaLibraryFile)
|
|
|
- return;
|
|
|
- CGFloat position = mediaLibraryFile.lastPosition.floatValue;
|
|
|
- CGFloat duration = mediaLibraryFile.duration.floatValue;
|
|
|
-
|
|
|
- if (position > .05f && position < .95f && (duration * position - duration) < -60000) {
|
|
|
- [(UITextView*)self.mediaIsUnreadView setText:[NSString stringWithFormat:NSLocalizedString(@"LIBRARY_MINUTES_LEFT", nil), [[VLCTime timeWithInt:(duration * position - duration)] minuteStringValue]]];
|
|
|
- self.mediaIsUnreadView.hidden = NO;
|
|
|
- } else if (position != 0.) {
|
|
|
- self.mediaIsUnreadView.hidden = YES;
|
|
|
- } else {
|
|
|
- [(UILabel *)self.mediaIsUnreadView setText:[NSLocalizedString(@"NEW", nil) capitalizedStringWithLocale:[NSLocale currentLocale]]];
|
|
|
- self.mediaIsUnreadView.hidden = NO;
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-- (void)showMetadata:(BOOL)showMeta
|
|
|
-{
|
|
|
- if (showMeta) {
|
|
|
- NSMutableString *mediaInfo = [[NSMutableString alloc] init];
|
|
|
-
|
|
|
- MLFile *theFile;
|
|
|
- if ([self.mediaObject isKindOfClass:[MLFile class]])
|
|
|
- theFile = (MLFile *)self.mediaObject;
|
|
|
- else if ([self.mediaObject isKindOfClass:[MLShowEpisode class]])
|
|
|
- theFile = [[(MLShowEpisode *)self.mediaObject files]anyObject];
|
|
|
- else if ([self.mediaObject isKindOfClass:[MLAlbumTrack class]])
|
|
|
- theFile = [(MLAlbumTrack *)self.mediaObject anyFileFromTrack];
|
|
|
-
|
|
|
- if (!theFile) {
|
|
|
- self.metaDataLabel.hidden = YES;
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- NSMutableArray *videoTracks = [[NSMutableArray alloc] init];
|
|
|
- NSMutableArray *audioTracks = [[NSMutableArray alloc] init];
|
|
|
- NSMutableArray *spuTracks = [[NSMutableArray alloc] init];
|
|
|
- NSArray *tracks = [[theFile tracks] allObjects];
|
|
|
- NSUInteger trackCount = tracks.count;
|
|
|
-
|
|
|
- for (NSUInteger x = 0; x < trackCount; x++) {
|
|
|
- NSManagedObject *track = tracks[x];
|
|
|
- NSString *trackEntityName = [[track entity] name];
|
|
|
- if ([trackEntityName isEqualToString:@"VideoTrackInformation"])
|
|
|
- [videoTracks addObject:track];
|
|
|
- else if ([trackEntityName isEqualToString:@"AudioTrackInformation"])
|
|
|
- [audioTracks addObject:track];
|
|
|
- else if ([trackEntityName isEqualToString:@"SubtitlesTrackInformation"])
|
|
|
- [spuTracks addObject:track];
|
|
|
- }
|
|
|
-
|
|
|
- /* print video info */
|
|
|
- trackCount = videoTracks.count;
|
|
|
-
|
|
|
- if (trackCount > 0) {
|
|
|
- if (trackCount != 1)
|
|
|
- [mediaInfo appendFormat:@"%lu video tracks", (unsigned long)trackCount];
|
|
|
- else
|
|
|
- [mediaInfo appendString:@"1 video track"];
|
|
|
-
|
|
|
- [mediaInfo appendString:@" ("];
|
|
|
- for (NSUInteger x = 0; x < trackCount; x++) {
|
|
|
- int fourcc = [[videoTracks[x] valueForKey:@"codec"] intValue];
|
|
|
- if (x != 0)
|
|
|
- [mediaInfo appendFormat:@", %4.4s", (char *)&fourcc];
|
|
|
- else
|
|
|
- [mediaInfo appendFormat:@"%4.4s", (char *)&fourcc];
|
|
|
- }
|
|
|
- [mediaInfo appendString:@")"];
|
|
|
- }
|
|
|
-
|
|
|
- /* print audio info */
|
|
|
- trackCount = audioTracks.count;
|
|
|
-
|
|
|
- if (trackCount > 0) {
|
|
|
- if (mediaInfo.length > 0)
|
|
|
- [mediaInfo appendString:@"\n\n"];
|
|
|
-
|
|
|
- if (trackCount != 1)
|
|
|
- [mediaInfo appendFormat:@"%lu audio tracks", (unsigned long)trackCount];
|
|
|
- else
|
|
|
- [mediaInfo appendString:@"1 audio track"];
|
|
|
-
|
|
|
- [mediaInfo appendString:@":\n"];
|
|
|
- for (NSUInteger x = 0; x < trackCount; x++) {
|
|
|
- NSManagedObject *track = audioTracks[x];
|
|
|
- int fourcc = [[track valueForKey:@"codec"] intValue];
|
|
|
- if (x != 0)
|
|
|
- [mediaInfo appendFormat:@", %4.4s", (char *)&fourcc];
|
|
|
- else
|
|
|
- [mediaInfo appendFormat:@"%4.4s", (char *)&fourcc];
|
|
|
-
|
|
|
- int channelNumber = [[track valueForKey:@"channelsNumber"] intValue];
|
|
|
- NSString *language = [track valueForKey:@"language"];
|
|
|
- int bitrate = [[track valueForKey:@"bitrate"] intValue];
|
|
|
- if (channelNumber != 0 || language != nil || bitrate > 0) {
|
|
|
- [mediaInfo appendString:@" ["];
|
|
|
-
|
|
|
- if (bitrate > 0)
|
|
|
- [mediaInfo appendFormat:@"%i kbit/s", bitrate / 1024];
|
|
|
-
|
|
|
- if (channelNumber > 0) {
|
|
|
- if (bitrate > 0)
|
|
|
- [mediaInfo appendString:@", "];
|
|
|
-
|
|
|
- if (channelNumber == 1)
|
|
|
- [mediaInfo appendString:@"MONO"];
|
|
|
- else if (channelNumber == 2)
|
|
|
- [mediaInfo appendString:@"STEREO"];
|
|
|
- else
|
|
|
- [mediaInfo appendString:@"MULTI-CHANNEL"];
|
|
|
- }
|
|
|
-
|
|
|
- if (language != nil) {
|
|
|
- if (channelNumber > 0 || bitrate > 0)
|
|
|
- [mediaInfo appendString:@", "];
|
|
|
-
|
|
|
- [mediaInfo appendString:[language uppercaseString]];
|
|
|
- }
|
|
|
-
|
|
|
- [mediaInfo appendString:@"]"];
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- [mediaInfo appendString:@"\n\n"];
|
|
|
-
|
|
|
- /* SPU */
|
|
|
- trackCount = spuTracks.count;
|
|
|
- if (trackCount == 0) {
|
|
|
- NSFileManager *fileManager = [NSFileManager defaultManager];
|
|
|
- NSString *folderLocation = [theFile.url.path stringByDeletingLastPathComponent];
|
|
|
- NSArray *allfiles = [fileManager contentsOfDirectoryAtPath:folderLocation error:nil];
|
|
|
- NSString *fileName = [theFile.path.lastPathComponent stringByDeletingPathExtension];
|
|
|
- NSUInteger count = allfiles.count;
|
|
|
- NSString *additionalFilePath;
|
|
|
- for (unsigned int x = 0; x < count; x++) {
|
|
|
- additionalFilePath = [NSString stringWithFormat:@"%@", allfiles[x]];
|
|
|
- if ([additionalFilePath isSupportedSubtitleFormat])
|
|
|
- if ([additionalFilePath rangeOfString:fileName].location != NSNotFound)
|
|
|
- trackCount ++;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if ((trackCount > 0) || (spuTracks.count > 0)) {
|
|
|
- if (mediaInfo.length > 0)
|
|
|
- [mediaInfo appendString:@"\n\n"];
|
|
|
-
|
|
|
- if (trackCount != 1)
|
|
|
- [mediaInfo appendFormat:@"%lu subtitles tracks", (unsigned long)trackCount];
|
|
|
- else
|
|
|
- [mediaInfo appendString:@"1 subtitles track"];
|
|
|
-
|
|
|
- if (spuTracks.count > 0) {
|
|
|
- [mediaInfo appendString:@" ("];
|
|
|
- for (NSUInteger x = 0; x < trackCount; x++) {
|
|
|
- NSString *language = [spuTracks[x] valueForKey:@"language"];
|
|
|
-
|
|
|
- if (language) {
|
|
|
- if (x != 0)
|
|
|
- [mediaInfo appendFormat:@", %@", [language uppercaseString]];
|
|
|
- else
|
|
|
- [mediaInfo appendString:[language uppercaseString]];
|
|
|
- }
|
|
|
- }
|
|
|
- [mediaInfo appendString:@")"];
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- self.metaDataLabel.text = mediaInfo;
|
|
|
- videoTracks = audioTracks = spuTracks = nil;
|
|
|
- }
|
|
|
-
|
|
|
- void (^animationBlock)(void) = ^() {
|
|
|
- self.metaDataLabel.hidden = !showMeta;
|
|
|
- };
|
|
|
-
|
|
|
- void (^completionBlock)(BOOL finished) = ^(BOOL finished) {
|
|
|
- self.metaDataLabel.hidden = !showMeta;
|
|
|
- };
|
|
|
-
|
|
|
- NSTimeInterval animationDuration = .2;
|
|
|
- [UIView animateWithDuration:animationDuration animations:animationBlock completion:completionBlock];
|
|
|
-}
|
|
|
-
|
|
|
-- (BOOL)showsMetaData
|
|
|
-{
|
|
|
- return !self.metaDataLabel.hidden;
|
|
|
-}
|
|
|
-
|
|
|
-- (void)thumbnailWasUpdated:(NSNotification *)aNotification
|
|
|
-{
|
|
|
- self.thumbnailView.contentMode = UIViewContentModeScaleAspectFill;
|
|
|
- self.thumbnailView.image = [VLCThumbnailsCache thumbnailForManagedObject:self.mediaObject refreshCache:YES];
|
|
|
-}
|
|
|
-
|
|
|
-- (void)prepareForReuse
|
|
|
-{
|
|
|
- [super prepareForReuse];
|
|
|
- self.media = nil;
|
|
|
- self.mediaObject = nil;
|
|
|
- self.thumbnailView.image = nil;
|
|
|
- self.titleLabel.text = @"";
|
|
|
- self.subtitleLabel.text = @"";
|
|
|
- self.mediaIsUnreadView.hidden = YES;
|
|
|
- self.progressView.hidden = YES;
|
|
|
- self.metaDataLabel.hidden = YES;
|
|
|
- self.folderIconView.hidden = YES;
|
|
|
- self.isSelectedView.hidden = YES;
|
|
|
- self.metaDataLabel.hidden = YES;
|
|
|
- self.mediaIsUnreadView.hidden = YES;
|
|
|
-}
|
|
|
-@end
|