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
|**SourceName**| The URL or local filename of the video. | - |
64
64
|**Ext**| File extension for the video, used when loading from local resources. This is optional when a URL is provided and the URL ends with the video file extension. | "mp4" |
65
-
|**Subtitles**| The URL or local filename of the WebVTT (.vtt) subtitles file to be merged with the video. With a straightforward AVMutableComposition approach, you cannot directly change the position or size of subtitles. AVFoundation’s built-in handling of “text” tracks simply renders them in a default style, without allowing additional layout options. Take a look on the implementation in the example app (Video8.swift) | - |
65
+
|**Subtitles**| The URL or local filename of the WebVTT (.vtt) subtitles file to be merged with the video. With a AVMutableComposition approach that is used currently in the package, you cannot directly change the position or size of subtitles. AVFoundation’s built-in handling of “text” tracks simply renders them in a default style, without allowing additional layout options. Take a look on the implementation in the example app (Video8.swift) | - |
66
66
|**Gravity**| How the video content should be resized to fit the player's bounds. | .resizeAspect |
67
67
|**TimePublishing**| Specifies the interval at which the player publishes the current playback time. | - |
68
68
|**Loop**| Whether the video should automatically restart when it reaches the end. If not explicitly passed, the video will not loop. | false |
0 commit comments