├── .gitignore ├── README.md ├── VEVodPlayerAPIExample ├── LICENSE ├── Podfile ├── README.md ├── VEVodPlayerAPIExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── bytedance.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── VEVodPlayerAPIExample.xcscheme │ └── xcuserdata │ │ └── bytedance.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── VEVodPlayerAPIExample.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── bytedance.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist └── VEVodPlayerAPIExample │ ├── AdvancedFeatures │ ├── DebugToolOCViewController.h │ ├── DebugToolOCViewController.m │ ├── DebugToolSwiftViewController.swift │ ├── DirectUrlSubtitleOCViewController.h │ ├── DirectUrlSubtitleOCViewController.m │ ├── DirectUrlSubtitleSwiftViewController.swift │ ├── VidSubtitleOCViewController.h │ ├── VidSubtitleOCViewController.m │ └── VidSubtitleSwiftViewController.swift │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── BasicFeatures │ ├── BasicPlaybackOCViewController.h │ ├── BasicPlaybackOCViewController.m │ ├── BasicPlayerbackSwiftViewController.swift │ ├── DisplayModeOCViewController.h │ ├── DisplayModeOCViewController.m │ └── DisplayModeSwiftViewController.swift │ ├── BestPractice │ ├── ShortVideoOCTableViewCell.h │ ├── ShortVideoOCTableViewCell.m │ ├── ShortVideoOCViewController.h │ ├── ShortVideoOCViewController.m │ ├── ShortVideoSwiftTableViewCell.swift │ └── ShortVideoSwiftViewController.swift │ ├── Info.plist │ ├── InitSDKExample.h │ ├── InitSDKExample.m │ ├── Localizable.xcstrings │ ├── QuickStart │ ├── DirectUrlSourceOCViewController.h │ ├── DirectUrlSourceOCViewController.m │ ├── DirectUrlSourceSwiftViewController.swift │ ├── VidSourceOCViewController.h │ ├── VidSourceOCViewController.m │ └── VidSourceSwiftViewController.swift │ ├── RootViewController.h │ ├── RootViewController.m │ ├── Utils │ ├── VEAPIButton.h │ ├── VEAPIButton.m │ ├── VEAPIConstants.h │ ├── VEAPIConstants.m │ ├── VEAPITools.h │ └── VEAPITools.m │ ├── VEAPIVideoModel │ ├── VEAPIMediaSource.h │ ├── VEAPIMediaSource.m │ ├── VEAPISwiftVideoModel.swift │ ├── VEAPIVideoModel.h │ └── VEAPIVideoModel.m │ ├── VEVodPlayerAPIExample-Bridging-Header.h │ └── main.m └── VOLCDemo ├── .gitignore ├── LICENSE ├── Podfile ├── VEBaseKit ├── Classes │ ├── Categorys │ │ ├── NSArray+BTDAdditions.h │ │ ├── NSArray+BTDAdditions.m │ │ ├── NSData+BTDAdditions.h │ │ ├── NSData+BTDAdditions.m │ │ ├── NSDictionary+BTDAdditions.h │ │ ├── NSDictionary+BTDAdditions.m │ │ ├── NSNumber+BTDAdditions.h │ │ ├── NSNumber+BTDAdditions.m │ │ ├── NSObject+BTDAdditions.h │ │ ├── NSObject+BTDAdditions.m │ │ ├── NSPointerArray+AbstractionHelpers.h │ │ ├── NSPointerArray+AbstractionHelpers.m │ │ ├── NSSet+BTDAdditions.h │ │ ├── NSSet+BTDAdditions.m │ │ ├── NSString+BTDAdditions.h │ │ ├── NSString+BTDAdditions.m │ │ ├── NSTimer+BTDAdditions.h │ │ ├── NSTimer+BTDAdditions.m │ │ ├── NSURL+BTDAdditions.h │ │ ├── NSURL+BTDAdditions.m │ │ ├── NSURLComponents+BTDAdditions.h │ │ ├── NSURLComponents+BTDAdditions.m │ │ ├── UIColor+RGB.h │ │ ├── UIColor+RGB.m │ │ ├── UIDevice+BTDAdditions.h │ │ ├── UIDevice+BTDAdditions.m │ │ ├── UIView+BDShowView.h │ │ ├── UIView+BDShowView.m │ │ ├── UIView+BTDAdditions.h │ │ ├── UIView+BTDAdditions.m │ │ ├── UIWindow+BTDAdditions.h │ │ └── UIWindow+BTDAdditions.m │ └── Utility │ │ ├── BTDMacros.h │ │ ├── BTDMacros.m │ │ ├── BTDResponder.h │ │ ├── BTDResponder.m │ │ ├── BTDWeakProxy.h │ │ ├── BTDWeakProxy.m │ │ ├── VELRUCache.h │ │ ├── VELRUCache.m │ │ ├── VEPlayerUtility.h │ │ └── VEPlayerUtility.m └── VEBaseKit.podspec ├── VEPlayerKit ├── Classes │ ├── Interaction │ │ ├── ActionView │ │ │ ├── VEPlayerActionView.h │ │ │ └── VEPlayerActionView.m │ │ ├── ActionViewInterface │ │ │ ├── VEPlayerActionViewInterface.h │ │ │ ├── VEPlayerViewService.h │ │ │ └── VEPlayerViewService.m │ │ ├── BaseModule │ │ │ ├── VEDelegateMultiplexer.h │ │ │ ├── VEDelegateMultiplexer.m │ │ │ ├── VEPlayerBaseModule.h │ │ │ ├── VEPlayerBaseModule.m │ │ │ ├── VEPlayerBaseModuleProtocol.h │ │ │ ├── VEPlayerModuleManager.h │ │ │ ├── VEPlayerModuleManager.m │ │ │ ├── VEPlayerModuleManagerInterface.h │ │ │ └── VEPlayerViewLifeCycleProtocol.h │ │ ├── Context │ │ │ ├── VEPlayerContext.h │ │ │ ├── VEPlayerContext.m │ │ │ ├── VEPlayerContextDI.h │ │ │ ├── VEPlayerContextDI.m │ │ │ ├── VEPlayerContextDIInterface.h │ │ │ ├── VEPlayerContextInterface.h │ │ │ ├── VEPlayerContextItem.h │ │ │ ├── VEPlayerContextItem.m │ │ │ ├── VEPlayerContextItemHandler.h │ │ │ ├── VEPlayerContextItemHandler.m │ │ │ ├── VEPlayerContextKeyDefine.h │ │ │ ├── VEPlayerContextKeyDefine.m │ │ │ ├── VEPlayerContextMacros.h │ │ │ ├── VEPlayerContextStorage.h │ │ │ └── VEPlayerContextStorage.m │ │ ├── ControlView │ │ │ ├── VEPlayerControlView.h │ │ │ ├── VEPlayerControlView.m │ │ │ └── VEPlayerControlViewDefine.h │ │ ├── GestureService │ │ │ ├── Private │ │ │ │ ├── VEPlayerGestureDisableHandler.h │ │ │ │ ├── VEPlayerGestureDisableHandler.m │ │ │ │ ├── VEPlayerGestureWrapper.h │ │ │ │ └── VEPlayerGestureWrapper.m │ │ │ ├── VEPlayerGestureHandlerProtocol.h │ │ │ ├── VEPlayerGestureService.h │ │ │ ├── VEPlayerGestureService.m │ │ │ └── VEPlayerGestureServiceInterface.h │ │ ├── Interaction │ │ │ ├── VEPlayerInteraction.h │ │ │ ├── VEPlayerInteraction.m │ │ │ └── VEPlayerInteractionDefine.h │ │ └── ModuleLoader │ │ │ ├── VEFrameScatterPerform.h │ │ │ ├── VEFrameScatterPerform.m │ │ │ ├── VELoopScatterPerform.h │ │ │ ├── VELoopScatterPerform.m │ │ │ ├── VEPlayerBaseModuleLoader.h │ │ │ ├── VEPlayerBaseModuleLoader.m │ │ │ └── VEScatterPerformProtocol.h │ ├── PlayerCore │ │ ├── EnginePool │ │ │ ├── VEVideoEnginePool.h │ │ │ └── VEVideoEnginePool.m │ │ ├── State │ │ │ ├── VEPlayFinishStatus.h │ │ │ └── VEPlayFinishStatus.m │ │ ├── VEPlayProtocol.h │ │ ├── VEPlayerKit.h │ │ ├── VEVideoPlayback.h │ │ ├── VEVideoPlaybackDefine.h │ │ ├── VEVideoPlayerConfiguration.h │ │ ├── VEVideoPlayerConfiguration.m │ │ ├── VEVideoPlayerController+DebugTool.h │ │ ├── VEVideoPlayerController+DebugTool.m │ │ ├── VEVideoPlayerController+DisRecordScreen.h │ │ ├── VEVideoPlayerController+DisRecordScreen.m │ │ ├── VEVideoPlayerController+Observer.h │ │ ├── VEVideoPlayerController+Observer.m │ │ ├── VEVideoPlayerController+Resolution.h │ │ ├── VEVideoPlayerController+Resolution.m │ │ ├── VEVideoPlayerController+Strategy.h │ │ ├── VEVideoPlayerController+Strategy.m │ │ ├── VEVideoPlayerController+Tips.h │ │ ├── VEVideoPlayerController+Tips.m │ │ ├── VEVideoPlayerController+VEPlayCoreAbility.h │ │ ├── VEVideoPlayerController+VEPlayCoreAbility.m │ │ ├── VEVideoPlayerController.h │ │ ├── VEVideoPlayerController.m │ │ ├── VEVideoPlayerPipController.h │ │ ├── VEVideoPlayerPipController.m │ │ └── VideoEngine │ │ │ ├── TTVideoEngineSourceCategory.h │ │ │ └── TTVideoEngineSourceCategory.m │ ├── PlayerLog │ │ ├── VEPlayerExceptionLogger.h │ │ ├── VEPlayerExceptionLogger.m │ │ └── VEPlayerExceptionLoggerDefine.h │ └── PlayerModule │ │ ├── PlayerModel │ │ ├── VEPlayerSeekState.h │ │ └── VEPlayerSeekState.m │ │ ├── PlayerModule │ │ ├── VEPlayerBackModule.h │ │ ├── VEPlayerBackModule.m │ │ ├── VEPlayerFullScreenModule.h │ │ ├── VEPlayerFullScreenModule.m │ │ ├── VEPlayerLoadingModule.h │ │ ├── VEPlayerLoadingModule.m │ │ ├── VEPlayerLockModule.h │ │ ├── VEPlayerLockModule.m │ │ ├── VEPlayerPipModule.h │ │ ├── VEPlayerPipModule.m │ │ ├── VEPlayerResolutionModule.h │ │ ├── VEPlayerResolutionModule.m │ │ ├── VEPlayerSeekModule.h │ │ ├── VEPlayerSeekModule.m │ │ ├── VEPlayerSeekProgressModule.h │ │ ├── VEPlayerSeekProgressModule.m │ │ ├── VEPlayerSpeedModule.h │ │ ├── VEPlayerSpeedModule.m │ │ ├── VEPlayerSubtitleModule.h │ │ ├── VEPlayerSubtitleModule.m │ │ ├── VEPlayerVisibleModule.h │ │ └── VEPlayerVisibleModule.m │ │ └── PlayerUI │ │ ├── Loading │ │ ├── VEActivityIndicator.h │ │ ├── VEActivityIndicator.m │ │ ├── VELPlayerLoadingView.h │ │ └── VELPlayerLoadingView.m │ │ ├── Subtitle │ │ ├── VEPlayerSubtitleView.h │ │ └── VEPlayerSubtitleView.m │ │ ├── VEPlayerResolutionView.h │ │ ├── VEPlayerResolutionView.m │ │ ├── VEPlayerSeekProgressView.h │ │ ├── VEPlayerSeekProgressView.m │ │ ├── VEPlayerSpeedView.h │ │ ├── VEPlayerSpeedView.m │ │ ├── VESliderControlView.h │ │ └── VESliderControlView.m └── VEPlayerKit.podspec ├── VESceneModule ├── Classes │ ├── Ad │ │ ├── Data │ │ │ └── Model │ │ │ │ ├── VEAdInfoModel.h │ │ │ │ └── VEAdInfoModel.m │ │ ├── ExampleAd │ │ │ ├── ExampleAdAction.h │ │ │ ├── ExampleAdAction.m │ │ │ ├── ExampleAdContextKeyDefine.h │ │ │ ├── ExampleAdContextKeyDefine.m │ │ │ ├── ExampleAdManager.h │ │ │ ├── ExampleAdManager.m │ │ │ ├── ExampleAdPlayerModuleLoader.h │ │ │ ├── ExampleAdPlayerModuleLoader.m │ │ │ ├── ExampleAdProvider.h │ │ │ ├── ExampleAdProvider.m │ │ │ ├── ExampleAdViewController.h │ │ │ ├── ExampleAdViewController.m │ │ │ ├── PlayerModules │ │ │ │ ├── ExampleAdDetailModule.h │ │ │ │ ├── ExampleAdDetailModule.m │ │ │ │ ├── ExampleAdLabelModule.h │ │ │ │ ├── ExampleAdLabelModule.m │ │ │ │ ├── ExampleAdPlayButtonModule.h │ │ │ │ └── ExampleAdPlayButtonModule.m │ │ │ └── Utils │ │ │ │ ├── UIColor+Hex.h │ │ │ │ └── UIColor+Hex.m │ │ ├── Protocol │ │ │ ├── VEAdActionResponderDelegate.h │ │ │ └── VEAdManagerDelegate.h │ │ ├── VEAdCellController.h │ │ ├── VEAdCellController.m │ │ ├── VEAdOperator.h │ │ └── VEAdOperator.m │ ├── Config │ │ ├── VEVideoPlayerConfigurationFactory.h │ │ └── VEVideoPlayerConfigurationFactory.m │ ├── CustomPlayVideo │ │ ├── VEPlayUrlConfigViewController.h │ │ ├── VEPlayUrlConfigViewController.m │ │ ├── VEVideoUrlParser.h │ │ └── VEVideoUrlParser.m │ ├── Data │ │ ├── DataManager │ │ │ ├── VEDataManager.h │ │ │ ├── VEDataManager.m │ │ │ ├── VESettingManager.h │ │ │ └── VESettingManager.m │ │ ├── Model │ │ │ ├── VESettingModel.h │ │ │ ├── VESettingModel.m │ │ │ ├── VEVideoModel.h │ │ │ └── VEVideoModel.m │ │ └── Network │ │ │ ├── VENetworkHelper.h │ │ │ └── VENetworkHelper.m │ ├── FeedVideo │ │ ├── Cell │ │ │ ├── VEFeedVideoNormalCell.h │ │ │ ├── VEFeedVideoNormalCell.m │ │ │ └── VEFeedVideoNormalCell.xib │ │ ├── VEFeedVideoCellPlayerModuleLoader.h │ │ ├── VEFeedVideoCellPlayerModuleLoader.m │ │ ├── VEFeedVideoDetailViewController.h │ │ ├── VEFeedVideoDetailViewController.m │ │ ├── VEFeedVideoPlayerModuleLoader.h │ │ ├── VEFeedVideoPlayerModuleLoader.m │ │ ├── VEFeedVideoViewController.h │ │ └── VEFeedVideoViewController.m │ ├── LongVideo │ │ ├── Cell │ │ │ ├── VELongVideoViewNormalCell.h │ │ │ ├── VELongVideoViewNormalCell.m │ │ │ ├── VELongVideoViewNormalCell.xib │ │ │ ├── VELongVideoViewTopCell.h │ │ │ ├── VELongVideoViewTopCell.m │ │ │ └── VELongVideoViewTopCell.xib │ │ ├── LongVideoUIView │ │ │ ├── VELongVideoIntroduceView.h │ │ │ ├── VELongVideoIntroduceView.m │ │ │ ├── VELongVideoOtherFunctionsView.h │ │ │ ├── VELongVideoOtherFunctionsView.m │ │ │ ├── VELongVideoSliderControlView.h │ │ │ └── VELongVideoSliderControlView.m │ │ ├── PlayerModules │ │ │ ├── VELongVideoIntroduceModule.h │ │ │ ├── VELongVideoIntroduceModule.m │ │ │ ├── VELongVideoOtherFunctionsModule.h │ │ │ ├── VELongVideoOtherFunctionsModule.m │ │ │ ├── VELongVideoPlayButtonModule.h │ │ │ ├── VELongVideoPlayButtonModule.m │ │ │ ├── VELongVideoSeekModule.h │ │ │ └── VELongVideoSeekModule.m │ │ ├── UIViewController+Orientation.h │ │ ├── UIViewController+Orientation.m │ │ ├── VELongVideoDetailViewController.h │ │ ├── VELongVideoDetailViewController.m │ │ ├── VELongVideoPlayerModuleLoader.h │ │ ├── VELongVideoPlayerModuleLoader.m │ │ ├── VELongVideoViewController.h │ │ ├── VELongVideoViewController.m │ │ ├── VELongVideoViewLayout.h │ │ └── VELongVideoViewLayout.m │ ├── MediaModel │ │ ├── VEMediaCellFactory.h │ │ └── VEMediaCellFactory.m │ ├── Setting │ │ ├── Cell │ │ │ ├── VESettingCell.h │ │ │ ├── VESettingCell.m │ │ │ ├── VESettingDisplayCell.h │ │ │ ├── VESettingDisplayCell.m │ │ │ ├── VESettingDisplayCell.xib │ │ │ ├── VESettingDisplayDetailCell.h │ │ │ ├── VESettingDisplayDetailCell.m │ │ │ ├── VESettingDisplayDetailCell.xib │ │ │ ├── VESettingSwitcherCell.h │ │ │ ├── VESettingSwitcherCell.m │ │ │ ├── VESettingSwitcherCell.xib │ │ │ ├── VESettingTypeMutilSelectorCell.h │ │ │ ├── VESettingTypeMutilSelectorCell.m │ │ │ └── VESettingTypeMutilSelectorCell.xib │ │ ├── VESettingViewController.h │ │ └── VESettingViewController.m │ ├── ShortDrama │ │ ├── Data │ │ │ ├── DataManager │ │ │ │ ├── VEDramaDataManager.h │ │ │ │ └── VEDramaDataManager.m │ │ │ └── Model │ │ │ │ ├── VEDramaEpisodeInfoModel.h │ │ │ │ ├── VEDramaEpisodeInfoModel.m │ │ │ │ ├── VEDramaInfoModel.h │ │ │ │ ├── VEDramaInfoModel.m │ │ │ │ ├── VEDramaPayInfoModel.h │ │ │ │ ├── VEDramaPayInfoModel.m │ │ │ │ ├── VEDramaVideoInfoModel.h │ │ │ │ └── VEDramaVideoInfoModel.m │ │ ├── PlayerModules │ │ │ ├── ShortDramaIntroduceModule.h │ │ │ ├── ShortDramaIntroduceModule.m │ │ │ ├── ShortDramaPayModule.h │ │ │ ├── ShortDramaPayModule.m │ │ │ ├── ShortDramaPlayButtonModule.h │ │ │ ├── ShortDramaPlayButtonModule.m │ │ │ ├── ShortDramaPlayerMaskModule.h │ │ │ ├── ShortDramaPlayerMaskModule.m │ │ │ ├── ShortDramaPlayerSpeedModule.h │ │ │ ├── ShortDramaPlayerSpeedModule.m │ │ │ ├── ShortDramaPlayerToastModule.h │ │ │ ├── ShortDramaPlayerToastModule.m │ │ │ ├── ShortDramaRecommodIntroduceModule.h │ │ │ ├── ShortDramaRecommodIntroduceModule.m │ │ │ ├── ShortDramaRecordStartTimeModule.h │ │ │ ├── ShortDramaRecordStartTimeModule.m │ │ │ ├── ShortDramaSelectionModule.h │ │ │ ├── ShortDramaSelectionModule.m │ │ │ ├── ShortDramaSeriesModule.h │ │ │ └── ShortDramaSeriesModule.m │ │ ├── ShortDramaFeedController │ │ │ ├── DramaCollect │ │ │ │ ├── ShortDramaCollectViewController.h │ │ │ │ └── ShortDramaCollectViewController.m │ │ │ ├── DramaDetail │ │ │ │ ├── ShortDramaDetailPlayerModuleLoader.h │ │ │ │ ├── ShortDramaDetailPlayerModuleLoader.m │ │ │ │ ├── VEShortDramaDetailFeedViewController.h │ │ │ │ ├── VEShortDramaDetailFeedViewController.m │ │ │ │ ├── VEShortDramaDetailVideoCellController.h │ │ │ │ └── VEShortDramaDetailVideoCellController.m │ │ │ ├── DramaPay │ │ │ │ ├── ShortDramaCachePayManager.h │ │ │ │ ├── ShortDramaCachePayManager.m │ │ │ │ ├── ShortDramaPayViewController.h │ │ │ │ └── ShortDramaPayViewController.m │ │ │ ├── DramaPraise │ │ │ │ ├── ShortDramaPraiseViewController.h │ │ │ │ └── ShortDramaPraiseViewController.m │ │ │ ├── DramaRecommod │ │ │ │ ├── ShortDramaRecommodPlayerModuleLoader.h │ │ │ │ ├── ShortDramaRecommodPlayerModuleLoader.m │ │ │ │ ├── VEShortDramaVideoCellController.h │ │ │ │ ├── VEShortDramaVideoCellController.m │ │ │ │ ├── VEShortDramaVideoFeedViewController.h │ │ │ │ └── VEShortDramaVideoFeedViewController.m │ │ │ └── DramaSelection │ │ │ │ ├── ShortDramaSelectionCell.h │ │ │ │ ├── ShortDramaSelectionCell.m │ │ │ │ ├── ShortDramaSelectionViewController.h │ │ │ │ └── ShortDramaSelectionViewController.m │ │ ├── ShortDramaListController │ │ │ ├── VEShortDramaListViewController.h │ │ │ ├── VEShortDramaListViewController.m │ │ │ ├── VEShortDramaVideoViewNormalCell.h │ │ │ └── VEShortDramaVideoViewNormalCell.m │ │ ├── ShortDramaUIView │ │ │ ├── ShortDramaIntroduceView.h │ │ │ ├── ShortDramaIntroduceView.m │ │ │ ├── ShortDramaSelectionView.h │ │ │ ├── ShortDramaSelectionView.m │ │ │ ├── ShortDramaSeriesView.h │ │ │ ├── ShortDramaSeriesView.m │ │ │ ├── ShortDramaSpeedTipView.h │ │ │ └── ShortDramaSpeedTipView.m │ │ ├── VEShortDramaPagingViewController.h │ │ └── VEShortDramaPagingViewController.m │ ├── ShortVideo │ │ ├── PlayerModules │ │ │ ├── ShortVideoPlayButtonModule.h │ │ │ └── ShortVideoPlayButtonModule.m │ │ ├── VEShortVideoCellController.h │ │ ├── VEShortVideoCellController.m │ │ ├── VEShortVideoPlayerModuleLoader.h │ │ ├── VEShortVideoPlayerModuleLoader.m │ │ ├── VEShortVideoViewController.h │ │ └── VEShortVideoViewController.m │ └── UIComponents │ │ ├── BaseController │ │ ├── VEViewController.h │ │ └── VEViewController.m │ │ ├── PageUIKit │ │ ├── VEPageViewController.h │ │ └── VEPageViewController.m │ │ └── SectionUIKit │ │ ├── VEScrollViewController.h │ │ ├── VEScrollViewController.m │ │ ├── VESelectionBarView.h │ │ ├── VESelectionBarView.m │ │ ├── VESelectionViewController.h │ │ └── VESelectionViewController.m └── VESceneModule.podspec ├── VEVodMain ├── Entry │ ├── VEMainViewController.h │ ├── VEMainViewController.m │ └── VEMainViewController.xib ├── Resources │ ├── Assets.xcassets │ │ ├── Contents.json │ │ ├── LaunchImage.launchimage │ │ │ └── Contents.json │ │ ├── ad_detail_tag.imageset │ │ │ ├── Contents.json │ │ │ ├── ad_detail_tag.png │ │ │ ├── ad_detail_tag@2x.png │ │ │ └── ad_detail_tag@3x.png │ │ ├── ad_image.imageset │ │ │ ├── Contents.json │ │ │ ├── ad_image.png │ │ │ ├── ad_image@2x.png │ │ │ └── ad_image@3x.png │ │ ├── back.imageset │ │ │ ├── Contents.json │ │ │ ├── back@2x.png │ │ │ └── back@3x.png │ │ ├── close.imageset │ │ │ ├── Contents.json │ │ │ ├── close_circle@2x.png │ │ │ └── close_circle@3x.png │ │ ├── fake_feed_holder.imageset │ │ │ ├── Contents.json │ │ │ ├── fake_img@2x.png │ │ │ └── fake_img@3x.png │ │ ├── fake_long_normal_holder.imageset │ │ │ ├── Contents.json │ │ │ ├── fake_long_normal_holder@2x.png │ │ │ └── fake_long_normal_holder@3x.png │ │ ├── fake_long_top_holder.imageset │ │ │ ├── Contents.json │ │ │ ├── fake_long_top_holder@2x.png │ │ │ └── fake_long_top_holder@3x.png │ │ ├── fake_user.imageset │ │ │ ├── Contents.json │ │ │ └── fake_user.png │ │ ├── feed_comment.imageset │ │ │ ├── Contents.json │ │ │ ├── feed_comment@2x.png │ │ │ └── feed_comment@3x.png │ │ ├── feed_like.imageset │ │ │ ├── Contents.json │ │ │ ├── feed_like@2x.png │ │ │ └── feed_like@3x.png │ │ ├── feed_play.imageset │ │ │ ├── Contents.json │ │ │ ├── feed_play@2x.png │ │ │ └── feed_play@3x.png │ │ ├── feed_star.imageset │ │ │ ├── Contents.json │ │ │ ├── feed_star@2x.png │ │ │ └── feed_star@3x.png │ │ ├── icon_close.imageset │ │ │ ├── Contents.json │ │ │ ├── _RoundBtnicon_close-1.png │ │ │ └── _RoundBtnicon_close.png │ │ ├── icon_collect_nor.imageset │ │ │ ├── Contents.json │ │ │ ├── icon collecticon_collect_nor-1.png │ │ │ └── icon collecticon_collect_nor.png │ │ ├── icon_collect_sel.imageset │ │ │ ├── Contents.json │ │ │ ├── collecticon_collect_sel-1.png │ │ │ └── collecticon_collect_sel.png │ │ ├── icon_dis_record_screen.imageset │ │ │ ├── Contents.json │ │ │ ├── Subtracticon_dis_record_screen-1.png │ │ │ └── Subtracticon_dis_record_screen.png │ │ ├── icon_dot.imageset │ │ │ ├── 7.27圆点icon_dot-1.png │ │ │ ├── 7.27圆点icon_dot.png │ │ │ └── Contents.json │ │ ├── icon_dot_big.imageset │ │ │ ├── Contents.json │ │ │ ├── 当前锚点icon_dot_big-1.png │ │ │ └── 当前锚点icon_dot_big.png │ │ ├── icon_drama.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_短剧首页icon_drama-1.png │ │ │ └── icon_短剧首页icon_drama.png │ │ ├── icon_drama_list_cover.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_drama_list_cover-1.png │ │ │ └── icon_drama_list_cover.png │ │ ├── icon_drama_lock.imageset │ │ │ ├── Contents.json │ │ │ ├── Group 2036084238icon_lock@2x.png │ │ │ └── Group 2036084238icon_lock@3x.png │ │ ├── icon_drama_selec.imageset │ │ │ ├── Contents.json │ │ │ ├── Group 356icon_drama_selec-1.png │ │ │ └── Group 356icon_drama_selec.png │ │ ├── icon_feed.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_feed@2x.png │ │ │ └── icon_feed@3x.png │ │ ├── icon_feed_cover.imageset │ │ │ ├── Contents.json │ │ │ ├── Mask Bottomicon_feed_backgroud-1.png │ │ │ └── Mask Bottomicon_feed_backgroud.png │ │ ├── icon_home_background.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_home_background@2x.png │ │ │ └── icon_home_background@3x.png │ │ ├── icon_long.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_long@2x.png │ │ │ └── icon_long@3x.png │ │ ├── icon_money.imageset │ │ │ ├── Contents.json │ │ │ ├── Frameicon_money@2x.png │ │ │ └── Frameicon_money@3x.png │ │ ├── icon_palying_drama.imageset │ │ │ ├── Contents.json │ │ │ ├── Frame 2037234945icon_cur_play-1.png │ │ │ └── Frame 2037234945icon_cur_play.png │ │ ├── icon_play_sign.imageset │ │ │ ├── Contents.json │ │ │ ├── Fill 1icon_play_sign-1.png │ │ │ └── Fill 1icon_play_sign.png │ │ ├── icon_praise_nor.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_praise_nor@2x.png │ │ │ └── icon_praise_nor@3x.png │ │ ├── icon_praise_sel.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_praise_sel@2x.png │ │ │ └── icon_praise_sel@3x.png │ │ ├── icon_setting.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_setting@2x.png │ │ │ └── icon_setting@3x.png │ │ ├── icon_short.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_short@2x.png │ │ │ └── icon_short@3x.png │ │ ├── icon_shot_drama.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_shot_drama@2x.png │ │ │ └── icon_shot_drama@3x.png │ │ ├── icon_speed_0.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_speed_1@2x.png │ │ │ └── icon_speed_1@3x.png │ │ ├── icon_speed_1.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_speed_2@2x.png │ │ │ └── icon_speed_2@3x.png │ │ ├── icon_up_arrow.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_arrow_packupicon_up_arrow-1.png │ │ │ └── ic_arrow_packupicon_up_arrow.png │ │ ├── long_video_lock.imageset │ │ │ ├── Contents.json │ │ │ ├── long_video_lock@2x.png │ │ │ └── long_video_lock@3x.png │ │ ├── long_video_loopplay.imageset │ │ │ ├── Contents.json │ │ │ ├── 循环播放-off 1.png │ │ │ └── 循环播放-off.png │ │ ├── long_video_loopplay_sel.imageset │ │ │ ├── Contents.json │ │ │ ├── 循环播放-on 1.png │ │ │ └── 循环播放-on.png │ │ ├── long_video_more.imageset │ │ │ ├── Contents.json │ │ │ ├── long_video_more@2x.png │ │ │ └── long_video_more@3x.png │ │ ├── long_video_portrait.imageset │ │ │ ├── Contents.json │ │ │ ├── long_video_portrait@2x.png │ │ │ └── long_video_portrait@3x.png │ │ ├── long_video_resolution.imageset │ │ │ ├── Contents.json │ │ │ ├── long_video_resolution@2x.png │ │ │ └── long_video_resolution@3x.png │ │ ├── long_video_speed.imageset │ │ │ ├── Contents.json │ │ │ ├── long_video_speed@2x.png │ │ │ └── long_video_speed@3x.png │ │ ├── long_video_sr.imageset │ │ │ ├── Contents.json │ │ │ ├── long_video_sr@2x.png │ │ │ └── long_video_sr@3x.png │ │ ├── long_video_sr_sel.imageset │ │ │ ├── Contents.json │ │ │ ├── long_video_sr_sel@2x.png │ │ │ └── long_video_sr_sel@3x.png │ │ ├── long_video_unlock.imageset │ │ │ ├── Contents.json │ │ │ ├── long_video_unlock@2x.png │ │ │ └── long_video_unlock@3x.png │ │ ├── main_arrow_right.imageset │ │ │ ├── Contents.json │ │ │ ├── main_arrow_right@2x.png │ │ │ └── main_arrow_right@3x.png │ │ ├── video_drama_play.imageset │ │ │ ├── Contents.json │ │ │ ├── 播放icon_play_big-1.png │ │ │ └── 播放icon_play_big.png │ │ ├── video_page_back.imageset │ │ │ ├── Contents.json │ │ │ ├── video_page_back@2x.png │ │ │ └── video_page_back@3x.png │ │ ├── video_pause.imageset │ │ │ ├── Contents.json │ │ │ ├── video_pause@2x.png │ │ │ └── video_pause@3x.png │ │ ├── video_play.imageset │ │ │ ├── Contents.json │ │ │ ├── video_play@2x.png │ │ │ └── video_play@3x.png │ │ └── video_slide_dragbar.imageset │ │ │ ├── Contents.json │ │ │ ├── video_slide_dragbar@2x.png │ │ │ └── video_slide_dragbar@3x.png │ ├── en.lproj │ │ └── VodLocalizable.strings │ └── zh-Hans.lproj │ │ └── VodLocalizable.strings └── VEVodMain.podspec ├── VOLCDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── bytedance.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── VOLCDemo.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── bytedance.xcuserdatad │ └── IDEFindNavigatorScopes.plist └── VOLCDemo └── Base ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj └── LaunchScreen.storyboard ├── Info.plist ├── Resources.xcassets ├── AppIcon.appiconset │ ├── 1024.png │ ├── 114.png │ ├── 120.png │ ├── 128.png │ ├── 136.png │ ├── 152.png │ ├── 167.png │ ├── 180.png │ ├── 192.png │ ├── 40.png │ ├── 58.png │ ├── 60.png │ ├── 76.png │ ├── 80.png │ ├── 87.png │ └── Contents.json ├── Contents.json └── LaunchImage.launchimage │ └── Contents.json ├── VOLCDemoPrefix.pch └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/README.md -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/LICENSE -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/Podfile -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/README.md -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample.xcodeproj/project.xcworkspace/xcuserdata/bytedance.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample.xcodeproj/project.xcworkspace/xcuserdata/bytedance.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample.xcodeproj/xcshareddata/xcschemes/VEVodPlayerAPIExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample.xcodeproj/xcshareddata/xcschemes/VEVodPlayerAPIExample.xcscheme -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample.xcodeproj/xcuserdata/bytedance.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample.xcodeproj/xcuserdata/bytedance.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample.xcworkspace/xcuserdata/bytedance.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample.xcworkspace/xcuserdata/bytedance.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample.xcworkspace/xcuserdata/bytedance.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample.xcworkspace/xcuserdata/bytedance.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/AdvancedFeatures/DebugToolOCViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/AdvancedFeatures/DebugToolOCViewController.h -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/AdvancedFeatures/DebugToolOCViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/AdvancedFeatures/DebugToolOCViewController.m -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/AdvancedFeatures/DebugToolSwiftViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/AdvancedFeatures/DebugToolSwiftViewController.swift -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/AdvancedFeatures/DirectUrlSubtitleOCViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/AdvancedFeatures/DirectUrlSubtitleOCViewController.h -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/AdvancedFeatures/DirectUrlSubtitleOCViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/AdvancedFeatures/DirectUrlSubtitleOCViewController.m -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/AdvancedFeatures/DirectUrlSubtitleSwiftViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/AdvancedFeatures/DirectUrlSubtitleSwiftViewController.swift -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/AdvancedFeatures/VidSubtitleOCViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/AdvancedFeatures/VidSubtitleOCViewController.h -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/AdvancedFeatures/VidSubtitleOCViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/AdvancedFeatures/VidSubtitleOCViewController.m -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/AdvancedFeatures/VidSubtitleSwiftViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/AdvancedFeatures/VidSubtitleSwiftViewController.swift -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/AppDelegate.h -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/AppDelegate.m -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/BasicFeatures/BasicPlaybackOCViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/BasicFeatures/BasicPlaybackOCViewController.h -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/BasicFeatures/BasicPlaybackOCViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/BasicFeatures/BasicPlaybackOCViewController.m -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/BasicFeatures/BasicPlayerbackSwiftViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/BasicFeatures/BasicPlayerbackSwiftViewController.swift -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/BasicFeatures/DisplayModeOCViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/BasicFeatures/DisplayModeOCViewController.h -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/BasicFeatures/DisplayModeOCViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/BasicFeatures/DisplayModeOCViewController.m -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/BasicFeatures/DisplayModeSwiftViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/BasicFeatures/DisplayModeSwiftViewController.swift -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/BestPractice/ShortVideoOCTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/BestPractice/ShortVideoOCTableViewCell.h -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/BestPractice/ShortVideoOCTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/BestPractice/ShortVideoOCTableViewCell.m -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/BestPractice/ShortVideoOCViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/BestPractice/ShortVideoOCViewController.h -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/BestPractice/ShortVideoOCViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/BestPractice/ShortVideoOCViewController.m -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/BestPractice/ShortVideoSwiftTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/BestPractice/ShortVideoSwiftTableViewCell.swift -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/BestPractice/ShortVideoSwiftViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/BestPractice/ShortVideoSwiftViewController.swift -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/Info.plist -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/InitSDKExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/InitSDKExample.h -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/InitSDKExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/InitSDKExample.m -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/Localizable.xcstrings -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/QuickStart/DirectUrlSourceOCViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/QuickStart/DirectUrlSourceOCViewController.h -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/QuickStart/DirectUrlSourceOCViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/QuickStart/DirectUrlSourceOCViewController.m -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/QuickStart/DirectUrlSourceSwiftViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/QuickStart/DirectUrlSourceSwiftViewController.swift -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/QuickStart/VidSourceOCViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/QuickStart/VidSourceOCViewController.h -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/QuickStart/VidSourceOCViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/QuickStart/VidSourceOCViewController.m -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/QuickStart/VidSourceSwiftViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/QuickStart/VidSourceSwiftViewController.swift -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/RootViewController.h -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/RootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/RootViewController.m -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/Utils/VEAPIButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/Utils/VEAPIButton.h -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/Utils/VEAPIButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/Utils/VEAPIButton.m -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/Utils/VEAPIConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/Utils/VEAPIConstants.h -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/Utils/VEAPIConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/Utils/VEAPIConstants.m -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/Utils/VEAPITools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/Utils/VEAPITools.h -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/Utils/VEAPITools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/Utils/VEAPITools.m -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/VEAPIVideoModel/VEAPIMediaSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/VEAPIVideoModel/VEAPIMediaSource.h -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/VEAPIVideoModel/VEAPIMediaSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/VEAPIVideoModel/VEAPIMediaSource.m -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/VEAPIVideoModel/VEAPISwiftVideoModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/VEAPIVideoModel/VEAPISwiftVideoModel.swift -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/VEAPIVideoModel/VEAPIVideoModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/VEAPIVideoModel/VEAPIVideoModel.h -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/VEAPIVideoModel/VEAPIVideoModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/VEAPIVideoModel/VEAPIVideoModel.m -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/VEVodPlayerAPIExample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/VEVodPlayerAPIExample-Bridging-Header.h -------------------------------------------------------------------------------- /VEVodPlayerAPIExample/VEVodPlayerAPIExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VEVodPlayerAPIExample/VEVodPlayerAPIExample/main.m -------------------------------------------------------------------------------- /VOLCDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/.gitignore -------------------------------------------------------------------------------- /VOLCDemo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/LICENSE -------------------------------------------------------------------------------- /VOLCDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/Podfile -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/NSArray+BTDAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/NSArray+BTDAdditions.h -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/NSArray+BTDAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/NSArray+BTDAdditions.m -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/NSData+BTDAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/NSData+BTDAdditions.h -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/NSData+BTDAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/NSData+BTDAdditions.m -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/NSDictionary+BTDAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/NSDictionary+BTDAdditions.h -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/NSDictionary+BTDAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/NSDictionary+BTDAdditions.m -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/NSNumber+BTDAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/NSNumber+BTDAdditions.h -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/NSNumber+BTDAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/NSNumber+BTDAdditions.m -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/NSObject+BTDAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/NSObject+BTDAdditions.h -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/NSObject+BTDAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/NSObject+BTDAdditions.m -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/NSPointerArray+AbstractionHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/NSPointerArray+AbstractionHelpers.h -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/NSPointerArray+AbstractionHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/NSPointerArray+AbstractionHelpers.m -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/NSSet+BTDAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/NSSet+BTDAdditions.h -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/NSSet+BTDAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/NSSet+BTDAdditions.m -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/NSString+BTDAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/NSString+BTDAdditions.h -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/NSString+BTDAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/NSString+BTDAdditions.m -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/NSTimer+BTDAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/NSTimer+BTDAdditions.h -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/NSTimer+BTDAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/NSTimer+BTDAdditions.m -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/NSURL+BTDAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/NSURL+BTDAdditions.h -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/NSURL+BTDAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/NSURL+BTDAdditions.m -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/NSURLComponents+BTDAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/NSURLComponents+BTDAdditions.h -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/NSURLComponents+BTDAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/NSURLComponents+BTDAdditions.m -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/UIColor+RGB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/UIColor+RGB.h -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/UIColor+RGB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/UIColor+RGB.m -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/UIDevice+BTDAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/UIDevice+BTDAdditions.h -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/UIDevice+BTDAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/UIDevice+BTDAdditions.m -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/UIView+BDShowView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/UIView+BDShowView.h -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/UIView+BDShowView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/UIView+BDShowView.m -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/UIView+BTDAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/UIView+BTDAdditions.h -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/UIView+BTDAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/UIView+BTDAdditions.m -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/UIWindow+BTDAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/UIWindow+BTDAdditions.h -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Categorys/UIWindow+BTDAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Categorys/UIWindow+BTDAdditions.m -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Utility/BTDMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Utility/BTDMacros.h -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Utility/BTDMacros.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Utility/BTDMacros.m -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Utility/BTDResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Utility/BTDResponder.h -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Utility/BTDResponder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Utility/BTDResponder.m -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Utility/BTDWeakProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Utility/BTDWeakProxy.h -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Utility/BTDWeakProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Utility/BTDWeakProxy.m -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Utility/VELRUCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Utility/VELRUCache.h -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Utility/VELRUCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Utility/VELRUCache.m -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Utility/VEPlayerUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Utility/VEPlayerUtility.h -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/Classes/Utility/VEPlayerUtility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/Classes/Utility/VEPlayerUtility.m -------------------------------------------------------------------------------- /VOLCDemo/VEBaseKit/VEBaseKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEBaseKit/VEBaseKit.podspec -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/ActionView/VEPlayerActionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/ActionView/VEPlayerActionView.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/ActionView/VEPlayerActionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/ActionView/VEPlayerActionView.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/ActionViewInterface/VEPlayerActionViewInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/ActionViewInterface/VEPlayerActionViewInterface.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/ActionViewInterface/VEPlayerViewService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/ActionViewInterface/VEPlayerViewService.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/ActionViewInterface/VEPlayerViewService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/ActionViewInterface/VEPlayerViewService.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/BaseModule/VEDelegateMultiplexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/BaseModule/VEDelegateMultiplexer.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/BaseModule/VEDelegateMultiplexer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/BaseModule/VEDelegateMultiplexer.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/BaseModule/VEPlayerBaseModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/BaseModule/VEPlayerBaseModule.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/BaseModule/VEPlayerBaseModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/BaseModule/VEPlayerBaseModule.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/BaseModule/VEPlayerBaseModuleProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/BaseModule/VEPlayerBaseModuleProtocol.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/BaseModule/VEPlayerModuleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/BaseModule/VEPlayerModuleManager.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/BaseModule/VEPlayerModuleManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/BaseModule/VEPlayerModuleManager.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/BaseModule/VEPlayerModuleManagerInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/BaseModule/VEPlayerModuleManagerInterface.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/BaseModule/VEPlayerViewLifeCycleProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/BaseModule/VEPlayerViewLifeCycleProtocol.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/Context/VEPlayerContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/Context/VEPlayerContext.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/Context/VEPlayerContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/Context/VEPlayerContext.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/Context/VEPlayerContextDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/Context/VEPlayerContextDI.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/Context/VEPlayerContextDI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/Context/VEPlayerContextDI.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/Context/VEPlayerContextDIInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/Context/VEPlayerContextDIInterface.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/Context/VEPlayerContextInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/Context/VEPlayerContextInterface.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/Context/VEPlayerContextItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/Context/VEPlayerContextItem.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/Context/VEPlayerContextItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/Context/VEPlayerContextItem.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/Context/VEPlayerContextItemHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/Context/VEPlayerContextItemHandler.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/Context/VEPlayerContextItemHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/Context/VEPlayerContextItemHandler.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/Context/VEPlayerContextKeyDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/Context/VEPlayerContextKeyDefine.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/Context/VEPlayerContextKeyDefine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/Context/VEPlayerContextKeyDefine.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/Context/VEPlayerContextMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/Context/VEPlayerContextMacros.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/Context/VEPlayerContextStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/Context/VEPlayerContextStorage.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/Context/VEPlayerContextStorage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/Context/VEPlayerContextStorage.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/ControlView/VEPlayerControlView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/ControlView/VEPlayerControlView.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/ControlView/VEPlayerControlView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/ControlView/VEPlayerControlView.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/ControlView/VEPlayerControlViewDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/ControlView/VEPlayerControlViewDefine.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/GestureService/Private/VEPlayerGestureDisableHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/GestureService/Private/VEPlayerGestureDisableHandler.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/GestureService/Private/VEPlayerGestureDisableHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/GestureService/Private/VEPlayerGestureDisableHandler.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/GestureService/Private/VEPlayerGestureWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/GestureService/Private/VEPlayerGestureWrapper.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/GestureService/Private/VEPlayerGestureWrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/GestureService/Private/VEPlayerGestureWrapper.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/GestureService/VEPlayerGestureHandlerProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/GestureService/VEPlayerGestureHandlerProtocol.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/GestureService/VEPlayerGestureService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/GestureService/VEPlayerGestureService.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/GestureService/VEPlayerGestureService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/GestureService/VEPlayerGestureService.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/GestureService/VEPlayerGestureServiceInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/GestureService/VEPlayerGestureServiceInterface.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/Interaction/VEPlayerInteraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/Interaction/VEPlayerInteraction.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/Interaction/VEPlayerInteraction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/Interaction/VEPlayerInteraction.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/Interaction/VEPlayerInteractionDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/Interaction/VEPlayerInteractionDefine.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/ModuleLoader/VEFrameScatterPerform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/ModuleLoader/VEFrameScatterPerform.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/ModuleLoader/VEFrameScatterPerform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/ModuleLoader/VEFrameScatterPerform.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/ModuleLoader/VELoopScatterPerform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/ModuleLoader/VELoopScatterPerform.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/ModuleLoader/VELoopScatterPerform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/ModuleLoader/VELoopScatterPerform.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/ModuleLoader/VEPlayerBaseModuleLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/ModuleLoader/VEPlayerBaseModuleLoader.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/ModuleLoader/VEPlayerBaseModuleLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/ModuleLoader/VEPlayerBaseModuleLoader.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/Interaction/ModuleLoader/VEScatterPerformProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/Interaction/ModuleLoader/VEScatterPerformProtocol.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerCore/EnginePool/VEVideoEnginePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerCore/EnginePool/VEVideoEnginePool.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerCore/EnginePool/VEVideoEnginePool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerCore/EnginePool/VEVideoEnginePool.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerCore/State/VEPlayFinishStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerCore/State/VEPlayFinishStatus.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerCore/State/VEPlayFinishStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerCore/State/VEPlayFinishStatus.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEPlayProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEPlayProtocol.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEPlayerKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEPlayerKit.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayback.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlaybackDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlaybackDefine.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerConfiguration.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerConfiguration.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController+DebugTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController+DebugTool.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController+DebugTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController+DebugTool.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController+DisRecordScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController+DisRecordScreen.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController+DisRecordScreen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController+DisRecordScreen.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController+Observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController+Observer.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController+Observer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController+Observer.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController+Resolution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController+Resolution.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController+Resolution.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController+Resolution.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController+Strategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController+Strategy.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController+Strategy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController+Strategy.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController+Tips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController+Tips.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController+Tips.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController+Tips.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController+VEPlayCoreAbility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController+VEPlayCoreAbility.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController+VEPlayCoreAbility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController+VEPlayCoreAbility.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerController.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerPipController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerPipController.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerPipController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerCore/VEVideoPlayerPipController.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerCore/VideoEngine/TTVideoEngineSourceCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerCore/VideoEngine/TTVideoEngineSourceCategory.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerCore/VideoEngine/TTVideoEngineSourceCategory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerCore/VideoEngine/TTVideoEngineSourceCategory.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerLog/VEPlayerExceptionLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerLog/VEPlayerExceptionLogger.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerLog/VEPlayerExceptionLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerLog/VEPlayerExceptionLogger.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerLog/VEPlayerExceptionLoggerDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerLog/VEPlayerExceptionLoggerDefine.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModel/VEPlayerSeekState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModel/VEPlayerSeekState.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModel/VEPlayerSeekState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModel/VEPlayerSeekState.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerBackModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerBackModule.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerBackModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerBackModule.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerFullScreenModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerFullScreenModule.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerFullScreenModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerFullScreenModule.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerLoadingModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerLoadingModule.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerLoadingModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerLoadingModule.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerLockModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerLockModule.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerLockModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerLockModule.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerPipModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerPipModule.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerPipModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerPipModule.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerResolutionModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerResolutionModule.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerResolutionModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerResolutionModule.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerSeekModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerSeekModule.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerSeekModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerSeekModule.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerSeekProgressModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerSeekProgressModule.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerSeekProgressModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerSeekProgressModule.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerSpeedModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerSpeedModule.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerSpeedModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerSpeedModule.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerSubtitleModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerSubtitleModule.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerSubtitleModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerSubtitleModule.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerVisibleModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerVisibleModule.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerVisibleModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerModule/VEPlayerVisibleModule.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerUI/Loading/VEActivityIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerUI/Loading/VEActivityIndicator.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerUI/Loading/VEActivityIndicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerUI/Loading/VEActivityIndicator.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerUI/Loading/VELPlayerLoadingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerUI/Loading/VELPlayerLoadingView.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerUI/Loading/VELPlayerLoadingView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerUI/Loading/VELPlayerLoadingView.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerUI/Subtitle/VEPlayerSubtitleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerUI/Subtitle/VEPlayerSubtitleView.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerUI/Subtitle/VEPlayerSubtitleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerUI/Subtitle/VEPlayerSubtitleView.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerUI/VEPlayerResolutionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerUI/VEPlayerResolutionView.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerUI/VEPlayerResolutionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerUI/VEPlayerResolutionView.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerUI/VEPlayerSeekProgressView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerUI/VEPlayerSeekProgressView.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerUI/VEPlayerSeekProgressView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerUI/VEPlayerSeekProgressView.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerUI/VEPlayerSpeedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerUI/VEPlayerSpeedView.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerUI/VEPlayerSpeedView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerUI/VEPlayerSpeedView.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerUI/VESliderControlView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerUI/VESliderControlView.h -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerUI/VESliderControlView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/Classes/PlayerModule/PlayerUI/VESliderControlView.m -------------------------------------------------------------------------------- /VOLCDemo/VEPlayerKit/VEPlayerKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEPlayerKit/VEPlayerKit.podspec -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Ad/Data/Model/VEAdInfoModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Ad/Data/Model/VEAdInfoModel.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Ad/Data/Model/VEAdInfoModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Ad/Data/Model/VEAdInfoModel.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/ExampleAdAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/ExampleAdAction.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/ExampleAdAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/ExampleAdAction.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/ExampleAdContextKeyDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/ExampleAdContextKeyDefine.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/ExampleAdContextKeyDefine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/ExampleAdContextKeyDefine.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/ExampleAdManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/ExampleAdManager.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/ExampleAdManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/ExampleAdManager.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/ExampleAdPlayerModuleLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/ExampleAdPlayerModuleLoader.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/ExampleAdPlayerModuleLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/ExampleAdPlayerModuleLoader.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/ExampleAdProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/ExampleAdProvider.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/ExampleAdProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/ExampleAdProvider.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/ExampleAdViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/ExampleAdViewController.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/ExampleAdViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/ExampleAdViewController.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/PlayerModules/ExampleAdDetailModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/PlayerModules/ExampleAdDetailModule.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/PlayerModules/ExampleAdDetailModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/PlayerModules/ExampleAdDetailModule.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/PlayerModules/ExampleAdLabelModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/PlayerModules/ExampleAdLabelModule.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/PlayerModules/ExampleAdLabelModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/PlayerModules/ExampleAdLabelModule.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/PlayerModules/ExampleAdPlayButtonModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/PlayerModules/ExampleAdPlayButtonModule.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/PlayerModules/ExampleAdPlayButtonModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/PlayerModules/ExampleAdPlayButtonModule.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/Utils/UIColor+Hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/Utils/UIColor+Hex.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/Utils/UIColor+Hex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Ad/ExampleAd/Utils/UIColor+Hex.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Ad/Protocol/VEAdActionResponderDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Ad/Protocol/VEAdActionResponderDelegate.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Ad/Protocol/VEAdManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Ad/Protocol/VEAdManagerDelegate.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Ad/VEAdCellController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Ad/VEAdCellController.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Ad/VEAdCellController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Ad/VEAdCellController.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Ad/VEAdOperator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Ad/VEAdOperator.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Ad/VEAdOperator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Ad/VEAdOperator.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Config/VEVideoPlayerConfigurationFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Config/VEVideoPlayerConfigurationFactory.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Config/VEVideoPlayerConfigurationFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Config/VEVideoPlayerConfigurationFactory.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/CustomPlayVideo/VEPlayUrlConfigViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/CustomPlayVideo/VEPlayUrlConfigViewController.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/CustomPlayVideo/VEPlayUrlConfigViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/CustomPlayVideo/VEPlayUrlConfigViewController.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/CustomPlayVideo/VEVideoUrlParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/CustomPlayVideo/VEVideoUrlParser.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/CustomPlayVideo/VEVideoUrlParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/CustomPlayVideo/VEVideoUrlParser.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Data/DataManager/VEDataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Data/DataManager/VEDataManager.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Data/DataManager/VEDataManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Data/DataManager/VEDataManager.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Data/DataManager/VESettingManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Data/DataManager/VESettingManager.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Data/DataManager/VESettingManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Data/DataManager/VESettingManager.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Data/Model/VESettingModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Data/Model/VESettingModel.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Data/Model/VESettingModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Data/Model/VESettingModel.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Data/Model/VEVideoModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Data/Model/VEVideoModel.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Data/Model/VEVideoModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Data/Model/VEVideoModel.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Data/Network/VENetworkHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Data/Network/VENetworkHelper.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Data/Network/VENetworkHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Data/Network/VENetworkHelper.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/FeedVideo/Cell/VEFeedVideoNormalCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/FeedVideo/Cell/VEFeedVideoNormalCell.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/FeedVideo/Cell/VEFeedVideoNormalCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/FeedVideo/Cell/VEFeedVideoNormalCell.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/FeedVideo/Cell/VEFeedVideoNormalCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/FeedVideo/Cell/VEFeedVideoNormalCell.xib -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/FeedVideo/VEFeedVideoCellPlayerModuleLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/FeedVideo/VEFeedVideoCellPlayerModuleLoader.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/FeedVideo/VEFeedVideoCellPlayerModuleLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/FeedVideo/VEFeedVideoCellPlayerModuleLoader.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/FeedVideo/VEFeedVideoDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/FeedVideo/VEFeedVideoDetailViewController.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/FeedVideo/VEFeedVideoDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/FeedVideo/VEFeedVideoDetailViewController.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/FeedVideo/VEFeedVideoPlayerModuleLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/FeedVideo/VEFeedVideoPlayerModuleLoader.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/FeedVideo/VEFeedVideoPlayerModuleLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/FeedVideo/VEFeedVideoPlayerModuleLoader.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/FeedVideo/VEFeedVideoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/FeedVideo/VEFeedVideoViewController.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/FeedVideo/VEFeedVideoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/FeedVideo/VEFeedVideoViewController.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/LongVideo/Cell/VELongVideoViewNormalCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/LongVideo/Cell/VELongVideoViewNormalCell.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/LongVideo/Cell/VELongVideoViewNormalCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/LongVideo/Cell/VELongVideoViewNormalCell.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/LongVideo/Cell/VELongVideoViewNormalCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/LongVideo/Cell/VELongVideoViewNormalCell.xib -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/LongVideo/Cell/VELongVideoViewTopCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/LongVideo/Cell/VELongVideoViewTopCell.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/LongVideo/Cell/VELongVideoViewTopCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/LongVideo/Cell/VELongVideoViewTopCell.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/LongVideo/Cell/VELongVideoViewTopCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/LongVideo/Cell/VELongVideoViewTopCell.xib -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/LongVideo/LongVideoUIView/VELongVideoIntroduceView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/LongVideo/LongVideoUIView/VELongVideoIntroduceView.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/LongVideo/LongVideoUIView/VELongVideoIntroduceView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/LongVideo/LongVideoUIView/VELongVideoIntroduceView.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/LongVideo/LongVideoUIView/VELongVideoOtherFunctionsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/LongVideo/LongVideoUIView/VELongVideoOtherFunctionsView.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/LongVideo/LongVideoUIView/VELongVideoOtherFunctionsView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/LongVideo/LongVideoUIView/VELongVideoOtherFunctionsView.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/LongVideo/LongVideoUIView/VELongVideoSliderControlView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/LongVideo/LongVideoUIView/VELongVideoSliderControlView.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/LongVideo/LongVideoUIView/VELongVideoSliderControlView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/LongVideo/LongVideoUIView/VELongVideoSliderControlView.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/LongVideo/PlayerModules/VELongVideoIntroduceModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/LongVideo/PlayerModules/VELongVideoIntroduceModule.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/LongVideo/PlayerModules/VELongVideoIntroduceModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/LongVideo/PlayerModules/VELongVideoIntroduceModule.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/LongVideo/PlayerModules/VELongVideoOtherFunctionsModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/LongVideo/PlayerModules/VELongVideoOtherFunctionsModule.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/LongVideo/PlayerModules/VELongVideoOtherFunctionsModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/LongVideo/PlayerModules/VELongVideoOtherFunctionsModule.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/LongVideo/PlayerModules/VELongVideoPlayButtonModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/LongVideo/PlayerModules/VELongVideoPlayButtonModule.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/LongVideo/PlayerModules/VELongVideoPlayButtonModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/LongVideo/PlayerModules/VELongVideoPlayButtonModule.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/LongVideo/PlayerModules/VELongVideoSeekModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/LongVideo/PlayerModules/VELongVideoSeekModule.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/LongVideo/PlayerModules/VELongVideoSeekModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/LongVideo/PlayerModules/VELongVideoSeekModule.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/LongVideo/UIViewController+Orientation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/LongVideo/UIViewController+Orientation.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/LongVideo/UIViewController+Orientation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/LongVideo/UIViewController+Orientation.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/LongVideo/VELongVideoDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/LongVideo/VELongVideoDetailViewController.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/LongVideo/VELongVideoDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/LongVideo/VELongVideoDetailViewController.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/LongVideo/VELongVideoPlayerModuleLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/LongVideo/VELongVideoPlayerModuleLoader.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/LongVideo/VELongVideoPlayerModuleLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/LongVideo/VELongVideoPlayerModuleLoader.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/LongVideo/VELongVideoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/LongVideo/VELongVideoViewController.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/LongVideo/VELongVideoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/LongVideo/VELongVideoViewController.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/LongVideo/VELongVideoViewLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/LongVideo/VELongVideoViewLayout.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/LongVideo/VELongVideoViewLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/LongVideo/VELongVideoViewLayout.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/MediaModel/VEMediaCellFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/MediaModel/VEMediaCellFactory.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/MediaModel/VEMediaCellFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/MediaModel/VEMediaCellFactory.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Setting/Cell/VESettingCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Setting/Cell/VESettingCell.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Setting/Cell/VESettingCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Setting/Cell/VESettingCell.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Setting/Cell/VESettingDisplayCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Setting/Cell/VESettingDisplayCell.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Setting/Cell/VESettingDisplayCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Setting/Cell/VESettingDisplayCell.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Setting/Cell/VESettingDisplayCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Setting/Cell/VESettingDisplayCell.xib -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Setting/Cell/VESettingDisplayDetailCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Setting/Cell/VESettingDisplayDetailCell.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Setting/Cell/VESettingDisplayDetailCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Setting/Cell/VESettingDisplayDetailCell.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Setting/Cell/VESettingDisplayDetailCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Setting/Cell/VESettingDisplayDetailCell.xib -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Setting/Cell/VESettingSwitcherCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Setting/Cell/VESettingSwitcherCell.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Setting/Cell/VESettingSwitcherCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Setting/Cell/VESettingSwitcherCell.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Setting/Cell/VESettingSwitcherCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Setting/Cell/VESettingSwitcherCell.xib -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Setting/Cell/VESettingTypeMutilSelectorCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Setting/Cell/VESettingTypeMutilSelectorCell.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Setting/Cell/VESettingTypeMutilSelectorCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Setting/Cell/VESettingTypeMutilSelectorCell.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Setting/Cell/VESettingTypeMutilSelectorCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Setting/Cell/VESettingTypeMutilSelectorCell.xib -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Setting/VESettingViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Setting/VESettingViewController.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/Setting/VESettingViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/Setting/VESettingViewController.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/Data/DataManager/VEDramaDataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/Data/DataManager/VEDramaDataManager.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/Data/DataManager/VEDramaDataManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/Data/DataManager/VEDramaDataManager.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/Data/Model/VEDramaEpisodeInfoModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/Data/Model/VEDramaEpisodeInfoModel.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/Data/Model/VEDramaEpisodeInfoModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/Data/Model/VEDramaEpisodeInfoModel.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/Data/Model/VEDramaInfoModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/Data/Model/VEDramaInfoModel.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/Data/Model/VEDramaInfoModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/Data/Model/VEDramaInfoModel.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/Data/Model/VEDramaPayInfoModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/Data/Model/VEDramaPayInfoModel.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/Data/Model/VEDramaPayInfoModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/Data/Model/VEDramaPayInfoModel.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/Data/Model/VEDramaVideoInfoModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/Data/Model/VEDramaVideoInfoModel.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/Data/Model/VEDramaVideoInfoModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/Data/Model/VEDramaVideoInfoModel.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaIntroduceModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaIntroduceModule.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaIntroduceModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaIntroduceModule.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaPayModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaPayModule.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaPayModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaPayModule.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaPlayButtonModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaPlayButtonModule.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaPlayButtonModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaPlayButtonModule.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaPlayerMaskModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaPlayerMaskModule.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaPlayerMaskModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaPlayerMaskModule.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaPlayerSpeedModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaPlayerSpeedModule.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaPlayerSpeedModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaPlayerSpeedModule.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaPlayerToastModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaPlayerToastModule.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaPlayerToastModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaPlayerToastModule.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaRecommodIntroduceModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaRecommodIntroduceModule.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaRecommodIntroduceModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaRecommodIntroduceModule.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaRecordStartTimeModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaRecordStartTimeModule.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaRecordStartTimeModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaRecordStartTimeModule.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaSelectionModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaSelectionModule.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaSelectionModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaSelectionModule.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaSeriesModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaSeriesModule.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaSeriesModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/PlayerModules/ShortDramaSeriesModule.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaCollect/ShortDramaCollectViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaCollect/ShortDramaCollectViewController.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaCollect/ShortDramaCollectViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaCollect/ShortDramaCollectViewController.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaDetail/ShortDramaDetailPlayerModuleLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaDetail/ShortDramaDetailPlayerModuleLoader.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaDetail/ShortDramaDetailPlayerModuleLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaDetail/ShortDramaDetailPlayerModuleLoader.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaDetail/VEShortDramaDetailFeedViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaDetail/VEShortDramaDetailFeedViewController.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaDetail/VEShortDramaDetailFeedViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaDetail/VEShortDramaDetailFeedViewController.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaDetail/VEShortDramaDetailVideoCellController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaDetail/VEShortDramaDetailVideoCellController.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaDetail/VEShortDramaDetailVideoCellController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaDetail/VEShortDramaDetailVideoCellController.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaPay/ShortDramaCachePayManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaPay/ShortDramaCachePayManager.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaPay/ShortDramaCachePayManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaPay/ShortDramaCachePayManager.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaPay/ShortDramaPayViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaPay/ShortDramaPayViewController.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaPay/ShortDramaPayViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaPay/ShortDramaPayViewController.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaPraise/ShortDramaPraiseViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaPraise/ShortDramaPraiseViewController.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaPraise/ShortDramaPraiseViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaPraise/ShortDramaPraiseViewController.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaRecommod/ShortDramaRecommodPlayerModuleLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaRecommod/ShortDramaRecommodPlayerModuleLoader.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaRecommod/ShortDramaRecommodPlayerModuleLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaRecommod/ShortDramaRecommodPlayerModuleLoader.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaRecommod/VEShortDramaVideoCellController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaRecommod/VEShortDramaVideoCellController.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaRecommod/VEShortDramaVideoCellController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaRecommod/VEShortDramaVideoCellController.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaRecommod/VEShortDramaVideoFeedViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaRecommod/VEShortDramaVideoFeedViewController.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaRecommod/VEShortDramaVideoFeedViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaRecommod/VEShortDramaVideoFeedViewController.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaSelection/ShortDramaSelectionCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaSelection/ShortDramaSelectionCell.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaSelection/ShortDramaSelectionCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaSelection/ShortDramaSelectionCell.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaSelection/ShortDramaSelectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaSelection/ShortDramaSelectionViewController.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaSelection/ShortDramaSelectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaFeedController/DramaSelection/ShortDramaSelectionViewController.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaListController/VEShortDramaListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaListController/VEShortDramaListViewController.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaListController/VEShortDramaListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaListController/VEShortDramaListViewController.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaListController/VEShortDramaVideoViewNormalCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaListController/VEShortDramaVideoViewNormalCell.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaListController/VEShortDramaVideoViewNormalCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaListController/VEShortDramaVideoViewNormalCell.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaUIView/ShortDramaIntroduceView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaUIView/ShortDramaIntroduceView.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaUIView/ShortDramaIntroduceView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaUIView/ShortDramaIntroduceView.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaUIView/ShortDramaSelectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaUIView/ShortDramaSelectionView.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaUIView/ShortDramaSelectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaUIView/ShortDramaSelectionView.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaUIView/ShortDramaSeriesView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaUIView/ShortDramaSeriesView.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaUIView/ShortDramaSeriesView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaUIView/ShortDramaSeriesView.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaUIView/ShortDramaSpeedTipView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaUIView/ShortDramaSpeedTipView.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaUIView/ShortDramaSpeedTipView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/ShortDramaUIView/ShortDramaSpeedTipView.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/VEShortDramaPagingViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/VEShortDramaPagingViewController.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortDrama/VEShortDramaPagingViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortDrama/VEShortDramaPagingViewController.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortVideo/PlayerModules/ShortVideoPlayButtonModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortVideo/PlayerModules/ShortVideoPlayButtonModule.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortVideo/PlayerModules/ShortVideoPlayButtonModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortVideo/PlayerModules/ShortVideoPlayButtonModule.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortVideo/VEShortVideoCellController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortVideo/VEShortVideoCellController.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortVideo/VEShortVideoCellController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortVideo/VEShortVideoCellController.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortVideo/VEShortVideoPlayerModuleLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortVideo/VEShortVideoPlayerModuleLoader.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortVideo/VEShortVideoPlayerModuleLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortVideo/VEShortVideoPlayerModuleLoader.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortVideo/VEShortVideoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortVideo/VEShortVideoViewController.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/ShortVideo/VEShortVideoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/ShortVideo/VEShortVideoViewController.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/UIComponents/BaseController/VEViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/UIComponents/BaseController/VEViewController.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/UIComponents/BaseController/VEViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/UIComponents/BaseController/VEViewController.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/UIComponents/PageUIKit/VEPageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/UIComponents/PageUIKit/VEPageViewController.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/UIComponents/PageUIKit/VEPageViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/UIComponents/PageUIKit/VEPageViewController.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/UIComponents/SectionUIKit/VEScrollViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/UIComponents/SectionUIKit/VEScrollViewController.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/UIComponents/SectionUIKit/VEScrollViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/UIComponents/SectionUIKit/VEScrollViewController.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/UIComponents/SectionUIKit/VESelectionBarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/UIComponents/SectionUIKit/VESelectionBarView.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/UIComponents/SectionUIKit/VESelectionBarView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/UIComponents/SectionUIKit/VESelectionBarView.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/UIComponents/SectionUIKit/VESelectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/UIComponents/SectionUIKit/VESelectionViewController.h -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/Classes/UIComponents/SectionUIKit/VESelectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/Classes/UIComponents/SectionUIKit/VESelectionViewController.m -------------------------------------------------------------------------------- /VOLCDemo/VESceneModule/VESceneModule.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VESceneModule/VESceneModule.podspec -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Entry/VEMainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Entry/VEMainViewController.h -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Entry/VEMainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Entry/VEMainViewController.m -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Entry/VEMainViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Entry/VEMainViewController.xib -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/ad_detail_tag.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/ad_detail_tag.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/ad_detail_tag.imageset/ad_detail_tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/ad_detail_tag.imageset/ad_detail_tag.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/ad_detail_tag.imageset/ad_detail_tag@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/ad_detail_tag.imageset/ad_detail_tag@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/ad_detail_tag.imageset/ad_detail_tag@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/ad_detail_tag.imageset/ad_detail_tag@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/ad_image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/ad_image.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/ad_image.imageset/ad_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/ad_image.imageset/ad_image.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/ad_image.imageset/ad_image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/ad_image.imageset/ad_image@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/ad_image.imageset/ad_image@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/ad_image.imageset/ad_image@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/back.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/back.imageset/back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/back.imageset/back@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/back.imageset/back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/back.imageset/back@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/close.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/close.imageset/close_circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/close.imageset/close_circle@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/close.imageset/close_circle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/close.imageset/close_circle@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/fake_feed_holder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/fake_feed_holder.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/fake_feed_holder.imageset/fake_img@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/fake_feed_holder.imageset/fake_img@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/fake_feed_holder.imageset/fake_img@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/fake_feed_holder.imageset/fake_img@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/fake_long_normal_holder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/fake_long_normal_holder.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/fake_long_normal_holder.imageset/fake_long_normal_holder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/fake_long_normal_holder.imageset/fake_long_normal_holder@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/fake_long_normal_holder.imageset/fake_long_normal_holder@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/fake_long_normal_holder.imageset/fake_long_normal_holder@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/fake_long_top_holder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/fake_long_top_holder.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/fake_long_top_holder.imageset/fake_long_top_holder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/fake_long_top_holder.imageset/fake_long_top_holder@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/fake_long_top_holder.imageset/fake_long_top_holder@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/fake_long_top_holder.imageset/fake_long_top_holder@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/fake_user.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/fake_user.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/fake_user.imageset/fake_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/fake_user.imageset/fake_user.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/feed_comment.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/feed_comment.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/feed_comment.imageset/feed_comment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/feed_comment.imageset/feed_comment@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/feed_comment.imageset/feed_comment@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/feed_comment.imageset/feed_comment@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/feed_like.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/feed_like.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/feed_like.imageset/feed_like@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/feed_like.imageset/feed_like@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/feed_like.imageset/feed_like@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/feed_like.imageset/feed_like@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/feed_play.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/feed_play.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/feed_play.imageset/feed_play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/feed_play.imageset/feed_play@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/feed_play.imageset/feed_play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/feed_play.imageset/feed_play@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/feed_star.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/feed_star.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/feed_star.imageset/feed_star@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/feed_star.imageset/feed_star@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/feed_star.imageset/feed_star@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/feed_star.imageset/feed_star@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_close.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_close.imageset/_RoundBtnicon_close-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_close.imageset/_RoundBtnicon_close-1.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_close.imageset/_RoundBtnicon_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_close.imageset/_RoundBtnicon_close.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_collect_nor.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_collect_nor.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_collect_nor.imageset/icon collecticon_collect_nor-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_collect_nor.imageset/icon collecticon_collect_nor-1.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_collect_nor.imageset/icon collecticon_collect_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_collect_nor.imageset/icon collecticon_collect_nor.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_collect_sel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_collect_sel.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_collect_sel.imageset/collecticon_collect_sel-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_collect_sel.imageset/collecticon_collect_sel-1.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_collect_sel.imageset/collecticon_collect_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_collect_sel.imageset/collecticon_collect_sel.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_dis_record_screen.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_dis_record_screen.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_dis_record_screen.imageset/Subtracticon_dis_record_screen-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_dis_record_screen.imageset/Subtracticon_dis_record_screen-1.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_dis_record_screen.imageset/Subtracticon_dis_record_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_dis_record_screen.imageset/Subtracticon_dis_record_screen.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_dot.imageset/7.27圆点icon_dot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_dot.imageset/7.27圆点icon_dot-1.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_dot.imageset/7.27圆点icon_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_dot.imageset/7.27圆点icon_dot.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_dot.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_dot.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_dot_big.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_dot_big.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_dot_big.imageset/当前锚点icon_dot_big-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_dot_big.imageset/当前锚点icon_dot_big-1.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_dot_big.imageset/当前锚点icon_dot_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_dot_big.imageset/当前锚点icon_dot_big.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_drama.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_drama.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_drama.imageset/icon_短剧首页icon_drama-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_drama.imageset/icon_短剧首页icon_drama-1.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_drama.imageset/icon_短剧首页icon_drama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_drama.imageset/icon_短剧首页icon_drama.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_drama_list_cover.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_drama_list_cover.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_drama_list_cover.imageset/icon_drama_list_cover-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_drama_list_cover.imageset/icon_drama_list_cover-1.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_drama_list_cover.imageset/icon_drama_list_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_drama_list_cover.imageset/icon_drama_list_cover.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_drama_lock.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_drama_lock.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_drama_lock.imageset/Group 2036084238icon_lock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_drama_lock.imageset/Group 2036084238icon_lock@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_drama_lock.imageset/Group 2036084238icon_lock@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_drama_lock.imageset/Group 2036084238icon_lock@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_drama_selec.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_drama_selec.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_drama_selec.imageset/Group 356icon_drama_selec-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_drama_selec.imageset/Group 356icon_drama_selec-1.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_drama_selec.imageset/Group 356icon_drama_selec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_drama_selec.imageset/Group 356icon_drama_selec.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_feed.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_feed.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_feed.imageset/icon_feed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_feed.imageset/icon_feed@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_feed.imageset/icon_feed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_feed.imageset/icon_feed@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_feed_cover.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_feed_cover.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_feed_cover.imageset/Mask Bottomicon_feed_backgroud-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_feed_cover.imageset/Mask Bottomicon_feed_backgroud-1.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_feed_cover.imageset/Mask Bottomicon_feed_backgroud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_feed_cover.imageset/Mask Bottomicon_feed_backgroud.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_home_background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_home_background.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_home_background.imageset/icon_home_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_home_background.imageset/icon_home_background@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_home_background.imageset/icon_home_background@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_home_background.imageset/icon_home_background@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_long.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_long.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_long.imageset/icon_long@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_long.imageset/icon_long@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_long.imageset/icon_long@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_long.imageset/icon_long@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_money.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_money.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_money.imageset/Frameicon_money@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_money.imageset/Frameicon_money@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_money.imageset/Frameicon_money@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_money.imageset/Frameicon_money@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_palying_drama.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_palying_drama.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_palying_drama.imageset/Frame 2037234945icon_cur_play-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_palying_drama.imageset/Frame 2037234945icon_cur_play-1.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_palying_drama.imageset/Frame 2037234945icon_cur_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_palying_drama.imageset/Frame 2037234945icon_cur_play.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_play_sign.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_play_sign.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_play_sign.imageset/Fill 1icon_play_sign-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_play_sign.imageset/Fill 1icon_play_sign-1.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_play_sign.imageset/Fill 1icon_play_sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_play_sign.imageset/Fill 1icon_play_sign.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_praise_nor.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_praise_nor.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_praise_nor.imageset/icon_praise_nor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_praise_nor.imageset/icon_praise_nor@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_praise_nor.imageset/icon_praise_nor@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_praise_nor.imageset/icon_praise_nor@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_praise_sel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_praise_sel.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_praise_sel.imageset/icon_praise_sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_praise_sel.imageset/icon_praise_sel@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_praise_sel.imageset/icon_praise_sel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_praise_sel.imageset/icon_praise_sel@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_setting.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_setting.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_setting.imageset/icon_setting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_setting.imageset/icon_setting@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_setting.imageset/icon_setting@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_setting.imageset/icon_setting@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_short.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_short.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_short.imageset/icon_short@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_short.imageset/icon_short@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_short.imageset/icon_short@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_short.imageset/icon_short@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_shot_drama.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_shot_drama.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_shot_drama.imageset/icon_shot_drama@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_shot_drama.imageset/icon_shot_drama@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_shot_drama.imageset/icon_shot_drama@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_shot_drama.imageset/icon_shot_drama@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_speed_0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_speed_0.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_speed_0.imageset/icon_speed_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_speed_0.imageset/icon_speed_1@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_speed_0.imageset/icon_speed_1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_speed_0.imageset/icon_speed_1@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_speed_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_speed_1.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_speed_1.imageset/icon_speed_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_speed_1.imageset/icon_speed_2@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_speed_1.imageset/icon_speed_2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_speed_1.imageset/icon_speed_2@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_up_arrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_up_arrow.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_up_arrow.imageset/ic_arrow_packupicon_up_arrow-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_up_arrow.imageset/ic_arrow_packupicon_up_arrow-1.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_up_arrow.imageset/ic_arrow_packupicon_up_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/icon_up_arrow.imageset/ic_arrow_packupicon_up_arrow.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_lock.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_lock.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_lock.imageset/long_video_lock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_lock.imageset/long_video_lock@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_lock.imageset/long_video_lock@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_lock.imageset/long_video_lock@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_loopplay.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_loopplay.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_loopplay.imageset/循环播放-off 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_loopplay.imageset/循环播放-off 1.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_loopplay.imageset/循环播放-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_loopplay.imageset/循环播放-off.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_loopplay_sel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_loopplay_sel.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_loopplay_sel.imageset/循环播放-on 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_loopplay_sel.imageset/循环播放-on 1.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_loopplay_sel.imageset/循环播放-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_loopplay_sel.imageset/循环播放-on.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_more.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_more.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_more.imageset/long_video_more@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_more.imageset/long_video_more@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_more.imageset/long_video_more@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_more.imageset/long_video_more@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_portrait.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_portrait.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_portrait.imageset/long_video_portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_portrait.imageset/long_video_portrait@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_portrait.imageset/long_video_portrait@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_portrait.imageset/long_video_portrait@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_resolution.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_resolution.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_resolution.imageset/long_video_resolution@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_resolution.imageset/long_video_resolution@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_resolution.imageset/long_video_resolution@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_resolution.imageset/long_video_resolution@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_speed.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_speed.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_speed.imageset/long_video_speed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_speed.imageset/long_video_speed@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_speed.imageset/long_video_speed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_speed.imageset/long_video_speed@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_sr.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_sr.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_sr.imageset/long_video_sr@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_sr.imageset/long_video_sr@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_sr.imageset/long_video_sr@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_sr.imageset/long_video_sr@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_sr_sel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_sr_sel.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_sr_sel.imageset/long_video_sr_sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_sr_sel.imageset/long_video_sr_sel@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_sr_sel.imageset/long_video_sr_sel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_sr_sel.imageset/long_video_sr_sel@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_unlock.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_unlock.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_unlock.imageset/long_video_unlock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_unlock.imageset/long_video_unlock@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_unlock.imageset/long_video_unlock@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/long_video_unlock.imageset/long_video_unlock@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/main_arrow_right.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/main_arrow_right.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/main_arrow_right.imageset/main_arrow_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/main_arrow_right.imageset/main_arrow_right@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/main_arrow_right.imageset/main_arrow_right@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/main_arrow_right.imageset/main_arrow_right@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/video_drama_play.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/video_drama_play.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/video_drama_play.imageset/播放icon_play_big-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/video_drama_play.imageset/播放icon_play_big-1.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/video_drama_play.imageset/播放icon_play_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/video_drama_play.imageset/播放icon_play_big.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/video_page_back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/video_page_back.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/video_page_back.imageset/video_page_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/video_page_back.imageset/video_page_back@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/video_page_back.imageset/video_page_back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/video_page_back.imageset/video_page_back@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/video_pause.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/video_pause.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/video_pause.imageset/video_pause@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/video_pause.imageset/video_pause@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/video_pause.imageset/video_pause@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/video_pause.imageset/video_pause@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/video_play.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/video_play.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/video_play.imageset/video_play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/video_play.imageset/video_play@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/video_play.imageset/video_play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/video_play.imageset/video_play@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/video_slide_dragbar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/video_slide_dragbar.imageset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/video_slide_dragbar.imageset/video_slide_dragbar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/video_slide_dragbar.imageset/video_slide_dragbar@2x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/Assets.xcassets/video_slide_dragbar.imageset/video_slide_dragbar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/Assets.xcassets/video_slide_dragbar.imageset/video_slide_dragbar@3x.png -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/en.lproj/VodLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/en.lproj/VodLocalizable.strings -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/Resources/zh-Hans.lproj/VodLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/Resources/zh-Hans.lproj/VodLocalizable.strings -------------------------------------------------------------------------------- /VOLCDemo/VEVodMain/VEVodMain.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VEVodMain/VEVodMain.podspec -------------------------------------------------------------------------------- /VOLCDemo/VOLCDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VOLCDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /VOLCDemo/VOLCDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VOLCDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /VOLCDemo/VOLCDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VOLCDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /VOLCDemo/VOLCDemo.xcodeproj/xcuserdata/bytedance.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VOLCDemo.xcodeproj/xcuserdata/bytedance.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /VOLCDemo/VOLCDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VOLCDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /VOLCDemo/VOLCDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VOLCDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /VOLCDemo/VOLCDemo.xcworkspace/xcuserdata/bytedance.xcuserdatad/IDEFindNavigatorScopes.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VOLCDemo.xcworkspace/xcuserdata/bytedance.xcuserdatad/IDEFindNavigatorScopes.plist -------------------------------------------------------------------------------- /VOLCDemo/VOLCDemo/Base/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VOLCDemo/Base/AppDelegate.h -------------------------------------------------------------------------------- /VOLCDemo/VOLCDemo/Base/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VOLCDemo/Base/AppDelegate.m -------------------------------------------------------------------------------- /VOLCDemo/VOLCDemo/Base/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VOLCDemo/Base/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /VOLCDemo/VOLCDemo/Base/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VOLCDemo/Base/Info.plist -------------------------------------------------------------------------------- /VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/136.png -------------------------------------------------------------------------------- /VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/192.png -------------------------------------------------------------------------------- /VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VOLCDemo/Base/Resources.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VOLCDemo/Base/Resources.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VOLCDemo/Base/Resources.xcassets/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VOLCDemo/Base/Resources.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VOLCDemo/Base/Resources.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /VOLCDemo/VOLCDemo/Base/VOLCDemoPrefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VOLCDemo/Base/VOLCDemoPrefix.pch -------------------------------------------------------------------------------- /VOLCDemo/VOLCDemo/Base/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/VEVodDemo-iOS/HEAD/VOLCDemo/VOLCDemo/Base/main.m --------------------------------------------------------------------------------