You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a start and end points of a video. I want to scroll the video in the trimmerView programatically. Is there any possibility scroll that particular position in the trimmer View.
Please give suggestions.
The text was updated successfully, but these errors were encountered:
This is currently not implemented, so you will have to modify the pod directly to do this.
The idea is to convert your time into a position for the trimmer view.
There is a method in the AVAssetTimeSelector that does just that: getPosition(from time: CMTime) -> CGFloat?
There is something equivalent that has been implemented for the position bar: public func seek(to time: CMTime)
You'll need to do something similar if you want to move the left and right handlers, as well as the underlying scrollView. I'll let you try by yourself, I currently don't have the time to work on this.
If you get something to work, you can open a pull request to share it with everybody.
I have a start and end points of a video. I want to scroll the video in the trimmerView programatically. Is there any possibility scroll that particular position in the trimmer View.
Please give suggestions.
The text was updated successfully, but these errors were encountered: