import Zondy from '../Zondy'
/**
* 视频源格式
* @readonly
* @enum {String}
*/
const VideoSourceType = Object.freeze({
/** rtmp格式 */
rtmp: 'rtmp',
/** MP4格式 */
mp4: 'mp4',
/** hls格式 */
hls: 'm3u8',
/** videoPlayer */
videoPlayer: 'videoPlayer',
/** video HTML */
videoHTML: 'videoHTML'
})
Zondy.Enum.VideoSourceType = VideoSourceType
export default VideoSourceType
