これはばかげているように見えるかもしれませんが、CMTimeの秒をObjective-Cのコンソールに出力するにはどうすればよいですか?値をタイムスケールで割った値が必要なだけで、何らかの形でコンソールに表示されます。
NSLog(@"seconds = %f", CMTimeGetSeconds(cmTime));
シンプル:
NSLog(@"%lld", time.value/time.timescale);
hh:mm:ss
形式で変換する場合は、これを使用できます
NSUInteger durationSeconds = (long)CMTimeGetSeconds(audioDuration);
NSUInteger hours = floor(dTotalSeconds / 3600);
NSUInteger minutes = floor(durationSeconds % 3600 / 60);
NSUInteger seconds = floor(durationSeconds % 3600 % 60);
NSString *time = [NSString stringWithFormat:@"%02ld:%02ld:%02ld", hours, minutes, seconds];
NSLog(@"Time|%@", time);
デバッグのためにCMTime
をコンソールに出力するだけの場合は、CMTimeShow
を使用します。
Objective-C
CMTime time = CMTimeMakeWithSeconds(2.0, 60000);
CMTimeShow(time);
スイフト
var time = CMTimeMakeWithSeconds(2.0, 60000)
CMTimeShow(time)
value
、timescale
を出力し、seconds
を計算します:
{120000/6000 = 2.0}
この前のすべての答えは、NaNの場合を処理しません。
Swift 5:
/// Convert CMTime to TimeInterval
///
/// - Parameter time: CMTime
/// - Returns: TimeInterval
func cmTimeToSeconds(_ time: CMTime) -> TimeInterval? {
let seconds = CMTimeGetSeconds(time)
if seconds.isNaN {
return nil
}
return TimeInterval(seconds)
}
CMTime currentTime = audioPlayer.currentItem.currentTime;
float videoDurationSeconds = CMTimeGetSeconds(currentTime);