将 CMTime 值转换为 swift
Converting CMTime values to swift
我有以下两行代码要移动到 Swift 但我有点卡住了。
CMTime trimmingTime = CMTimeMake(lround(videoAsset.naturalTimeScale / videoAsset.nominalFrameRate), videoAsset.naturalTimeScale);
CMTimeRange timeRange = CMTimeRangeMake(trimmingTime, CMTimeSubtract(videoAsset.timeRange.duration, trimmingTime));
将以下行转换为开头时出现以下错误。
var trimmingTime: CMTime
trimmingTime = CMTimeMake(value: lround(videoAsset.naturalTimeScale / videoAsset.nominalFrameRate), timescale: videoAsset.naturalTimeScale)
Binary operator '/' cannot be applied to operands of type
'CMTimeScale' (aka 'Int32') and 'Float'
我尝试了几种不同的方法,但似乎没有任何效果。
Binary operator '/' cannot be applied to operands of type 'CMTimeScale' (aka 'Int32') and 'Float' so you need forecast CMTimeScale into Float.
您需要将 CMTimeScale
转换为 Float
:
trimmingTime = CMTimeMake(value: lround(Float(videoAsset.naturalTimeScale) / videoAsset.nominalFrameRate), timescale: videoAsset.naturalTimeScale)
您不能像其他语言那样简单地使用不同类型的操作数在 swift 中执行数学运算。您需要手动进行类型转换。
在这里你应该将 videoAsset.naturalTimeScale
(即 CMTimeScale
并且 CMTimeScale 是 Int32
类型)转换为 Float 以使其工作。
Float(videoAsset.naturalTimeScale)
但是 CMTimeMake
的值键将接受值 CMTimeValue
类型的值。所以像这样使用它:
trimmingTime = CMTimeMake(value: CMTimeValue(Float(videoAsset.naturalTimeScale) / videoAsset.nominalFrameRate), timescale: videoAsset.naturalTimeScale)
再次让你的代码更敏捷使用 CMTime
而不是 CMTimeMake
作为:
trimmingTime = CMTime(value: CMTimeValue(Float(videoAsset.naturalTimeScale) / videoAsset.nominalFrameRate), timescale: videoAsset.naturalTimeScale)
我有以下两行代码要移动到 Swift 但我有点卡住了。
CMTime trimmingTime = CMTimeMake(lround(videoAsset.naturalTimeScale / videoAsset.nominalFrameRate), videoAsset.naturalTimeScale);
CMTimeRange timeRange = CMTimeRangeMake(trimmingTime, CMTimeSubtract(videoAsset.timeRange.duration, trimmingTime));
将以下行转换为开头时出现以下错误。
var trimmingTime: CMTime
trimmingTime = CMTimeMake(value: lround(videoAsset.naturalTimeScale / videoAsset.nominalFrameRate), timescale: videoAsset.naturalTimeScale)
Binary operator '/' cannot be applied to operands of type 'CMTimeScale' (aka 'Int32') and 'Float'
我尝试了几种不同的方法,但似乎没有任何效果。
Binary operator '/' cannot be applied to operands of type 'CMTimeScale' (aka 'Int32') and 'Float' so you need forecast CMTimeScale into Float.
您需要将 CMTimeScale
转换为 Float
:
trimmingTime = CMTimeMake(value: lround(Float(videoAsset.naturalTimeScale) / videoAsset.nominalFrameRate), timescale: videoAsset.naturalTimeScale)
您不能像其他语言那样简单地使用不同类型的操作数在 swift 中执行数学运算。您需要手动进行类型转换。
在这里你应该将 videoAsset.naturalTimeScale
(即 CMTimeScale
并且 CMTimeScale 是 Int32
类型)转换为 Float 以使其工作。
Float(videoAsset.naturalTimeScale)
但是 CMTimeMake
的值键将接受值 CMTimeValue
类型的值。所以像这样使用它:
trimmingTime = CMTimeMake(value: CMTimeValue(Float(videoAsset.naturalTimeScale) / videoAsset.nominalFrameRate), timescale: videoAsset.naturalTimeScale)
再次让你的代码更敏捷使用 CMTime
而不是 CMTimeMake
作为:
trimmingTime = CMTime(value: CMTimeValue(Float(videoAsset.naturalTimeScale) / videoAsset.nominalFrameRate), timescale: videoAsset.naturalTimeScale)