Exporting videos on iOS: understanding and setting frame duration property?

♀尐吖头ヾ 提交于 2019-12-02 10:07:43

1) When possible, yes.

2) When source FPS and target FPS are the same, the target video will have better quality and (most possible) the export will be a faster process.

Think of it this way:

When we have e.g. 24FPS source and 24FPS target, the process is just getting a source frame and producing a target frame.

When we have e.g. 24FPS source and 30FPS target, the process will either be:

  1. get 1st frame source -> 1st frame target,

    2nd frame source -> 2nd frame target,

    2nd frame source -> 3rd frame target,

    3rd frame source -> 4th frame target, and so on.

or

  1. get 1st frame source -> 1st frame target

    blend 1st frame source with 2nd frame source -> 2nd frame target

    blend 2nd frame source with 3rd frame source -> 3rd frame target

    get 3rd frame source -> 4th frame target, and so on.

so to produce 30 frames from 24 frames for every second.

Method 1 may not suffer in processing speed, but method 2 does because of the blending involved.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!