├── .gitignore ├── Demo ├── PlayerApp │ ├── PlayerApp.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── Player.xcscheme │ │ │ └── Player_Premium.xcscheme │ ├── PlayerApp.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── PlayerApp │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-1024.png │ │ │ │ ├── icon-20-ipad.png │ │ │ │ ├── icon-20@2x-ipad.png │ │ │ │ ├── icon-20@2x.png │ │ │ │ ├── icon-20@3x.png │ │ │ │ ├── icon-29-ipad.png │ │ │ │ ├── icon-29.png │ │ │ │ ├── icon-29@2x-ipad.png │ │ │ │ ├── icon-29@2x.png │ │ │ │ ├── icon-29@3x.png │ │ │ │ ├── icon-40.png │ │ │ │ ├── icon-40@2x-1.png │ │ │ │ ├── icon-40@2x.png │ │ │ │ ├── icon-40@3x.png │ │ │ │ ├── icon-50.png │ │ │ │ ├── icon-50@2x.png │ │ │ │ ├── icon-57.png │ │ │ │ ├── icon-57@2x.png │ │ │ │ ├── icon-60@2x.png │ │ │ │ ├── icon-60@3x.png │ │ │ │ ├── icon-72.png │ │ │ │ ├── icon-72@2x.png │ │ │ │ ├── icon-76.png │ │ │ │ ├── icon-76@2x.png │ │ │ │ └── icon-83.5@2x.png │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Common │ │ │ └── Localized │ │ │ │ ├── PlayerLocalized.h │ │ │ │ └── PlayerLocalized.m │ │ ├── Config │ │ │ └── AppConfig.plist │ │ ├── Player-Info.plist │ │ ├── Player.entitlements │ │ ├── PlayerLocalized │ │ │ ├── en.lproj │ │ │ │ └── PlayerLocalized.strings │ │ │ └── zh-Hans.lproj │ │ │ │ └── PlayerLocalized.strings │ │ ├── Player_Premium-Info.plist │ │ ├── Player_Premium.entitlements │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── main.m │ │ └── zh-Hans.lproj │ │ │ ├── LaunchScreen.strings │ │ │ └── Main.strings │ └── Podfile ├── PlayerKit │ ├── PlayerKit.podspec │ ├── PlayerKit.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── PlayerKit │ │ ├── App │ │ │ ├── AppCommon │ │ │ │ ├── Catetory │ │ │ │ │ ├── HUDHelper.h │ │ │ │ │ ├── HUDHelper.m │ │ │ │ │ ├── NSData+Common.h │ │ │ │ │ ├── NSData+Common.m │ │ │ │ │ ├── NSDictionary+Common.h │ │ │ │ │ ├── NSDictionary+Common.m │ │ │ │ │ ├── NSObject+CommonBlock.h │ │ │ │ │ ├── NSObject+CommonBlock.m │ │ │ │ │ ├── NSString+Common.h │ │ │ │ │ ├── NSString+Common.m │ │ │ │ │ ├── NSString+UISize.h │ │ │ │ │ ├── NSString+UISize.m │ │ │ │ │ ├── NSTimer+BlcokTimer.h │ │ │ │ │ ├── NSTimer+BlcokTimer.m │ │ │ │ │ ├── UIButton+Additions.h │ │ │ │ │ ├── UIButton+Additions.m │ │ │ │ │ ├── UIButton+Glossy.h │ │ │ │ │ ├── UIButton+Glossy.m │ │ │ │ │ ├── UIColor+MLPFlatColors.h │ │ │ │ │ ├── UIColor+MLPFlatColors.m │ │ │ │ │ ├── UIImage+TPAdditions.h │ │ │ │ │ ├── UIImage+TPAdditions.m │ │ │ │ │ ├── UIView+Additions.h │ │ │ │ │ ├── UIView+Additions.m │ │ │ │ │ ├── UIView+CustomAutoLayout.h │ │ │ │ │ ├── UIView+CustomAutoLayout.m │ │ │ │ │ ├── UIViewController+BackButtonHandler.h │ │ │ │ │ └── UIViewController+BackButtonHandler.m │ │ │ │ ├── ColorMacro.h │ │ │ │ ├── CommonUtils │ │ │ │ │ ├── TCLog.h │ │ │ │ │ ├── TCLog.m │ │ │ │ │ ├── TCUtil.h │ │ │ │ │ └── TCUtil.m │ │ │ │ ├── EnterprisePITU │ │ │ │ │ ├── YTFaceSDK.licence │ │ │ │ │ └── data │ │ │ │ │ │ ├── AECore.metallib │ │ │ │ │ │ ├── FilterEngine.bundle │ │ │ │ │ │ └── FilterResource │ │ │ │ │ │ │ ├── cos │ │ │ │ │ │ │ ├── bitlip.png │ │ │ │ │ │ │ ├── bridge_highlight.png │ │ │ │ │ │ │ ├── bridge_shadow.png │ │ │ │ │ │ │ ├── face_highlight.png │ │ │ │ │ │ │ ├── face_shadow.png │ │ │ │ │ │ │ ├── hair_tmpl0.jpg │ │ │ │ │ │ │ ├── hair_tmpl1.jpg │ │ │ │ │ │ │ ├── hair_tmpl2.jpg │ │ │ │ │ │ │ ├── hairstripe_1.png │ │ │ │ │ │ │ ├── lipsHL.png │ │ │ │ │ │ │ ├── lipsWater.png │ │ │ │ │ │ │ ├── skin.png │ │ │ │ │ │ │ └── wocan.png │ │ │ │ │ │ │ ├── face │ │ │ │ │ │ │ ├── distort_curve_n.raw │ │ │ │ │ │ │ ├── distort_curvex_1h.raw │ │ │ │ │ │ │ ├── distort_curvex_1v.raw │ │ │ │ │ │ │ ├── distort_curvex_3.raw │ │ │ │ │ │ │ ├── enlarge_eye_tmpl_n.bmp │ │ │ │ │ │ │ ├── face_flash_normal.jpg │ │ │ │ │ │ │ ├── face_flash_strong.jpg │ │ │ │ │ │ │ ├── face_mask.jpg │ │ │ │ │ │ │ ├── lut_ruddy.png │ │ │ │ │ │ │ ├── lut_whiteskin.png │ │ │ │ │ │ │ ├── mouse_mask.jpg │ │ │ │ │ │ │ ├── perfectskin.png │ │ │ │ │ │ │ └── single_eye_mask_2.jpg │ │ │ │ │ │ │ ├── facecolor │ │ │ │ │ │ │ ├── facecolor.png │ │ │ │ │ │ │ ├── facewhiten_natural.png │ │ │ │ │ │ │ ├── facewhiten_red.png │ │ │ │ │ │ │ ├── lut_cold.png │ │ │ │ │ │ │ ├── lut_gray.png │ │ │ │ │ │ │ ├── lut_redskin.png │ │ │ │ │ │ │ ├── lut_warm.png │ │ │ │ │ │ │ └── lut_whiteskin.png │ │ │ │ │ │ │ ├── faceoff │ │ │ │ │ │ │ ├── Params_animoji.json │ │ │ │ │ │ │ ├── crazyfacegray.json │ │ │ │ │ │ │ ├── crazyfacegray.png │ │ │ │ │ │ │ ├── crazyfacegray.wmc │ │ │ │ │ │ │ ├── eyeLighten.json │ │ │ │ │ │ │ ├── eyebrowmask.jpg │ │ │ │ │ │ │ ├── eyemask.jpg │ │ │ │ │ │ │ ├── faceMask_skin.png │ │ │ │ │ │ │ ├── facekit_indices.dat │ │ │ │ │ │ │ ├── facekit_map.json │ │ │ │ │ │ │ ├── facekit_uv.dat │ │ │ │ │ │ │ ├── faceoffmask.png │ │ │ │ │ │ │ ├── faceoffnose.json │ │ │ │ │ │ │ ├── faceoffnose.png │ │ │ │ │ │ │ ├── faceswapgray.png │ │ │ │ │ │ │ ├── faceswapgray.wmc │ │ │ │ │ │ │ ├── maskModel.json │ │ │ │ │ │ │ ├── maskModel.png │ │ │ │ │ │ │ ├── noeyegray.json │ │ │ │ │ │ │ ├── noeyegray.png │ │ │ │ │ │ │ ├── noeyegray.wmc │ │ │ │ │ │ │ ├── nomouthgray.json │ │ │ │ │ │ │ ├── nomouthgray.png │ │ │ │ │ │ │ ├── nomouthgray.wmc │ │ │ │ │ │ │ ├── video_wuguanliti │ │ │ │ │ │ │ │ ├── beauty_lips.png │ │ │ │ │ │ │ │ ├── beauty_multiply.png │ │ │ │ │ │ │ │ ├── beauty_normal.png │ │ │ │ │ │ │ │ ├── beauty_softlight.png │ │ │ │ │ │ │ │ ├── dannai_normal.png │ │ │ │ │ │ │ │ ├── hongkong_normal.png │ │ │ │ │ │ │ │ ├── lips_lut.png │ │ │ │ │ │ │ │ ├── lips_mask.png │ │ │ │ │ │ │ │ ├── lips_mask.wmc │ │ │ │ │ │ │ │ ├── lips_origin.png │ │ │ │ │ │ │ │ ├── params.wmc │ │ │ │ │ │ │ │ ├── teeth_lut.png │ │ │ │ │ │ │ │ └── teeth_mask.jpg │ │ │ │ │ │ │ └── wrinklemask.jpg │ │ │ │ │ │ │ └── realtimefaceedit │ │ │ │ │ │ │ ├── basic3.wmc │ │ │ │ │ │ │ ├── dayan.wmc │ │ │ │ │ │ │ ├── duanlian.wmc │ │ │ │ │ │ │ ├── shoubi.wmc │ │ │ │ │ │ │ ├── thinface.json │ │ │ │ │ │ │ ├── vlian.wmc │ │ │ │ │ │ │ ├── xiaba.wmc │ │ │ │ │ │ │ └── zhailian.wmc │ │ │ │ │ │ ├── MSFMLandmarks46_relandmark_models.xbin │ │ │ │ │ │ ├── RPNSegmenter.bundle │ │ │ │ │ │ ├── RPNSegmenter.metallib │ │ │ │ │ │ ├── RPNSegmenter_m5.rapidnetmodel │ │ │ │ │ │ └── RPNSegmenter_m5_638_382_bin.rapidnetproto │ │ │ │ │ │ ├── YTHandDetector.bundle │ │ │ │ │ │ ├── handdetect │ │ │ │ │ │ │ ├── v3.0_1130_add_lift_epoch40.rapidnetmodel_nchw │ │ │ │ │ │ │ └── v3.0_1130_add_lift_epoch40_bin.rapidnetproto_nchw_mod │ │ │ │ │ │ ├── handtrack │ │ │ │ │ │ │ └── add_p_tu_1130_800k.rpdm │ │ │ │ │ │ └── res18_3M │ │ │ │ │ │ │ ├── v3.0_int8_resnet18_3MB_1130.pb.rapidnetmodel_nhwc │ │ │ │ │ │ │ └── v3.0_int8_resnet18_3MB_1130.pb_bin.rapidnetproto_nhwc │ │ │ │ │ │ ├── detector.bundle │ │ │ │ │ │ ├── acn_535_net1.opt.tnnmodel │ │ │ │ │ │ ├── acn_535_net1.opt_bin.tnnproto │ │ │ │ │ │ ├── acn_535_net2.opt.tnnmodel │ │ │ │ │ │ ├── acn_535_net2.opt_bin.tnnproto │ │ │ │ │ │ └── detector_config.ini │ │ │ │ │ │ ├── e1 │ │ │ │ │ │ ├── o1 │ │ │ │ │ │ ├── poseest.bundle │ │ │ │ │ │ ├── meshBasis.bin │ │ │ │ │ │ └── rotBasis.bin │ │ │ │ │ │ ├── u1 │ │ │ │ │ │ ├── ufa.bundle │ │ │ │ │ │ ├── mbv2.11_64_1.05_p1_vis_0718.opt_v1.rapidmodel │ │ │ │ │ │ ├── mbv2.11_64_1.05_p1_vis_0718.opt_v1_bin.rapidproto │ │ │ │ │ │ ├── mbv2.15_picasso_56_1.3_p2_0711.opt_v1.rapidmodel │ │ │ │ │ │ ├── mbv2.15_picasso_56_1.3_p2_0711.opt_v1_bin.rapidproto │ │ │ │ │ │ └── ufa_config.ini │ │ │ │ │ │ └── v1 │ │ │ │ ├── QRScan │ │ │ │ │ ├── TPScanQRController.h │ │ │ │ │ └── TPScanQRController.mm │ │ │ │ ├── SmallButton │ │ │ │ │ ├── SmallButton.h │ │ │ │ │ └── SmallButton.m │ │ │ │ └── TCHttpUtil │ │ │ │ │ ├── TCHttpUtil.h │ │ │ │ │ └── TCHttpUtil.m │ │ │ ├── AppLogMgr.h │ │ │ ├── AppLogMgr.m │ │ │ ├── Main │ │ │ │ ├── MainTableViewCell.h │ │ │ │ ├── MainTableViewCell.m │ │ │ │ ├── MainViewController.h │ │ │ │ └── MainViewController.m │ │ │ ├── Resource │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AVRoom │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── camera_dis.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── camera_dis.png │ │ │ │ │ │ ├── camera_nol.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── camera_nol.png │ │ │ │ │ │ ├── mic.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── mic.png │ │ │ │ │ │ ├── mic_dis.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── mic_dis.png │ │ │ │ │ │ ├── sound.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── sound.png │ │ │ │ │ │ └── sound_dis.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── sound_dis.png │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon-1024.png │ │ │ │ │ │ ├── icon-20-ipad.png │ │ │ │ │ │ ├── icon-20@2x-ipad.png │ │ │ │ │ │ ├── icon-20@2x.png │ │ │ │ │ │ ├── icon-20@3x.png │ │ │ │ │ │ ├── icon-29-ipad.png │ │ │ │ │ │ ├── icon-29.png │ │ │ │ │ │ ├── icon-29@2x-ipad.png │ │ │ │ │ │ ├── icon-29@2x.png │ │ │ │ │ │ ├── icon-29@3x.png │ │ │ │ │ │ ├── icon-40.png │ │ │ │ │ │ ├── icon-40@2x.png │ │ │ │ │ │ ├── icon-40@3x.png │ │ │ │ │ │ ├── icon-50.png │ │ │ │ │ │ ├── icon-50@2x.png │ │ │ │ │ │ ├── icon-57.png │ │ │ │ │ │ ├── icon-57@2x.png │ │ │ │ │ │ ├── icon-60@2x.png │ │ │ │ │ │ ├── icon-60@3x.png │ │ │ │ │ │ ├── icon-72.png │ │ │ │ │ │ ├── icon-72@2x.png │ │ │ │ │ │ ├── icon-76.png │ │ │ │ │ │ ├── icon-76@2x.png │ │ │ │ │ │ └── icon-83.5@2x.png │ │ │ │ │ ├── AppIcon_TRTC.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon-60.png │ │ │ │ │ │ ├── Icon-60@2x.png │ │ │ │ │ │ ├── Icon-60@3x.png │ │ │ │ │ │ ├── Icon-Small@2x.png │ │ │ │ │ │ ├── Icon-Small@3x.png │ │ │ │ │ │ ├── Icon-Spotlight-40.png │ │ │ │ │ │ ├── Icon-Spotlight-40@2x.png │ │ │ │ │ │ ├── Icon-Spotlight-40@3x.png │ │ │ │ │ │ └── TRTC_Demo_App_icon.jpg │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Main │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── arrow.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── arrow@2x.png │ │ │ │ │ │ ├── avroom.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── avroom@2x.png │ │ │ │ │ │ ├── block_normal.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── block_normal@2x.png │ │ │ │ │ │ ├── block_pressed.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── block_pressed@2x.png │ │ │ │ │ │ ├── cut.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── cut@2x.png │ │ │ │ │ │ ├── dbg_tool.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── 调试.png │ │ │ │ │ │ ├── double_room.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── double_room@2x.png │ │ │ │ │ │ ├── liveplay.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── liveplay@2x.png │ │ │ │ │ │ ├── main_composite.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── main_composite.png │ │ │ │ │ │ ├── main_room_live.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── main_room_live.png │ │ │ │ │ │ ├── main_room_multi.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── main_room_multi.png │ │ │ │ │ │ ├── main_room_video.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── main_room_video.png │ │ │ │ │ │ ├── multi-chat.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── multi-chat.png │ │ │ │ │ │ ├── push.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── push@2x.png │ │ │ │ │ │ ├── qa.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── qa@2x.png │ │ │ │ │ │ ├── realtime-player.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── realtime-player.png │ │ │ │ │ │ ├── transparent.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── transparent.png │ │ │ │ │ │ └── vodplay.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── vodplay@2x.png │ │ │ │ │ ├── Play │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Input_box.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── Input_box.png │ │ │ │ │ │ ├── QR_code.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── QR_code.png │ │ │ │ │ │ ├── SuperPlayer │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── addp.imageset │ │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ │ └── addp@2x.png │ │ │ │ │ │ │ ├── back_full.imageset │ │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ │ ├── back_full@2x.png │ │ │ │ │ │ │ │ └── back_full@3x.png │ │ │ │ │ │ │ ├── play_setting.imageset │ │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ │ ├── play_setting.png │ │ │ │ │ │ │ │ ├── play_setting@2x.png │ │ │ │ │ │ │ │ └── play_setting@3x.png │ │ │ │ │ │ │ ├── player_back_full.imageset │ │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ │ ├── player_back_full@2x.png │ │ │ │ │ │ │ │ └── player_back_full@3x.png │ │ │ │ │ │ │ ├── player_bottom_shadow.imageset │ │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ │ └── player_bottom_shadow.png │ │ │ │ │ │ │ ├── player_fullscreen.imageset │ │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ │ ├── player_fullscreen.png │ │ │ │ │ │ │ │ ├── player_fullscreen@2x.png │ │ │ │ │ │ │ │ └── player_fullscreen@3x.png │ │ │ │ │ │ │ └── player_unlock-nor.imageset │ │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ │ ├── player_unlock-nor@2x.png │ │ │ │ │ │ │ │ └── player_unlock-nor@3x.png │ │ │ │ │ │ ├── adjust.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── adjust.png │ │ │ │ │ │ ├── black.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── black.png │ │ │ │ │ │ ├── btn_selected.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── btn_selected.png │ │ │ │ │ │ ├── btn_unselected.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── btn_unselected.png │ │ │ │ │ │ ├── cache.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── cache.png │ │ │ │ │ │ ├── cache2.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── cache2.png │ │ │ │ │ │ ├── cache_time.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── cache_time.png │ │ │ │ │ │ ├── close.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── close@2x.png │ │ │ │ │ │ ├── fill.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── fill.png │ │ │ │ │ │ ├── h264.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── h264.png │ │ │ │ │ │ ├── h265.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── h265.png │ │ │ │ │ │ ├── jisu_off.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── jisu_on.png │ │ │ │ │ │ ├── jisu_on.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── jisu_off.png │ │ │ │ │ │ ├── landscape.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── landscape.png │ │ │ │ │ │ ├── loading_image0.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_image0.png │ │ │ │ │ │ ├── loading_image1.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_image1.png │ │ │ │ │ │ ├── loading_image2.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_image2.png │ │ │ │ │ │ ├── loading_image3.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_image3.png │ │ │ │ │ │ ├── loading_image4.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_image4.png │ │ │ │ │ │ ├── loading_image5.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_image5.png │ │ │ │ │ │ ├── loading_image6.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_image6.png │ │ │ │ │ │ ├── loading_image7.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_image7.png │ │ │ │ │ │ ├── log.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── log.png │ │ │ │ │ │ ├── log2.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── log2.png │ │ │ │ │ │ ├── play_background.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── play_background@2x.png │ │ │ │ │ │ │ └── play_background@3x.png │ │ │ │ │ │ ├── play_cache_time.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── play_cache_time.png │ │ │ │ │ │ │ ├── play_cache_time@2x.png │ │ │ │ │ │ │ └── play_cache_time@3x.png │ │ │ │ │ │ ├── play_fill.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── play_fill.png │ │ │ │ │ │ │ ├── play_fill@2x.png │ │ │ │ │ │ │ └── play_fill@3x.png │ │ │ │ │ │ ├── play_log_show.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── play_log_show.png │ │ │ │ │ │ │ ├── play_log_show@2x.png │ │ │ │ │ │ │ └── play_log_show@3x.png │ │ │ │ │ │ ├── play_mute.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── playmute.png │ │ │ │ │ │ ├── play_pause.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── play_pause.png │ │ │ │ │ │ │ ├── play_pause@2x.png │ │ │ │ │ │ │ └── play_pause@3x.png │ │ │ │ │ │ ├── play_portrait.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── play_portrait.png │ │ │ │ │ │ │ ├── play_portrait@2x.png │ │ │ │ │ │ │ └── play_portrait@3x.png │ │ │ │ │ │ ├── play_setting.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── play_setting.png │ │ │ │ │ │ │ ├── play_setting@2x.png │ │ │ │ │ │ │ └── play_setting@3x.png │ │ │ │ │ │ ├── play_sound.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── playsound.png │ │ │ │ │ │ ├── play_start.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── play_start.png │ │ │ │ │ │ │ ├── play_start@2x.png │ │ │ │ │ │ │ └── play_start@3x.png │ │ │ │ │ │ ├── portrait.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── portrait.png │ │ │ │ │ │ ├── quick.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── quick.png │ │ │ │ │ │ ├── quick2.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── quick2.png │ │ │ │ │ │ ├── start.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── start.png │ │ │ │ │ │ ├── stop.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── close@2x.png │ │ │ │ │ │ ├── suspend.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── suspend.png │ │ │ │ │ │ └── white.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── white.png │ │ │ │ │ ├── Push │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── HD.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── HD.png │ │ │ │ │ │ ├── PU.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── PU.png │ │ │ │ │ │ ├── SD.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── SD.png │ │ │ │ │ │ ├── beauty_b2.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── 美颜-关.png │ │ │ │ │ │ ├── beauty_dis.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── beauty_dis.png │ │ │ │ │ │ ├── camera.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── camera.png │ │ │ │ │ │ │ ├── camera@2x.png │ │ │ │ │ │ │ └── camera@3x.png │ │ │ │ │ │ ├── camera2.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── camera2.png │ │ │ │ │ │ ├── float.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── float.png │ │ │ │ │ │ ├── float_b.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── 排列-浮动.png │ │ │ │ │ │ ├── gird.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── gird.png │ │ │ │ │ │ ├── gird_b.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── 排列-平铺.png │ │ │ │ │ │ ├── greenb.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── greenb.png │ │ │ │ │ │ ├── greenb2.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── greenb2.png │ │ │ │ │ │ ├── help.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── help.png │ │ │ │ │ │ ├── ic_green.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── ic_green.png │ │ │ │ │ │ ├── ic_red.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── ic_red.png │ │ │ │ │ │ ├── log_b.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── logo-开.png │ │ │ │ │ │ ├── log_b2.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── logo-关.png │ │ │ │ │ │ ├── mlvb_beauty.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── mlvb_beauty.png │ │ │ │ │ │ ├── mlvb_camera_back.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── mlvb_camera_back.png │ │ │ │ │ │ ├── mlvb_camera_front.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── mlvb_camera_front.png │ │ │ │ │ │ ├── music.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── music.png │ │ │ │ │ │ ├── mute_b.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── mute_b.png │ │ │ │ │ │ ├── mute_b2.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── 静音-关.png │ │ │ │ │ │ ├── new.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── new.png │ │ │ │ │ │ ├── pause_publish.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── pause_publish.jpg │ │ │ │ │ │ ├── send.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── send.png │ │ │ │ │ │ ├── set.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── set.png │ │ │ │ │ │ ├── set_b.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── 设置-开.png │ │ │ │ │ │ ├── set_b2.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── 设置-关.png │ │ │ │ │ │ ├── snapshot.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── snapshot.png │ │ │ │ │ │ ├── start2.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── start2.png │ │ │ │ │ │ ├── stop2.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── stop2.png │ │ │ │ │ │ ├── stopwatch.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── stopwatch.png │ │ │ │ │ │ ├── stopwatch_b.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── stopwatch_h.png │ │ │ │ │ │ ├── video_press.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── video_press.png │ │ │ │ │ │ └── watermark.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── watermark.png │ │ │ │ │ ├── RTCRoom │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── help_small.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── help_small@2x.png │ │ │ │ │ │ ├── linkmic_kickout.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── linkmic_kickout@2x.png │ │ │ │ │ │ ├── linkmic_start.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── linkmic_start@2x.png │ │ │ │ │ │ ├── linkmic_stop.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── linkmic_stop@2x.png │ │ │ │ │ │ ├── loading_1.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_1.png │ │ │ │ │ │ ├── loading_10.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_10.png │ │ │ │ │ │ ├── loading_11.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_11.png │ │ │ │ │ │ ├── loading_12.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_12.png │ │ │ │ │ │ ├── loading_13.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_13.png │ │ │ │ │ │ ├── loading_14.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_14.png │ │ │ │ │ │ ├── loading_2.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_2.png │ │ │ │ │ │ ├── loading_3.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_3.png │ │ │ │ │ │ ├── loading_4.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_4.png │ │ │ │ │ │ ├── loading_5.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_5.png │ │ │ │ │ │ ├── loading_6.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_6.png │ │ │ │ │ │ ├── loading_7.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_7.png │ │ │ │ │ │ ├── loading_8.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_8.png │ │ │ │ │ │ ├── loading_9.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_9.png │ │ │ │ │ │ ├── look_log.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── look_log@2x.png │ │ │ │ │ │ ├── mlvb_comment.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── mlvb_comment@2x.png │ │ │ │ │ │ ├── mlvb_pk.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── mlvb_pk.png │ │ │ │ │ │ ├── mlvb_pk_stop_button.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── mlvb_pk_stop_button.png │ │ │ │ │ │ ├── nick_mask.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── nick_mask@2x.png │ │ │ │ │ │ ├── people.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── people@2x.png │ │ │ │ │ │ ├── pk_start.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── pk_start.png │ │ │ │ │ │ │ ├── pk_start@2x.png │ │ │ │ │ │ │ └── pk_start@3x.png │ │ │ │ │ │ ├── release-env.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── 正式环境.png │ │ │ │ │ │ ├── test-env.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── 测试环境.png │ │ │ │ │ │ ├── tim-test.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── tim_test.png │ │ │ │ │ │ └── tim-yun.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── tim_formal.png │ │ │ │ │ ├── TRTC │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── VideoClosed.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── VideoClosed@2x.png │ │ │ │ │ │ ├── cdnLogo.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── cdnLogo.png │ │ │ │ │ │ ├── handsfree_off.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── handsfree_off@2x.png │ │ │ │ │ │ ├── handsfree_on.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── handsfree_on@2x.png │ │ │ │ │ │ ├── members.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── members.png │ │ │ │ │ │ ├── more_b.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── more_b@2x.png │ │ │ │ │ │ ├── muteAudio.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── muteAudio@2x.png │ │ │ │ │ │ ├── muteVideo.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── closeVideo.png │ │ │ │ │ │ ├── navback.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── back_full@3x.png │ │ │ │ │ │ ├── scaleFill.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── scaleFill@2x.png │ │ │ │ │ │ ├── scaleFit.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── scaleFit@2x.png │ │ │ │ │ │ ├── signal1.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── signal1@2x.png │ │ │ │ │ │ ├── signal2.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── signal2@2x.png │ │ │ │ │ │ ├── signal3.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── signal3@2x.png │ │ │ │ │ │ ├── signal4.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── signal4@2x.png │ │ │ │ │ │ ├── signal5.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── signal5@2x.png │ │ │ │ │ │ ├── unmuteAudio.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── unmuteAudio@2x.png │ │ │ │ │ │ ├── unmuteVideo.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── unCloseVideo.png │ │ │ │ │ │ └── view_close.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── close@3x.png │ │ │ │ │ ├── TRTCVoiceRoom │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── audioRoute_disable.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── voice_changer_disable.png │ │ │ │ │ │ │ ├── voice_changer_disable@2x.png │ │ │ │ │ │ │ └── voice_changer_disable@3x.png │ │ │ │ │ │ ├── audioRoute_off.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── voice_changer_off.png │ │ │ │ │ │ │ ├── voice_changer_off@2x.png │ │ │ │ │ │ │ └── voice_changer_off@3x.png │ │ │ │ │ │ ├── audioRoute_on.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── voice_changer_on.png │ │ │ │ │ │ │ ├── voice_changer_on@2x.png │ │ │ │ │ │ │ └── voice_changer_on@3x.png │ │ │ │ │ │ ├── avatar0_100.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── avatar0_100.png │ │ │ │ │ │ ├── avatar0_100.png │ │ │ │ │ │ ├── avatar1_100.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── avatar1_100.png │ │ │ │ │ │ ├── avatar1_100.png │ │ │ │ │ │ ├── avatar2_100.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── avatar2_100.png │ │ │ │ │ │ ├── avatar2_100.png │ │ │ │ │ │ ├── avatar3_100.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── avatar3_100.png │ │ │ │ │ │ ├── avatar3_100.png │ │ │ │ │ │ ├── avatar4_100.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── avatar4_100.png │ │ │ │ │ │ ├── avatar4_100.png │ │ │ │ │ │ ├── avatar5_100.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── avatar5_100.png │ │ │ │ │ │ ├── avatar5_100.png │ │ │ │ │ │ ├── avatar6_100.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── avatar6_100.png │ │ │ │ │ │ ├── avatar6_100.png │ │ │ │ │ │ ├── avatar7_100.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── avatar7_100.png │ │ │ │ │ │ ├── avatar7_100.png │ │ │ │ │ │ ├── avatar8_100.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── avatar8_100.png │ │ │ │ │ │ ├── avatar8_100.png │ │ │ │ │ │ ├── avatar9_100.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── avatar9_100.png │ │ │ │ │ │ ├── avatar9_100.png │ │ │ │ │ │ ├── bgm_pause.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── bgm_pause.png │ │ │ │ │ │ │ └── bgm_pause@3x.png │ │ │ │ │ │ ├── bgm_play.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── bgm_play.png │ │ │ │ │ │ │ └── bgm_play@3x.png │ │ │ │ │ │ ├── mic_dissable.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── mic_dissable.png │ │ │ │ │ │ │ ├── mic_dissable@2x.png │ │ │ │ │ │ │ └── mic_dissable@3x.png │ │ │ │ │ │ ├── mic_off.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── mic_off.png │ │ │ │ │ │ │ ├── mic_off@2x.png │ │ │ │ │ │ │ └── mic_off@3x.png │ │ │ │ │ │ ├── mic_on.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── mic_on.png │ │ │ │ │ │ │ ├── mic_on@2x.png │ │ │ │ │ │ │ └── mic_on@3x.png │ │ │ │ │ │ ├── more_disable.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── more_disable.png │ │ │ │ │ │ │ ├── more_disable@2x.png │ │ │ │ │ │ │ └── more_disable@3x.png │ │ │ │ │ │ ├── more_off.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── more.png │ │ │ │ │ │ │ ├── more@2x.png │ │ │ │ │ │ │ └── more_off@3x.png │ │ │ │ │ │ ├── more_on.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── more_on.png │ │ │ │ │ │ │ ├── more_on@2x.png │ │ │ │ │ │ │ └── more_on@3x.png │ │ │ │ │ │ ├── music_dissable.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── music_dissable.png │ │ │ │ │ │ │ ├── music_dissable@2x.png │ │ │ │ │ │ │ └── music_dissable@3x.png │ │ │ │ │ │ ├── music_off.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── music_off.png │ │ │ │ │ │ │ ├── music_off@2x.png │ │ │ │ │ │ │ └── music_off@3x.png │ │ │ │ │ │ ├── music_on.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── music_on.png │ │ │ │ │ │ │ ├── music_on@2x.png │ │ │ │ │ │ │ └── music_on@3x.png │ │ │ │ │ │ ├── plus.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── plus.png │ │ │ │ │ │ │ ├── plus@2x.png │ │ │ │ │ │ │ └── plus@3x.png │ │ │ │ │ │ ├── select_off.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── select_off.png │ │ │ │ │ │ │ ├── select_off@2x.png │ │ │ │ │ │ │ └── select_off@3x.png │ │ │ │ │ │ ├── voice_changer_disable.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── voice_changer_dissable.png │ │ │ │ │ │ │ ├── voice_changer_dissable@2x.png │ │ │ │ │ │ │ └── voice_changer_dissable@3x.png │ │ │ │ │ │ ├── voice_changer_off.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── voice_changer_off.png │ │ │ │ │ │ │ ├── voice_changer_off@2x.png │ │ │ │ │ │ │ └── voice_changer_off@3x.png │ │ │ │ │ │ ├── voice_changer_on.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── voice_changer_on.png │ │ │ │ │ │ │ ├── voice_changer_on@2x.png │ │ │ │ │ │ │ └── voice_changer_on@3x.png │ │ │ │ │ │ ├── voice_chatroom_1.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── voice_chatroom_1.png │ │ │ │ │ │ │ ├── voice_chatroom_1@2x.png │ │ │ │ │ │ │ └── voice_chatroom_1@3x.png │ │ │ │ │ │ ├── voice_effector_dissable.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── voice_effector_dissable.png │ │ │ │ │ │ │ ├── voice_effector_dissable@2x.png │ │ │ │ │ │ │ └── voice_effector_dissable@3x.png │ │ │ │ │ │ ├── voice_effector_off.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── voice_effector_off.png │ │ │ │ │ │ │ ├── voice_effector_off@2x.png │ │ │ │ │ │ │ └── voice_effector_off@3x.png │ │ │ │ │ │ ├── voice_effector_on.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── voice_effector_on.png │ │ │ │ │ │ │ ├── voice_effector_on@2x.png │ │ │ │ │ │ │ └── voice_effector_on@3x.png │ │ │ │ │ │ ├── voice_off.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── voice_off.png │ │ │ │ │ │ │ ├── voice_off@2x.png │ │ │ │ │ │ │ └── voice_off@3x.png │ │ │ │ │ │ ├── voice_on.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── voice_on.png │ │ │ │ │ │ │ ├── voice_on@2x.png │ │ │ │ │ │ │ └── voice_on@3x.png │ │ │ │ │ │ └── volume.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── volume.png │ │ │ │ │ │ │ ├── volume@2x.png │ │ │ │ │ │ │ └── volume@3x.png │ │ │ │ │ ├── audio_pause.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── audio_pause.png │ │ │ │ │ │ ├── audio_pause@2x.png │ │ │ │ │ │ └── audio_pause@3x.png │ │ │ │ │ ├── audio_play.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── audio_play.png │ │ │ │ │ │ ├── audio_play@2x.png │ │ │ │ │ │ └── audio_play@3x.png │ │ │ │ │ ├── audio_stop.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── audio_stop.png │ │ │ │ │ │ ├── audio_stop@2x.png │ │ │ │ │ │ └── audio_stop@3x.png │ │ │ │ │ ├── back.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── bgm_back.png │ │ │ │ │ │ ├── bgm_back@2x.png │ │ │ │ │ │ └── bgm_back@3x.png │ │ │ │ │ ├── background.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── background.jpg │ │ │ │ │ ├── beautyPanelMenuSelectionBackgroundImage.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── beautyPanelMenuSelectionBackgroundImage@2x.png │ │ │ │ │ ├── checkbox_nor.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── checkbox_nor.png │ │ │ │ │ │ ├── checkbox_nor@2x.png │ │ │ │ │ │ └── checkbox_nor@3x.png │ │ │ │ │ ├── checkbox_sel.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── checkbox_sel.png │ │ │ │ │ │ ├── checkbox_sel@2x.png │ │ │ │ │ │ └── checkbox_sel@3x.png │ │ │ │ │ ├── copy.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── copy@2x.png │ │ │ │ │ ├── exit.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── exitRoom.png │ │ │ │ │ │ ├── exitRoom@2x.png │ │ │ │ │ │ └── exitRoom@3x.png │ │ │ │ │ ├── ic_logout.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ic_logout.png │ │ │ │ │ │ ├── ic_logout@2x.png │ │ │ │ │ │ └── ic_logout@3x.png │ │ │ │ │ ├── launchimage.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── launchimage@2x.png │ │ │ │ │ │ └── launchimage@3x.png │ │ │ │ │ ├── livepusher_ic_qcode.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── livepusher_ic_qcode.png │ │ │ │ │ ├── main_mine_about.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── about.png │ │ │ │ │ │ ├── about@2x.png │ │ │ │ │ │ └── about@3x.png │ │ │ │ │ ├── main_mine_about_back.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── black_back.png │ │ │ │ │ │ ├── black_back@2x.png │ │ │ │ │ │ └── black_back@3x.png │ │ │ │ │ ├── main_mine_detail.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── detail.png │ │ │ │ │ │ ├── detail@2x.png │ │ │ │ │ │ └── detail@3x.png │ │ │ │ │ ├── main_mine_disclaimer.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Disclaimers.png │ │ │ │ │ │ ├── Disclaimers@2x.png │ │ │ │ │ │ └── Disclaimers@3x.png │ │ │ │ │ ├── main_mine_edit.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── edit.png │ │ │ │ │ │ ├── edit@2x.png │ │ │ │ │ │ └── edit@3x.png │ │ │ │ │ ├── main_mine_privacy.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── privaty.png │ │ │ │ │ │ ├── privaty@2x.png │ │ │ │ │ │ └── privaty@3x.png │ │ │ │ │ ├── members.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── members@2x.png │ │ │ │ │ ├── navi_log.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── navi_log.png │ │ │ │ │ │ ├── navi_log@2x.png │ │ │ │ │ │ └── navi_log@3x.png │ │ │ │ │ ├── qrcode.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── qrcode@2x.png │ │ │ │ │ ├── resign.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── resign.png │ │ │ │ │ ├── scan.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── scan@2x.png │ │ │ │ │ ├── userAgreement.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── userAgreement.png │ │ │ │ │ │ ├── userAgreement@2x.png │ │ │ │ │ │ └── userAgreement@3x.png │ │ │ │ │ ├── 下一个.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 下一个@3x.png │ │ │ │ │ ├── 下一个_pressed.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 下一个_pressed@3x.png │ │ │ │ │ ├── 亮度大.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 亮度大@3x.png │ │ │ │ │ ├── 亮度小.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 亮度小@3x.png │ │ │ │ │ ├── 全屏.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 全屏@3x.png │ │ │ │ │ ├── 全屏_pressed.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 全屏_pressed@3x.png │ │ │ │ │ ├── 声音.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 声音@3x.png │ │ │ │ │ ├── 声音放大.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 声音放大@3x.png │ │ │ │ │ ├── 弹幕.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 弹幕@3x.png │ │ │ │ │ ├── 弹幕_pressed.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 弹幕_pressed@3x.png │ │ │ │ │ ├── 截屏.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 截屏@3x.png │ │ │ │ │ ├── 截屏_pressed.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 截屏_pressed@3x.png │ │ │ │ │ ├── 扫码.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 扫码@3x.png │ │ │ │ │ ├── 搜索框.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 搜索框@3x.png │ │ │ │ │ ├── 更多.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 更多@3x.png │ │ │ │ │ ├── 更多_pressed.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 更多_pressed@3x.png │ │ │ │ │ ├── 背景.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 背景@3x.png │ │ │ │ │ ├── 返回.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 返回@3x.png │ │ │ │ │ ├── 进度按钮.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 进度按钮@3x.png │ │ │ │ │ └── 进度按钮点击.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 进度按钮点击@3x.png │ │ │ │ ├── English.lproj │ │ │ │ │ └── UserProtocol.html │ │ │ │ ├── FilterResource.bundle │ │ │ │ │ ├── bailan.png │ │ │ │ │ ├── baixi.png │ │ │ │ │ ├── chaotuo.png │ │ │ │ │ ├── chunzhen.png │ │ │ │ │ ├── fennen.png │ │ │ │ │ ├── huaijiu.png │ │ │ │ │ ├── landiao.png │ │ │ │ │ ├── langman.png │ │ │ │ │ ├── normal.png │ │ │ │ │ ├── qingliang.png │ │ │ │ │ ├── qingxin.png │ │ │ │ │ ├── rixi.png │ │ │ │ │ ├── weimei.png │ │ │ │ │ ├── white.png │ │ │ │ │ ├── xiangfen.png │ │ │ │ │ ├── yinghong.png │ │ │ │ │ ├── yuanqi.png │ │ │ │ │ ├── yunshang.png │ │ │ │ │ └── ziran.png │ │ │ │ ├── Localized │ │ │ │ │ ├── AppLocalized.h │ │ │ │ │ ├── AppLocalized.m │ │ │ │ │ ├── AppPortalLocalized │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── AppPortalLocalized.strings │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ │ └── AppPortalLocalized.strings │ │ │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ │ │ └── AppPortalLocalized.strings │ │ │ │ │ ├── LiveLocalized │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── LivePlayerLocalized.strings │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ │ └── LivePlayerLocalized.strings │ │ │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ │ │ └── LivePlayerLocalized.strings │ │ │ │ │ ├── LoginNetworkLocalized │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── LoginNetworkLocalized.strings │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ │ └── LoginNetworkLocalized.strings │ │ │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ │ │ └── LoginNetworkLocalized.strings │ │ │ │ │ ├── PlayerLocalized │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── PlayerLocalized.strings │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ │ └── PlayerLocalized.strings │ │ │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ │ │ └── PlayerLocalized.strings │ │ │ │ │ ├── TRTCLocalized │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── TRTCDemoLocalized.strings │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ │ └── TRTCDemoLocalized.strings │ │ │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ │ │ └── TRTCDemoLocalized.strings │ │ │ │ │ ├── UGCLocalized │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── UGCLocalized.strings │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ │ └── UGCLocalized.strings │ │ │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ │ │ └── UGCLocalized.strings │ │ │ │ │ └── V2Localized │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── V2LiveLocalized.strings │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── V2LiveLocalized.strings │ │ │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ │ └── V2LiveLocalized.strings │ │ │ │ ├── Settings.bundle │ │ │ │ │ ├── Root.plist │ │ │ │ │ └── en.lproj │ │ │ │ │ │ └── Root.strings │ │ │ │ ├── TXVodPlayer.bundle │ │ │ │ │ └── tx_vod_seamless_pip_backgroud_video.mp4 │ │ │ │ ├── TengXunYun_logo │ │ │ │ ├── back_full@2x.png │ │ │ │ ├── back_full@3x.png │ │ │ │ ├── bgm_demo.mp3 │ │ │ │ ├── en.lproj │ │ │ │ │ └── UserProtocol.html │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ └── UserProtocol.html │ │ │ ├── TXAppInfo.h │ │ │ ├── TXAppInfo.m │ │ │ ├── TXAppInstance.h │ │ │ ├── TXAppInstance.m │ │ │ ├── TXConfigManager.h │ │ │ ├── TXConfigManager.m │ │ │ └── config │ │ │ │ └── Player.plist │ │ ├── PlayerAppdelegate.h │ │ ├── PlayerAppdelegate.m │ │ ├── PlayerKit.h │ │ ├── PlayerKitCommonHeaders.h │ │ ├── Register │ │ │ ├── VodPlayerRouter.h │ │ │ └── VodPlayerRouter.m │ │ ├── SuperPlayFeedDemo │ │ │ ├── Controller │ │ │ │ ├── FeedDetailViewController.h │ │ │ │ ├── FeedDetailViewController.m │ │ │ │ ├── FeedPlayViewController.h │ │ │ │ └── FeedPlayViewController.m │ │ │ ├── Model │ │ │ │ ├── FeedDetailModel.h │ │ │ │ ├── FeedDetailModel.m │ │ │ │ ├── FeedHeadModel.h │ │ │ │ ├── FeedHeadModel.m │ │ │ │ ├── FeedVideoModel.h │ │ │ │ └── FeedVideoModel.m │ │ │ ├── Utils │ │ │ │ ├── FeedRequestUtil.h │ │ │ │ ├── FeedRequestUtil.m │ │ │ │ └── FeedVideoPlayMem.h │ │ │ └── Views │ │ │ │ ├── Cell │ │ │ │ ├── FeedDetailViewCell.h │ │ │ │ ├── FeedDetailViewCell.m │ │ │ │ ├── FeedTableViewCell.h │ │ │ │ └── FeedTableViewCell.m │ │ │ │ ├── FeedBaseView │ │ │ │ ├── FeedBaseView.h │ │ │ │ └── FeedBaseView.m │ │ │ │ ├── FeedDetailView.h │ │ │ │ ├── FeedDetailView.m │ │ │ │ ├── FeedDetailView │ │ │ │ ├── FeedDetailHeadView.h │ │ │ │ └── FeedDetailHeadView.m │ │ │ │ ├── FeedHeadView │ │ │ │ ├── FeedHeadView.h │ │ │ │ └── FeedHeadView.m │ │ │ │ ├── SuperFeedPlayView.h │ │ │ │ └── SuperFeedPlayView.m │ │ ├── SuperPlayerDemo │ │ │ ├── Download │ │ │ │ ├── DownloadViewController.h │ │ │ │ └── DownloadViewController.m │ │ │ ├── SuperPlayer │ │ │ │ ├── CFDanmaku │ │ │ │ │ ├── CFDanmaku.h │ │ │ │ │ ├── CFDanmaku.m │ │ │ │ │ ├── CFDanmakuInfo.h │ │ │ │ │ ├── CFDanmakuInfo.m │ │ │ │ │ ├── CFDanmakuView.h │ │ │ │ │ ├── CFDanmakuView.m │ │ │ │ │ └── danmakufile │ │ │ │ ├── CacheView │ │ │ │ │ ├── ResolutionCell.h │ │ │ │ │ ├── ResolutionCell.m │ │ │ │ │ ├── ResolutionModel.h │ │ │ │ │ ├── ResolutionModel.m │ │ │ │ │ ├── VideoCacheCell.h │ │ │ │ │ ├── VideoCacheCell.m │ │ │ │ │ ├── VideoCacheListView │ │ │ │ │ │ ├── VideoCacheListCell.h │ │ │ │ │ │ ├── VideoCacheListCell.m │ │ │ │ │ │ ├── VideoCacheListModel.h │ │ │ │ │ │ ├── VideoCacheListModel.m │ │ │ │ │ │ ├── VideoCacheListView.h │ │ │ │ │ │ └── VideoCacheListView.m │ │ │ │ │ ├── VideoCacheModel.h │ │ │ │ │ ├── VideoCacheModel.m │ │ │ │ │ ├── VideoCacheView.h │ │ │ │ │ ├── VideoCacheView.m │ │ │ │ │ └── VodDownloadCenter │ │ │ │ │ │ ├── DownloadCallback.h │ │ │ │ │ │ ├── DownloadCallback.m │ │ │ │ │ │ ├── TXVodDownloadCenter.h │ │ │ │ │ │ └── TXVodDownloadCenter.m │ │ │ │ ├── ListUI │ │ │ │ │ ├── ListVideoCell.h │ │ │ │ │ └── ListVideoCell.m │ │ │ │ ├── MoviePlayerViewController.h │ │ │ │ ├── MoviePlayerViewController.m │ │ │ │ ├── SuperPlayerGuideView.h │ │ │ │ ├── SuperPlayerGuideView.m │ │ │ │ ├── TXLaunchMoviePlayProtocol.h │ │ │ │ ├── TXMoviePlayInfoResponse.h │ │ │ │ ├── TXMoviePlayInfoResponse.m │ │ │ │ ├── TXMoviePlayerNetApi.h │ │ │ │ ├── TXMoviePlayerNetApi.m │ │ │ │ └── TXMoviePlayerNetDelegate.h │ │ │ └── UGCUpload │ │ │ │ ├── UGCUploadList.h │ │ │ │ └── UGCUploadList.m │ │ ├── TUIShortVideoPlayDemo │ │ │ ├── Controller │ │ │ │ ├── TUIShortVideoPlayViewController.h │ │ │ │ └── TUIShortVideoPlayViewController.m │ │ │ ├── Data │ │ │ │ ├── TUIShortVideoPlayer.plist │ │ │ │ ├── TUIShortVideoPlayerDataManager.h │ │ │ │ └── TUIShortVideoPlayerDataManager.m │ │ │ ├── TUISDK │ │ │ │ ├── TUIPlayerCore │ │ │ │ │ └── TUIPlayerCore.xcframework │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── ios-arm64 │ │ │ │ │ │ └── TUIPlayerCore.framework │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ ├── TUIPlayerAuth.h │ │ │ │ │ │ │ ├── TUIPlayerBitrateItem.h │ │ │ │ │ │ │ ├── TUIPlayerCacheManager.h │ │ │ │ │ │ │ ├── TUIPlayerConfig.h │ │ │ │ │ │ │ ├── TUIPlayerCore-umbrella.h │ │ │ │ │ │ │ ├── TUIPlayerCore.h │ │ │ │ │ │ │ ├── TUIPlayerCorePlayeEventHeader.h │ │ │ │ │ │ │ ├── TUIPlayerLog.h │ │ │ │ │ │ │ ├── TUIPlayerManager.h │ │ │ │ │ │ │ ├── TUIPlayerResumeManager.h │ │ │ │ │ │ │ ├── TUIPlayerStrategyManager.h │ │ │ │ │ │ │ ├── TUIPlayerStrategyModel.h │ │ │ │ │ │ │ ├── TUIPlayerVideoConfig.h │ │ │ │ │ │ │ ├── TUIPlayerVideoModel.h │ │ │ │ │ │ │ ├── TUIPlayerVideoPreloadState.h │ │ │ │ │ │ │ └── TUITXVodPlayerWrapper.h │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ ├── Modules │ │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ │ │ └── TUIPlayerCore │ │ │ │ │ │ └── ios-arm64_x86_64-simulator │ │ │ │ │ │ └── TUIPlayerCore.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── TUIPlayerAuth.h │ │ │ │ │ │ ├── TUIPlayerBitrateItem.h │ │ │ │ │ │ ├── TUIPlayerCacheManager.h │ │ │ │ │ │ ├── TUIPlayerConfig.h │ │ │ │ │ │ ├── TUIPlayerCore-umbrella.h │ │ │ │ │ │ ├── TUIPlayerCore.h │ │ │ │ │ │ ├── TUIPlayerCorePlayeEventHeader.h │ │ │ │ │ │ ├── TUIPlayerLog.h │ │ │ │ │ │ ├── TUIPlayerManager.h │ │ │ │ │ │ ├── TUIPlayerResumeManager.h │ │ │ │ │ │ ├── TUIPlayerStrategyManager.h │ │ │ │ │ │ ├── TUIPlayerStrategyModel.h │ │ │ │ │ │ ├── TUIPlayerVideoConfig.h │ │ │ │ │ │ ├── TUIPlayerVideoModel.h │ │ │ │ │ │ ├── TUIPlayerVideoPreloadState.h │ │ │ │ │ │ └── TUITXVodPlayerWrapper.h │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── Modules │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ │ ├── TUIPlayerCore │ │ │ │ │ │ └── _CodeSignature │ │ │ │ │ │ ├── CodeDirectory │ │ │ │ │ │ ├── CodeRequirements │ │ │ │ │ │ ├── CodeRequirements-1 │ │ │ │ │ │ ├── CodeResources │ │ │ │ │ │ └── CodeSignature │ │ │ │ └── TUIPlayerShortVideo │ │ │ │ │ ├── TUIPlayerShortVideo.bundle │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── img_video_loading~iphone.png │ │ │ │ │ ├── img_video_loading~iphone@2x.png │ │ │ │ │ ├── pause.png │ │ │ │ │ ├── pause@2x.png │ │ │ │ │ ├── pause@3x.png │ │ │ │ │ └── shortVideo_NoNet@3x.png │ │ │ │ │ └── TUIPlayerShortVideo.xcframework │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── ios-arm64 │ │ │ │ │ └── TUIPlayerShortVideo.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── TUIPlayerShortVideo-umbrella.h │ │ │ │ │ │ ├── TUIPlayerShortVideoControl.h │ │ │ │ │ │ ├── TUIPlayerShortVideoCustomControl.h │ │ │ │ │ │ ├── TUIPlayerShortVideoLoadingViewProtocol.h │ │ │ │ │ │ ├── TUIPlayerShortVideoPlaceholderControlView.h │ │ │ │ │ │ ├── TUIPlayerShortVideoPlaceholderCustomControlView.h │ │ │ │ │ │ ├── TUIPlayerShortVideoSDKVersion.h │ │ │ │ │ │ ├── TUIPlayerShortVideoUIManager.h │ │ │ │ │ │ ├── TUIPlayerViewCommonDefine.h │ │ │ │ │ │ ├── TUIPullUpRefreshControl.h │ │ │ │ │ │ ├── TUIShortVideoBaseView.h │ │ │ │ │ │ ├── TUIShortVideoDataManager.h │ │ │ │ │ │ ├── TUIShortVideoItemCustomCell.h │ │ │ │ │ │ ├── TUIShortVideoItemView.h │ │ │ │ │ │ ├── TUIShortVideoLoadingView.h │ │ │ │ │ │ ├── TUIShortVideoView+SDKVersion.h │ │ │ │ │ │ └── TUIShortVideoView.h │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── Modules │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ │ └── TUIPlayerShortVideo │ │ │ │ │ └── ios-arm64_x86_64-simulator │ │ │ │ │ └── TUIPlayerShortVideo.framework │ │ │ │ │ ├── Headers │ │ │ │ │ ├── TUIPlayerShortVideo-umbrella.h │ │ │ │ │ ├── TUIPlayerShortVideoControl.h │ │ │ │ │ ├── TUIPlayerShortVideoCustomControl.h │ │ │ │ │ ├── TUIPlayerShortVideoLoadingViewProtocol.h │ │ │ │ │ ├── TUIPlayerShortVideoPlaceholderControlView.h │ │ │ │ │ ├── TUIPlayerShortVideoPlaceholderCustomControlView.h │ │ │ │ │ ├── TUIPlayerShortVideoSDKVersion.h │ │ │ │ │ ├── TUIPlayerShortVideoUIManager.h │ │ │ │ │ ├── TUIPlayerViewCommonDefine.h │ │ │ │ │ ├── TUIPullUpRefreshControl.h │ │ │ │ │ ├── TUIShortVideoBaseView.h │ │ │ │ │ ├── TUIShortVideoDataManager.h │ │ │ │ │ ├── TUIShortVideoItemCustomCell.h │ │ │ │ │ ├── TUIShortVideoItemView.h │ │ │ │ │ ├── TUIShortVideoLoadingView.h │ │ │ │ │ ├── TUIShortVideoView+SDKVersion.h │ │ │ │ │ └── TUIShortVideoView.h │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── Modules │ │ │ │ │ └── module.modulemap │ │ │ │ │ ├── TUIPlayerShortVideo │ │ │ │ │ └── _CodeSignature │ │ │ │ │ ├── CodeDirectory │ │ │ │ │ ├── CodeRequirements │ │ │ │ │ ├── CodeRequirements-1 │ │ │ │ │ ├── CodeResources │ │ │ │ │ └── CodeSignature │ │ │ └── View │ │ │ │ ├── Skins │ │ │ │ └── Default │ │ │ │ │ ├── LineLoadingView │ │ │ │ │ ├── TUISVLineLoadingView.h │ │ │ │ │ └── TUISVLineLoadingView.m │ │ │ │ │ ├── LoadingView │ │ │ │ │ ├── TUIPSDLoadingView.h │ │ │ │ │ └── TUIPSDLoadingView.m │ │ │ │ │ ├── PlayerControl │ │ │ │ │ ├── TUIPlayerShortVideoControlView.h │ │ │ │ │ └── TUIPlayerShortVideoControlView.m │ │ │ │ │ ├── SliderView │ │ │ │ │ ├── TUIShortVideoSliderView.h │ │ │ │ │ └── TUIShortVideoSliderView.m │ │ │ │ │ └── TimeView │ │ │ │ │ ├── TUIShortVideoTimeView.h │ │ │ │ │ └── TUIShortVideoTimeView.m │ │ │ │ ├── TUIShortVideoPlayerViewNavView.h │ │ │ │ └── TUIShortVideoPlayerViewNavView.m │ │ ├── ThirdPart │ │ │ ├── AFNetworking │ │ │ │ ├── AFNetworking │ │ │ │ │ ├── AFCompatibilityMacros.h │ │ │ │ │ ├── AFHTTPSessionManager.h │ │ │ │ │ ├── AFHTTPSessionManager.m │ │ │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ │ │ ├── AFNetworkReachabilityManager.m │ │ │ │ │ ├── AFNetworking.h │ │ │ │ │ ├── AFSecurityPolicy.h │ │ │ │ │ ├── AFSecurityPolicy.m │ │ │ │ │ ├── AFURLRequestSerialization.h │ │ │ │ │ ├── AFURLRequestSerialization.m │ │ │ │ │ ├── AFURLResponseSerialization.h │ │ │ │ │ ├── AFURLResponseSerialization.m │ │ │ │ │ ├── AFURLSessionManager.h │ │ │ │ │ └── AFURLSessionManager.m │ │ │ │ └── UIKit+AFNetworking │ │ │ │ │ ├── AFAutoPurgingImageCache.h │ │ │ │ │ ├── AFAutoPurgingImageCache.m │ │ │ │ │ ├── AFImageDownloader.h │ │ │ │ │ ├── AFImageDownloader.m │ │ │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ │ │ ├── AFNetworkActivityIndicatorManager.m │ │ │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ │ │ ├── UIActivityIndicatorView+AFNetworking.m │ │ │ │ │ ├── UIButton+AFNetworking.h │ │ │ │ │ ├── UIButton+AFNetworking.m │ │ │ │ │ ├── UIImageView+AFNetworking.h │ │ │ │ │ ├── UIImageView+AFNetworking.m │ │ │ │ │ ├── UIKit+AFNetworking.h │ │ │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ │ │ ├── UIProgressView+AFNetworking.m │ │ │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ │ │ ├── UIRefreshControl+AFNetworking.m │ │ │ │ │ ├── WKWebView+AFNetworking.h │ │ │ │ │ └── WKWebView+AFNetworking.m │ │ │ ├── CWStatusBarNotification │ │ │ │ └── CWStatusBarNotification │ │ │ │ │ ├── CWStatusBarNotification.h │ │ │ │ │ └── CWStatusBarNotification.m │ │ │ ├── MBProgressHUD │ │ │ │ ├── MBProgressHUD.h │ │ │ │ └── MBProgressHUD.m │ │ │ ├── MJExtension │ │ │ │ └── MJExtension │ │ │ │ │ ├── MJExtension.h │ │ │ │ │ ├── MJExtensionConst.h │ │ │ │ │ ├── MJExtensionConst.m │ │ │ │ │ ├── MJFoundation.h │ │ │ │ │ ├── MJFoundation.m │ │ │ │ │ ├── MJProperty.h │ │ │ │ │ ├── MJProperty.m │ │ │ │ │ ├── MJPropertyKey.h │ │ │ │ │ ├── MJPropertyKey.m │ │ │ │ │ ├── MJPropertyType.h │ │ │ │ │ ├── MJPropertyType.m │ │ │ │ │ ├── NSObject+MJClass.h │ │ │ │ │ ├── NSObject+MJClass.m │ │ │ │ │ ├── NSObject+MJCoding.h │ │ │ │ │ ├── NSObject+MJCoding.m │ │ │ │ │ ├── NSObject+MJKeyValue.h │ │ │ │ │ ├── NSObject+MJKeyValue.m │ │ │ │ │ ├── NSObject+MJProperty.h │ │ │ │ │ ├── NSObject+MJProperty.m │ │ │ │ │ ├── NSString+MJExtension.h │ │ │ │ │ └── NSString+MJExtension.m │ │ │ ├── MJRefresh │ │ │ │ └── MJRefresh │ │ │ │ │ ├── Base │ │ │ │ │ ├── MJRefreshAutoFooter.h │ │ │ │ │ ├── MJRefreshAutoFooter.m │ │ │ │ │ ├── MJRefreshBackFooter.h │ │ │ │ │ ├── MJRefreshBackFooter.m │ │ │ │ │ ├── MJRefreshComponent.h │ │ │ │ │ ├── MJRefreshComponent.m │ │ │ │ │ ├── MJRefreshFooter.h │ │ │ │ │ ├── MJRefreshFooter.m │ │ │ │ │ ├── MJRefreshHeader.h │ │ │ │ │ ├── MJRefreshHeader.m │ │ │ │ │ ├── MJRefreshTrailer.h │ │ │ │ │ └── MJRefreshTrailer.m │ │ │ │ │ ├── Custom │ │ │ │ │ ├── Footer │ │ │ │ │ │ ├── Auto │ │ │ │ │ │ │ ├── MJRefreshAutoGifFooter.h │ │ │ │ │ │ │ ├── MJRefreshAutoGifFooter.m │ │ │ │ │ │ │ ├── MJRefreshAutoNormalFooter.h │ │ │ │ │ │ │ ├── MJRefreshAutoNormalFooter.m │ │ │ │ │ │ │ ├── MJRefreshAutoStateFooter.h │ │ │ │ │ │ │ └── MJRefreshAutoStateFooter.m │ │ │ │ │ │ └── Back │ │ │ │ │ │ │ ├── MJRefreshBackGifFooter.h │ │ │ │ │ │ │ ├── MJRefreshBackGifFooter.m │ │ │ │ │ │ │ ├── MJRefreshBackNormalFooter.h │ │ │ │ │ │ │ ├── MJRefreshBackNormalFooter.m │ │ │ │ │ │ │ ├── MJRefreshBackStateFooter.h │ │ │ │ │ │ │ └── MJRefreshBackStateFooter.m │ │ │ │ │ ├── Header │ │ │ │ │ │ ├── MJRefreshGifHeader.h │ │ │ │ │ │ ├── MJRefreshGifHeader.m │ │ │ │ │ │ ├── MJRefreshNormalHeader.h │ │ │ │ │ │ ├── MJRefreshNormalHeader.m │ │ │ │ │ │ ├── MJRefreshStateHeader.h │ │ │ │ │ │ └── MJRefreshStateHeader.m │ │ │ │ │ └── Trailer │ │ │ │ │ │ ├── MJRefreshNormalTrailer.h │ │ │ │ │ │ ├── MJRefreshNormalTrailer.m │ │ │ │ │ │ ├── MJRefreshStateTrailer.h │ │ │ │ │ │ └── MJRefreshStateTrailer.m │ │ │ │ │ ├── MJRefresh.bundle │ │ │ │ │ ├── arrow@2x.png │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ ├── ko.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ ├── ru.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ ├── trail_arrow@2x.png │ │ │ │ │ ├── uk.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ ├── zh-Hans.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ └── zh-Hant.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ ├── MJRefresh.h │ │ │ │ │ ├── MJRefreshConfig.h │ │ │ │ │ ├── MJRefreshConfig.m │ │ │ │ │ ├── MJRefreshConst.h │ │ │ │ │ ├── MJRefreshConst.m │ │ │ │ │ ├── NSBundle+MJRefresh.h │ │ │ │ │ ├── NSBundle+MJRefresh.m │ │ │ │ │ ├── UICollectionViewLayout+MJRefresh.h │ │ │ │ │ ├── UICollectionViewLayout+MJRefresh.m │ │ │ │ │ ├── UIScrollView+MJExtension.h │ │ │ │ │ ├── UIScrollView+MJExtension.m │ │ │ │ │ ├── UIScrollView+MJRefresh.h │ │ │ │ │ ├── UIScrollView+MJRefresh.m │ │ │ │ │ ├── UIView+MJExtension.h │ │ │ │ │ └── UIView+MJExtension.m │ │ │ ├── SDWebImage │ │ │ │ ├── SDWebImage │ │ │ │ │ ├── Core │ │ │ │ │ │ ├── NSButton+WebCache.h │ │ │ │ │ │ ├── NSButton+WebCache.m │ │ │ │ │ │ ├── NSData+ImageContentType.h │ │ │ │ │ │ ├── NSData+ImageContentType.m │ │ │ │ │ │ ├── NSImage+Compatibility.h │ │ │ │ │ │ ├── NSImage+Compatibility.m │ │ │ │ │ │ ├── SDAnimatedImage.h │ │ │ │ │ │ ├── SDAnimatedImage.m │ │ │ │ │ │ ├── SDAnimatedImagePlayer.h │ │ │ │ │ │ ├── SDAnimatedImagePlayer.m │ │ │ │ │ │ ├── SDAnimatedImageRep.h │ │ │ │ │ │ ├── SDAnimatedImageRep.m │ │ │ │ │ │ ├── SDAnimatedImageView+WebCache.h │ │ │ │ │ │ ├── SDAnimatedImageView+WebCache.m │ │ │ │ │ │ ├── SDAnimatedImageView.h │ │ │ │ │ │ ├── SDAnimatedImageView.m │ │ │ │ │ │ ├── SDDiskCache.h │ │ │ │ │ │ ├── SDDiskCache.m │ │ │ │ │ │ ├── SDGraphicsImageRenderer.h │ │ │ │ │ │ ├── SDGraphicsImageRenderer.m │ │ │ │ │ │ ├── SDImageAPNGCoder.h │ │ │ │ │ │ ├── SDImageAPNGCoder.m │ │ │ │ │ │ ├── SDImageAWebPCoder.h │ │ │ │ │ │ ├── SDImageAWebPCoder.m │ │ │ │ │ │ ├── SDImageCache.h │ │ │ │ │ │ ├── SDImageCache.m │ │ │ │ │ │ ├── SDImageCacheConfig.h │ │ │ │ │ │ ├── SDImageCacheConfig.m │ │ │ │ │ │ ├── SDImageCacheDefine.h │ │ │ │ │ │ ├── SDImageCacheDefine.m │ │ │ │ │ │ ├── SDImageCachesManager.h │ │ │ │ │ │ ├── SDImageCachesManager.m │ │ │ │ │ │ ├── SDImageCoder.h │ │ │ │ │ │ ├── SDImageCoder.m │ │ │ │ │ │ ├── SDImageCoderHelper.h │ │ │ │ │ │ ├── SDImageCoderHelper.m │ │ │ │ │ │ ├── SDImageCodersManager.h │ │ │ │ │ │ ├── SDImageCodersManager.m │ │ │ │ │ │ ├── SDImageFrame.h │ │ │ │ │ │ ├── SDImageFrame.m │ │ │ │ │ │ ├── SDImageGIFCoder.h │ │ │ │ │ │ ├── SDImageGIFCoder.m │ │ │ │ │ │ ├── SDImageGraphics.h │ │ │ │ │ │ ├── SDImageGraphics.m │ │ │ │ │ │ ├── SDImageHEICCoder.h │ │ │ │ │ │ ├── SDImageHEICCoder.m │ │ │ │ │ │ ├── SDImageIOAnimatedCoder.h │ │ │ │ │ │ ├── SDImageIOAnimatedCoder.m │ │ │ │ │ │ ├── SDImageIOCoder.h │ │ │ │ │ │ ├── SDImageIOCoder.m │ │ │ │ │ │ ├── SDImageLoader.h │ │ │ │ │ │ ├── SDImageLoader.m │ │ │ │ │ │ ├── SDImageLoadersManager.h │ │ │ │ │ │ ├── SDImageLoadersManager.m │ │ │ │ │ │ ├── SDImageTransformer.h │ │ │ │ │ │ ├── SDImageTransformer.m │ │ │ │ │ │ ├── SDMemoryCache.h │ │ │ │ │ │ ├── SDMemoryCache.m │ │ │ │ │ │ ├── SDWebImageCacheKeyFilter.h │ │ │ │ │ │ ├── SDWebImageCacheKeyFilter.m │ │ │ │ │ │ ├── SDWebImageCacheSerializer.h │ │ │ │ │ │ ├── SDWebImageCacheSerializer.m │ │ │ │ │ │ ├── SDWebImageCompat.h │ │ │ │ │ │ ├── SDWebImageCompat.m │ │ │ │ │ │ ├── SDWebImageDefine.h │ │ │ │ │ │ ├── SDWebImageDefine.m │ │ │ │ │ │ ├── SDWebImageDownloader.h │ │ │ │ │ │ ├── SDWebImageDownloader.m │ │ │ │ │ │ ├── SDWebImageDownloaderConfig.h │ │ │ │ │ │ ├── SDWebImageDownloaderConfig.m │ │ │ │ │ │ ├── SDWebImageDownloaderDecryptor.h │ │ │ │ │ │ ├── SDWebImageDownloaderDecryptor.m │ │ │ │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ │ │ │ ├── SDWebImageDownloaderOperation.m │ │ │ │ │ │ ├── SDWebImageDownloaderRequestModifier.h │ │ │ │ │ │ ├── SDWebImageDownloaderRequestModifier.m │ │ │ │ │ │ ├── SDWebImageDownloaderResponseModifier.h │ │ │ │ │ │ ├── SDWebImageDownloaderResponseModifier.m │ │ │ │ │ │ ├── SDWebImageError.h │ │ │ │ │ │ ├── SDWebImageError.m │ │ │ │ │ │ ├── SDWebImageIndicator.h │ │ │ │ │ │ ├── SDWebImageIndicator.m │ │ │ │ │ │ ├── SDWebImageManager.h │ │ │ │ │ │ ├── SDWebImageManager.m │ │ │ │ │ │ ├── SDWebImageOperation.h │ │ │ │ │ │ ├── SDWebImageOperation.m │ │ │ │ │ │ ├── SDWebImageOptionsProcessor.h │ │ │ │ │ │ ├── SDWebImageOptionsProcessor.m │ │ │ │ │ │ ├── SDWebImagePrefetcher.h │ │ │ │ │ │ ├── SDWebImagePrefetcher.m │ │ │ │ │ │ ├── SDWebImageTransition.h │ │ │ │ │ │ ├── SDWebImageTransition.m │ │ │ │ │ │ ├── UIButton+WebCache.h │ │ │ │ │ │ ├── UIButton+WebCache.m │ │ │ │ │ │ ├── UIImage+ExtendedCacheData.h │ │ │ │ │ │ ├── UIImage+ExtendedCacheData.m │ │ │ │ │ │ ├── UIImage+ForceDecode.h │ │ │ │ │ │ ├── UIImage+ForceDecode.m │ │ │ │ │ │ ├── UIImage+GIF.h │ │ │ │ │ │ ├── UIImage+GIF.m │ │ │ │ │ │ ├── UIImage+MemoryCacheCost.h │ │ │ │ │ │ ├── UIImage+MemoryCacheCost.m │ │ │ │ │ │ ├── UIImage+Metadata.h │ │ │ │ │ │ ├── UIImage+Metadata.m │ │ │ │ │ │ ├── UIImage+MultiFormat.h │ │ │ │ │ │ ├── UIImage+MultiFormat.m │ │ │ │ │ │ ├── UIImage+Transform.h │ │ │ │ │ │ ├── UIImage+Transform.m │ │ │ │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ │ │ │ ├── UIImageView+HighlightedWebCache.m │ │ │ │ │ │ ├── UIImageView+WebCache.h │ │ │ │ │ │ ├── UIImageView+WebCache.m │ │ │ │ │ │ ├── UIView+WebCache.h │ │ │ │ │ │ ├── UIView+WebCache.m │ │ │ │ │ │ ├── UIView+WebCacheOperation.h │ │ │ │ │ │ └── UIView+WebCacheOperation.m │ │ │ │ │ └── Private │ │ │ │ │ │ ├── NSBezierPath+SDRoundedCorners.h │ │ │ │ │ │ ├── NSBezierPath+SDRoundedCorners.m │ │ │ │ │ │ ├── SDAssociatedObject.h │ │ │ │ │ │ ├── SDAssociatedObject.m │ │ │ │ │ │ ├── SDAsyncBlockOperation.h │ │ │ │ │ │ ├── SDAsyncBlockOperation.m │ │ │ │ │ │ ├── SDDeviceHelper.h │ │ │ │ │ │ ├── SDDeviceHelper.m │ │ │ │ │ │ ├── SDDisplayLink.h │ │ │ │ │ │ ├── SDDisplayLink.m │ │ │ │ │ │ ├── SDFileAttributeHelper.h │ │ │ │ │ │ ├── SDFileAttributeHelper.m │ │ │ │ │ │ ├── SDImageAssetManager.h │ │ │ │ │ │ ├── SDImageAssetManager.m │ │ │ │ │ │ ├── SDImageCachesManagerOperation.h │ │ │ │ │ │ ├── SDImageCachesManagerOperation.m │ │ │ │ │ │ ├── SDImageIOAnimatedCoderInternal.h │ │ │ │ │ │ ├── SDInternalMacros.h │ │ │ │ │ │ ├── SDInternalMacros.m │ │ │ │ │ │ ├── SDWeakProxy.h │ │ │ │ │ │ ├── SDWeakProxy.m │ │ │ │ │ │ ├── SDWebImageTransitionInternal.h │ │ │ │ │ │ ├── SDmetamacros.h │ │ │ │ │ │ ├── UIColor+SDHexString.h │ │ │ │ │ │ └── UIColor+SDHexString.m │ │ │ │ └── WebImage │ │ │ │ │ └── SDWebImage.h │ │ │ └── WMPageController │ │ │ │ └── WMPageController │ │ │ │ ├── WMMenuView │ │ │ │ ├── WMMenuItem.h │ │ │ │ ├── WMMenuItem.m │ │ │ │ ├── WMMenuView.h │ │ │ │ ├── WMMenuView.m │ │ │ │ ├── WMProgressView.h │ │ │ │ ├── WMProgressView.m │ │ │ │ ├── WMScrollView.h │ │ │ │ └── WMScrollView.m │ │ │ │ ├── WMPageController.h │ │ │ │ └── WMPageController.m │ │ ├── UGCShortVideoPlayDemo │ │ │ ├── Controller │ │ │ │ ├── ShortVideoMainViewController.h │ │ │ │ ├── ShortVideoMainViewController.m │ │ │ │ ├── ShortVideoPlayViewController.h │ │ │ │ ├── ShortVideoPlayViewController.m │ │ │ │ ├── TXCollectionLayout.h │ │ │ │ ├── TXCollectionLayout.m │ │ │ │ ├── TXVideoListViewController.h │ │ │ │ └── TXVideoListViewController.m │ │ │ ├── Model │ │ │ │ ├── TXVideoModel.h │ │ │ │ └── TXVideoModel.m │ │ │ ├── ShortVideo.xcassets │ │ │ │ ├── Contents.json │ │ │ │ ├── back.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── back@2x.png │ │ │ │ │ └── back@3x.png │ │ │ │ ├── click.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── click.png │ │ │ │ │ ├── click@2x.png │ │ │ │ │ └── click@3x.png │ │ │ │ ├── img_video_loading.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── img_video_loading~iphone.png │ │ │ │ │ └── img_video_loading~iphone@2x.png │ │ │ │ ├── leftSlide.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── leftSlide.png │ │ │ │ │ ├── leftSlide@2x.png │ │ │ │ │ └── leftSlide@3x.png │ │ │ │ ├── pause.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── pause.png │ │ │ │ │ ├── pause@2x.png │ │ │ │ │ └── pause@3x.png │ │ │ │ ├── progressSlide.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── progressSlide.png │ │ │ │ │ ├── progressSlide@2x.png │ │ │ │ │ └── progressSlide@3x.png │ │ │ │ ├── shortVideo_NoNet.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── shortVideo_NoNet@3x.png │ │ │ │ └── upSlide.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── upSlide.png │ │ │ │ │ ├── upSlide@2x.png │ │ │ │ │ └── upSlide@3x.png │ │ │ ├── Tools │ │ │ │ ├── Others │ │ │ │ │ └── TXVideoPlayMem.h │ │ │ │ ├── Request │ │ │ │ │ ├── TXVideoRequest.h │ │ │ │ │ └── TXVideoRequest.m │ │ │ │ ├── TXVideoPlayer │ │ │ │ │ ├── TXPlayerCacheManager.h │ │ │ │ │ ├── TXPlayerCacheManager.m │ │ │ │ │ ├── TXVideoPlayer.h │ │ │ │ │ └── TXVideoPlayer.m │ │ │ │ └── Utils │ │ │ │ │ ├── TXVideoUtils.h │ │ │ │ │ └── TXVideoUtils.m │ │ │ ├── View │ │ │ │ ├── Category │ │ │ │ │ ├── UIScrollView+GestureConflict.h │ │ │ │ │ ├── UIScrollView+GestureConflict.m │ │ │ │ │ ├── UITableView+indexPath.h │ │ │ │ │ └── UITableView+indexPath.m │ │ │ │ ├── Cell │ │ │ │ │ ├── TXTableViewCell.h │ │ │ │ │ ├── TXTableViewCell.m │ │ │ │ │ ├── TXVideoCell.h │ │ │ │ │ └── TXVideoCell.m │ │ │ │ ├── SuperShortVideoView.h │ │ │ │ ├── SuperShortVideoView.m │ │ │ │ ├── TXBaseView │ │ │ │ │ ├── TXVideoBaseView.h │ │ │ │ │ └── TXVideoBaseView.m │ │ │ │ ├── TXLineLoadingView │ │ │ │ │ ├── TXLineLoadingView.h │ │ │ │ │ └── TXLineLoadingView.m │ │ │ │ ├── TXLoadingView │ │ │ │ │ ├── TXLoadingView.h │ │ │ │ │ └── TXLoadingView.m │ │ │ │ ├── TXShortVideoGuideView │ │ │ │ │ ├── TXLeftSlideGuideView.h │ │ │ │ │ ├── TXLeftSlideGuideView.m │ │ │ │ │ ├── TXPauseGuideView.h │ │ │ │ │ ├── TXPauseGuideView.m │ │ │ │ │ ├── TXProgressSlideGuideView.h │ │ │ │ │ ├── TXProgressSlideGuideView.m │ │ │ │ │ ├── TXUpSlideGuideView.h │ │ │ │ │ └── TXUpSlideGuideView.m │ │ │ │ ├── TXSliderView │ │ │ │ │ ├── TXSliderView.h │ │ │ │ │ └── TXSliderView.m │ │ │ │ └── TXTimeView │ │ │ │ │ ├── TXTimeView.h │ │ │ │ │ └── TXTimeView.m │ │ │ └── ViewModel │ │ │ │ ├── TXVideoViewModel.h │ │ │ │ └── TXVideoViewModel.m │ │ ├── Util │ │ │ ├── UIImage+bundle.h │ │ │ └── UIImage+bundle.m │ │ └── VodPlayerDemo │ │ │ ├── BitratesView │ │ │ ├── TXBitrateView.h │ │ │ └── TXBitrateView.m │ │ │ ├── ConfigViewController │ │ │ ├── TXConfigViewController.h │ │ │ ├── TXConfigViewController.m │ │ │ ├── Tools │ │ │ │ ├── TXConfigCheckBox.h │ │ │ │ └── TXConfigCheckBox.m │ │ │ └── View │ │ │ │ ├── TXConfigBlockButton.h │ │ │ │ ├── TXConfigBlockButton.m │ │ │ │ ├── TXConfigCellText.h │ │ │ │ ├── TXConfigCellText.m │ │ │ │ ├── TXConfigTableMenu.h │ │ │ │ ├── TXConfigTableMenu.m │ │ │ │ ├── TXConfigText.h │ │ │ │ └── TXConfigText.m │ │ │ ├── PlayVodViewController.h │ │ │ ├── PlayVodViewController.m │ │ │ ├── VideoBitrate.h │ │ │ └── VideoBitrate.m │ └── XcodeConfig │ │ ├── LiteAVConfig.Debug.xcconfig │ │ └── LiteAVConfig.Release.xcconfig └── SuperPlayerKit │ ├── Resource │ ├── PrivacyInfo.xcprivacy │ └── SuperPlayer.xcassets │ │ ├── Contents.json │ │ ├── arrow.imageset │ │ ├── Contents.json │ │ └── arrow@3x.png │ │ ├── back_full.imageset │ │ ├── Contents.json │ │ ├── back_full@2x.png │ │ └── back_full@3x.png │ │ ├── bottom_shadow.imageset │ │ ├── Contents.json │ │ └── bottom_shadow.png │ │ ├── brightness.imageset │ │ ├── Contents.json │ │ └── brightness@2x.png │ │ ├── cacheView_noData.imageset │ │ ├── Contents.json │ │ └── cacheView_noData@2x.png │ │ ├── capture.imageset │ │ ├── Contents.json │ │ └── capture@3x.png │ │ ├── capture_pressed.imageset │ │ ├── Contents.json │ │ └── capture_pressed@3x.png │ │ ├── close.imageset │ │ ├── Contents.json │ │ └── close@3x.png │ │ ├── copywright_bg.imageset │ │ ├── Contents.json │ │ ├── copywright_bg@2x.png │ │ └── copywright_bg@3x.png │ │ ├── cw_img_bg.imageset │ │ ├── Contents.json │ │ ├── cw_img_bg@2x.png │ │ └── cw_img_bg@3x.png │ │ ├── danmu.imageset │ │ ├── Contents.json │ │ └── danmu@3x.png │ │ ├── danmu_pressed.imageset │ │ ├── Contents.json │ │ └── danmu_pressed@3x.png │ │ ├── defaultCoverImage.imageset │ │ ├── Contents.json │ │ └── defaultCoverImage.png │ │ ├── download.imageset │ │ ├── Contents.json │ │ ├── download@2x.png │ │ └── download@3x.png │ │ ├── fast_backward.imageset │ │ ├── Contents.json │ │ ├── fast_backward@2x.png │ │ └── fast_backward@3x.png │ │ ├── fast_forward.imageset │ │ ├── Contents.json │ │ ├── fast_forward@2x.png │ │ └── fast_forward@3x.png │ │ ├── fullscreen.imageset │ │ ├── Contents.json │ │ └── fullscreen@3x.png │ │ ├── fullscreen_press.imageset │ │ ├── Contents.json │ │ └── fullscreen_press@3x.png │ │ ├── iknown.imageset │ │ ├── Contents.json │ │ └── iknown@3x.png │ │ ├── left_g.imageset │ │ ├── Contents.json │ │ └── left_g@3x.png │ │ ├── light_max.imageset │ │ ├── Contents.json │ │ └── light_max@3x.png │ │ ├── light_min.imageset │ │ ├── Contents.json │ │ └── light_min@3x.png │ │ ├── lock-nor.imageset │ │ ├── Contents.json │ │ ├── lock-nor@2x.png │ │ └── lock-nor@3x.png │ │ ├── middle_g.imageset │ │ ├── Contents.json │ │ └── middle_g@3x.png │ │ ├── more.imageset │ │ ├── Contents.json │ │ └── more@3x.png │ │ ├── more_pressed.imageset │ │ ├── Contents.json │ │ └── more_pressed@3x.png │ │ ├── not_download.imageset │ │ ├── Contents.json │ │ ├── not_download@2x.png │ │ └── not_download@3x.png │ │ ├── offline_download.imageset │ │ ├── Contents.json │ │ └── offline_download@2x.png │ │ ├── pause.imageset │ │ ├── Contents.json │ │ └── pause@3x.png │ │ ├── pause_pressed.imageset │ │ ├── Contents.json │ │ └── pause_pressed@3x.png │ │ ├── pip_play_icon.imageset │ │ ├── Contents.json │ │ └── pip_play_icon.png │ │ ├── play.imageset │ │ ├── Contents.json │ │ └── play@3x.png │ │ ├── play_btn.imageset │ │ ├── Contents.json │ │ └── play_btn@2x.png │ │ ├── play_next.imageset │ │ ├── Contents.json │ │ └── play_next.png │ │ ├── play_pressed.imageset │ │ ├── Contents.json │ │ └── play_pressed@3x.png │ │ ├── play_setting.imageset │ │ ├── Contents.json │ │ ├── play_setting.png │ │ ├── play_setting@2x.png │ │ └── play_setting@3x.png │ │ ├── playbackward.imageset │ │ ├── Contents.json │ │ └── playbackward.png │ │ ├── playbackward_bg.imageset │ │ ├── Contents.json │ │ └── playbackward_bg.png │ │ ├── playforward.imageset │ │ ├── Contents.json │ │ └── playforward.png │ │ ├── playforward_bg.imageset │ │ ├── Contents.json │ │ └── playforward_bg.png │ │ ├── qg_online_bg.imageset │ │ ├── Contents.json │ │ └── qg_online_bg@2x.png │ │ ├── repeat_video.imageset │ │ ├── Contents.json │ │ ├── repeat_video.png │ │ ├── repeat_video@2x.png │ │ └── repeat_video@3x.png │ │ ├── right_g.imageset │ │ ├── Contents.json │ │ └── right_g@3x.png │ │ ├── shrinkscreen.imageset │ │ ├── Contents.json │ │ ├── shrinkscreen.png │ │ ├── shrinkscreen@2x.png │ │ └── shrinkscreen@3x.png │ │ ├── slider.imageset │ │ ├── Contents.json │ │ ├── slider.png │ │ ├── slider@2x.png │ │ └── slider@3x.png │ │ ├── slider_thumb.imageset │ │ ├── Contents.json │ │ └── slider_thumb@3x.png │ │ ├── slider_thumb_pressed.imageset │ │ ├── Contents.json │ │ └── slider_thumb_pressed@3x.png │ │ ├── sound_max.imageset │ │ ├── Contents.json │ │ └── sound_max@3x.png │ │ ├── sound_min.imageset │ │ ├── Contents.json │ │ └── sound_min@3x.png │ │ ├── subtitles.imageset │ │ ├── Contents.json │ │ └── subtitles.png │ │ ├── superplayer_dropdown.imageset │ │ ├── Contents.json │ │ └── superplayer_dropdown.png │ │ ├── top_shadow.imageset │ │ ├── Contents.json │ │ └── top_shadow.png │ │ ├── track.imageset │ │ ├── Contents.json │ │ └── track.png │ │ ├── unlock-nor.imageset │ │ ├── Contents.json │ │ ├── unlock-nor@2x.png │ │ └── unlock-nor@3x.png │ │ ├── videoCache_choose.imageset │ │ ├── Contents.json │ │ └── videoCache_choose@2x.png │ │ ├── videoCache_down.imageset │ │ ├── Contents.json │ │ └── videoCache_down@2x.png │ │ ├── videoCache_fail.imageset │ │ ├── Contents.json │ │ └── videoCache_fail@2x.png │ │ ├── videoCache_success.imageset │ │ ├── Contents.json │ │ └── videoCache_success@2x.png │ │ ├── videoCache_up.imageset │ │ ├── Contents.json │ │ └── videoCache_up@2x.png │ │ ├── wb_back.imageset │ │ ├── Contents.json │ │ └── wb_back@3x.png │ │ ├── wb_fullscreen.imageset │ │ ├── Contents.json │ │ └── wb_fullscreen@3x.png │ │ ├── wb_fullscreen_back.imageset │ │ ├── Contents.json │ │ └── wb_fullscreen_back@3x.png │ │ ├── wb_more.imageset │ │ ├── Contents.json │ │ └── wb_more@3x.png │ │ ├── wb_pause.imageset │ │ ├── Contents.json │ │ └── wb_pause@3x.png │ │ ├── wb_play.imageset │ │ ├── Contents.json │ │ └── wb_play@3x.png │ │ ├── wb_thumb.imageset │ │ ├── Contents.json │ │ └── wb_thumb@3x.png │ │ ├── wb_volume_off.imageset │ │ ├── Contents.json │ │ └── wb_volume_off@3x.png │ │ └── wb_volume_on.imageset │ │ ├── Contents.json │ │ └── wb_volume_on@3x.png │ ├── SuperPlayer.podspec │ ├── SuperPlayerKit.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── SuperPlayerKit.xcscheme │ ├── SuperPlayerKit │ ├── Category │ │ ├── NSString+URL.h │ │ ├── NSString+URL.m │ │ ├── UIInterface+TXRotation.h │ │ ├── UIInterface+TXRotation.m │ │ ├── UINavigationController+SuperPlayerRotation.h │ │ ├── UINavigationController+SuperPlayerRotation.m │ │ ├── UIView+MMLayout.h │ │ └── UIView+MMLayout.m │ ├── Localized │ │ ├── SuperPlayerLocalized.h │ │ └── SuperPlayerLocalized.m │ ├── Model │ │ ├── AdaptiveStream.h │ │ ├── AdaptiveStream.m │ │ ├── DynamicWaterModel.h │ │ ├── DynamicWaterModel.m │ │ ├── SPPlayCGIParseResult.h │ │ ├── SPPlayCGIParseResult.m │ │ ├── SPSubStreamInfo.h │ │ ├── SPSubStreamInfo.m │ │ ├── SPVideoFrameDescription.h │ │ ├── SPVideoFrameDescription.m │ │ ├── SuperPlayerSprite.h │ │ ├── SuperPlayerSprite.m │ │ ├── SuperPlayerSubtitles.h │ │ ├── SuperPlayerSubtitles.m │ │ ├── SuperPlayerUrl.h │ │ ├── SuperPlayerUrl.m │ │ ├── TXVipWatchModel.h │ │ └── TXVipWatchModel.m │ ├── Skins │ │ ├── SPDefaultControlView.h │ │ ├── SPDefaultControlView.m │ │ ├── SPWeiboControlView.h │ │ └── SPWeiboControlView.m │ ├── SmallWindow │ │ ├── SuperPlayerPIPManager.h │ │ ├── SuperPlayerPIPManager.m │ │ ├── SuperPlayerSmallWindow.h │ │ ├── SuperPlayerSmallWindow.m │ │ ├── SuperPlayerSmallWindowManager.h │ │ ├── SuperPlayerSmallWindowManager.m │ │ ├── SuperPlayerSmallWindowViewController.h │ │ └── SuperPlayerSmallWindowViewController.m │ ├── SuperPlayer.h │ ├── SuperPlayerControlView.h │ ├── SuperPlayerControlView.m │ ├── SuperPlayerControlViewDelegate.h │ ├── SuperPlayerHelpers.h │ ├── SuperPlayerLocalized │ │ ├── en.lproj │ │ │ └── SuperPlayerLocalized.strings │ │ └── zh-Hans.lproj │ │ │ └── SuperPlayerLocalized.strings │ ├── SuperPlayerModel.h │ ├── SuperPlayerModel.m │ ├── SuperPlayerModelInternal.h │ ├── SuperPlayerView.h │ ├── SuperPlayerView.m │ ├── SuperPlayerViewConfig.h │ ├── SuperPlayerViewConfig.m │ ├── Utils │ │ ├── DataReport.h │ │ ├── DataReport.m │ │ ├── J2Obj.h │ │ ├── J2Obj.m │ │ ├── NetWatcher.h │ │ ├── NetWatcher.m │ │ ├── StrUtils.h │ │ ├── StrUtils.m │ │ ├── SuperPlayerReachability.h │ │ ├── SuperPlayerReachability.m │ │ ├── TXBitrateItemHelper.h │ │ ├── TXBitrateItemHelper.m │ │ ├── TXCUrl.h │ │ ├── TXCUrl.m │ │ ├── UILabel+Size.h │ │ ├── UILabel+Size.m │ │ ├── UIView+Fade.h │ │ └── UIView+Fade.m │ └── Views │ │ ├── DynamicWaterMarkView │ │ ├── DynamicWatermarkView.h │ │ └── DynamicWatermarkView.m │ │ ├── MMMaterialDesignSpinner.h │ │ ├── MMMaterialDesignSpinner.m │ │ ├── PlayerSlider.h │ │ ├── PlayerSlider.m │ │ ├── SuperPlayerFastView.h │ │ ├── SuperPlayerFastView.m │ │ ├── SuperPlayerSettingsView.h │ │ ├── SuperPlayerSettingsView.m │ │ ├── SuperPlayerSubtitlesView │ │ ├── SubtitlesSettingView │ │ │ ├── SuperPlayerSubParamView.h │ │ │ ├── SuperPlayerSubParamView.m │ │ │ ├── SuperPlayerSubSettingView.h │ │ │ ├── SuperPlayerSubSettingView.m │ │ │ ├── SuperPlayerTableMenu.h │ │ │ └── SuperPlayerTableMenu.m │ │ ├── SuperPlayerSubtitlesView.h │ │ └── SuperPlayerSubtitlesView.m │ │ ├── SuperPlayerTrackView │ │ ├── SuperPlayerTrackView.h │ │ └── SuperPlayerTrackView.m │ │ ├── SuperPlayerView+Private.h │ │ └── VipView │ │ ├── TXVipTipView.h │ │ ├── TXVipTipView.m │ │ ├── TXVipWatchView.h │ │ └── TXVipWatchView.m │ └── XcodeConfig │ ├── LiteAVConfig.Debug.xcconfig │ └── LiteAVConfig.Release.xcconfig ├── Player-API-Example-iOS ├── PlayerApiDemo │ ├── PlayerApiDemo.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── PlayerApiDemo │ │ ├── AppModule │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Config │ │ │ │ ├── TXApiConfigManager.h │ │ │ │ └── TXApiConfigManager.m │ │ │ ├── Controller │ │ │ │ ├── MainViewController.h │ │ │ │ └── MainViewController.m │ │ │ ├── Localized │ │ │ │ ├── TXAppLocalized.h │ │ │ │ ├── TXAppLocalized.m │ │ │ │ ├── en.lproj │ │ │ │ │ └── TXHomeModuleLocalize.strings │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ └── TXHomeModuleLocalize.strings │ │ │ ├── Macro │ │ │ │ └── TXAppModuleMacro.h │ │ │ ├── Model │ │ │ │ ├── TXAppHomeModel.h │ │ │ │ ├── TXAppHomeModel.m │ │ │ │ ├── TXHomeCellModel.h │ │ │ │ └── TXHomeCellModel.m │ │ │ └── View │ │ │ │ ├── TXHomeTableViewCell.h │ │ │ │ └── TXHomeTableViewCell.m │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── FunctionModule │ │ │ ├── PreDownloadAndPreloadingModule │ │ │ │ ├── Controller │ │ │ │ │ ├── TXPreDownloadAndPreloadingViewController.h │ │ │ │ │ └── TXPreDownloadAndPreloadingViewController.m │ │ │ │ ├── Localized │ │ │ │ │ ├── TXPreDownloadAndPreloadingLocalized.h │ │ │ │ │ ├── TXPreDownloadAndPreloadingLocalized.m │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── TXPreDownloadAndPreloadingLocalize.strings │ │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ │ └── TXPreDownloadAndPreloadingLocalize.strings │ │ │ │ └── Macro │ │ │ │ │ ├── TXPreDownloadAndPreloadingColor.h │ │ │ │ │ ├── TXPreDownloadAndPreloadingLayout.h │ │ │ │ │ └── TXPreDownloadAndPreloadingResource.h │ │ │ ├── SetSpeciResolutionModule │ │ │ │ ├── Controller │ │ │ │ │ ├── TXSetSpeciResolutionViewController.h │ │ │ │ │ └── TXSetSpeciResolutionViewController.m │ │ │ │ ├── Localized │ │ │ │ │ ├── TXSetSpeciResolutionLocalized.h │ │ │ │ │ ├── TXSetSpeciResolutionLocalized.m │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── TXSetSpeciResolutionLocalize.strings │ │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ │ └── TXSetSpeciResolutionLocalize.strings │ │ │ │ └── Macro │ │ │ │ │ ├── TXSetSpeciResolutionColor.h │ │ │ │ │ ├── TXSetSpeciResolutionLayout.h │ │ │ │ │ └── TXSetSpeciResolutionResource.h │ │ │ ├── SetStartTimeModule │ │ │ │ ├── Controller │ │ │ │ │ ├── TXSetStartTimeViewController.h │ │ │ │ │ └── TXSetStartTimeViewController.m │ │ │ │ ├── Localized │ │ │ │ │ ├── TXSetStartTimeLocalized.h │ │ │ │ │ ├── TXSetStartTimeLocalized.m │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── TXSetStartTimeLocalize.strings │ │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ │ └── TXSetStartTimeLocalize.strings │ │ │ │ └── Macro │ │ │ │ │ ├── TXSetStartTimeColor.h │ │ │ │ │ ├── TXSetStartTimeLayout.h │ │ │ │ │ └── TXSetStartTimeResource.h │ │ │ ├── TXBasePlayerModule │ │ │ │ ├── ConfigViewController │ │ │ │ │ ├── TXConfigViewController.h │ │ │ │ │ ├── TXConfigViewController.m │ │ │ │ │ ├── Tools │ │ │ │ │ │ ├── TXConfigCheckBox.h │ │ │ │ │ │ └── TXConfigCheckBox.m │ │ │ │ │ └── View │ │ │ │ │ │ ├── TXConfigBlockButton.h │ │ │ │ │ │ ├── TXConfigBlockButton.m │ │ │ │ │ │ ├── TXConfigCellText.h │ │ │ │ │ │ ├── TXConfigCellText.m │ │ │ │ │ │ ├── TXConfigTableMenu.h │ │ │ │ │ │ ├── TXConfigTableMenu.m │ │ │ │ │ │ ├── TXConfigText.h │ │ │ │ │ │ └── TXConfigText.m │ │ │ │ ├── Controller │ │ │ │ │ ├── TXBasePlayerViewController.h │ │ │ │ │ └── TXBasePlayerViewController.m │ │ │ │ ├── Macro │ │ │ │ │ └── TXBasePlayerMacro.h │ │ │ │ ├── Resource │ │ │ │ │ └── TXBasePlayer.xcassets │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Input_box.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Input_box.png │ │ │ │ │ │ ├── QR_code.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── QR_code.png │ │ │ │ │ │ ├── adjust.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── adjust.png │ │ │ │ │ │ ├── background.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── background.jpg │ │ │ │ │ │ ├── btn_selected.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── btn_selected.png │ │ │ │ │ │ ├── btn_unselected.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── btn_unselected.png │ │ │ │ │ │ ├── cache.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── cache.png │ │ │ │ │ │ ├── cacheSelected.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── cacheSelected.png │ │ │ │ │ │ ├── fill.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── fill.png │ │ │ │ │ │ ├── fullscreen.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── fullscreen@3x.png │ │ │ │ │ │ ├── help_small.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── help_small@2x.png │ │ │ │ │ │ ├── landscape.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── landscape.png │ │ │ │ │ │ ├── loading_image0.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── loading_image0.png │ │ │ │ │ │ ├── loading_image1.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── loading_image1.png │ │ │ │ │ │ ├── loading_image2.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── loading_image2.png │ │ │ │ │ │ ├── loading_image3.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── loading_image3.png │ │ │ │ │ │ ├── loading_image4.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── loading_image4.png │ │ │ │ │ │ ├── loading_image5.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── loading_image5.png │ │ │ │ │ │ ├── loading_image6.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── loading_image6.png │ │ │ │ │ │ ├── loading_image7.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── loading_image7.png │ │ │ │ │ │ ├── log.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── log.png │ │ │ │ │ │ ├── logSelected.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── logSelected.png │ │ │ │ │ │ ├── play_mute.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── playmute.png │ │ │ │ │ │ ├── play_setting.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── play_setting.png │ │ │ │ │ │ ├── play_setting@2x.png │ │ │ │ │ │ └── play_setting@3x.png │ │ │ │ │ │ ├── play_sound.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── playsound.png │ │ │ │ │ │ ├── portrait.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── portrait.png │ │ │ │ │ │ ├── quick.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── quick.png │ │ │ │ │ │ ├── quickSelected.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── quickSelected.png │ │ │ │ │ │ ├── shrinkscreen.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── shrinkscreen.png │ │ │ │ │ │ ├── shrinkscreen@2x.png │ │ │ │ │ │ └── shrinkscreen@3x.png │ │ │ │ │ │ ├── start.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── start.png │ │ │ │ │ │ ├── stop.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── close@2x.png │ │ │ │ │ │ └── suspend.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── suspend.png │ │ │ │ ├── TXBasePlayerLocalized │ │ │ │ │ ├── TXBasePlayerLocalized.h │ │ │ │ │ ├── TXBasePlayerLocalized.m │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── TXBasePlayerLocalize.strings │ │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ │ └── TXBasePlayerLocalize.strings │ │ │ │ ├── TXScanQRController │ │ │ │ │ ├── TXScanQRController.h │ │ │ │ │ └── TXScanQRController.m │ │ │ │ └── Views │ │ │ │ │ ├── BitratesView │ │ │ │ │ ├── TXBitrateView.h │ │ │ │ │ ├── TXBitrateView.m │ │ │ │ │ ├── TXVideoBitrate.h │ │ │ │ │ └── TXVideoBitrate.m │ │ │ │ │ ├── BottomView │ │ │ │ │ ├── TXBasePlayerBottomView.h │ │ │ │ │ ├── TXBasePlayerBottomView.m │ │ │ │ │ ├── TXBottomToolView.h │ │ │ │ │ └── TXBottomToolView.m │ │ │ │ │ ├── Category │ │ │ │ │ ├── UIImage+TXExtension.h │ │ │ │ │ ├── UIImage+TXExtension.m │ │ │ │ │ ├── UIView+TXAdditions.h │ │ │ │ │ └── UIView+TXAdditions.m │ │ │ │ │ ├── LogView │ │ │ │ │ ├── TXBasePlayerLogView.h │ │ │ │ │ └── TXBasePlayerLogView.m │ │ │ │ │ └── TopView │ │ │ │ │ ├── TXBasePlayerTopView.h │ │ │ │ │ └── TXBasePlayerTopView.m │ │ │ ├── TXControlPanelViewController │ │ │ │ ├── Controller │ │ │ │ │ ├── TXControlPanelViewController.h │ │ │ │ │ └── TXControlPanelViewController.m │ │ │ │ ├── Macro │ │ │ │ │ └── TXControlPanelMacro.h │ │ │ │ └── Resource │ │ │ │ │ ├── Localized │ │ │ │ │ ├── TXControlPanelLocalized.h │ │ │ │ │ ├── TXControlPanelLocalized.m │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── TXControlPanelLocalize.strings │ │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ │ └── TXControlPanelLocalize.strings │ │ │ │ │ └── TXControlPanelResource │ │ │ │ │ └── TengXunYun_logo │ │ │ └── TXVideoDownloadModule │ │ │ │ ├── Controller │ │ │ │ ├── TXVideoDownloadViewController.h │ │ │ │ └── TXVideoDownloadViewController.m │ │ │ │ ├── Localized │ │ │ │ ├── TXVideoDownloadLocalized.h │ │ │ │ ├── TXVideoDownloadLocalized.m │ │ │ │ ├── en.lproj │ │ │ │ │ └── TXVideoDownloadLocalize.strings │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ └── TXVideoDownloadLocalize.strings │ │ │ │ └── Macro │ │ │ │ └── TXVideoDownloadMacro.h │ │ ├── Info.plist │ │ ├── Resource │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-40.png │ │ │ │ │ ├── Icon-60@2x.png │ │ │ │ │ ├── icon-1024.png │ │ │ │ │ ├── icon-20-ipad.png │ │ │ │ │ ├── icon-20@2x-ipad.png │ │ │ │ │ ├── icon-20@2x.png │ │ │ │ │ ├── icon-20@3x.png │ │ │ │ │ ├── icon-29-ipad.png │ │ │ │ │ ├── icon-29.png │ │ │ │ │ ├── icon-29@2x-ipad.png │ │ │ │ │ ├── icon-29@2x.png │ │ │ │ │ ├── icon-29@3x.png │ │ │ │ │ ├── icon-40@2x.png │ │ │ │ │ ├── icon-40@3x.png │ │ │ │ │ ├── icon-50.png │ │ │ │ │ ├── icon-50@2x.png │ │ │ │ │ ├── icon-57.png │ │ │ │ │ ├── icon-57@2x.png │ │ │ │ │ ├── icon-60@3x.png │ │ │ │ │ ├── icon-72.png │ │ │ │ │ ├── icon-72@2x.png │ │ │ │ │ ├── icon-76.png │ │ │ │ │ ├── icon-76@2x.png │ │ │ │ │ └── icon-83.5@2x.png │ │ │ │ ├── Contents.json │ │ │ │ ├── arrow.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── arrow@2x.png │ │ │ │ ├── back.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── back.png │ │ │ │ │ ├── back@2x.png │ │ │ │ │ └── back@3x.png │ │ │ │ └── transparent.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── transparent.png │ │ │ └── Player.plist │ │ ├── SceneModule │ │ │ └── ShortVideoModule │ │ │ │ ├── ShortVideoPlayViewController.h │ │ │ │ └── ShortVideoPlayViewController.m │ │ ├── main.m │ │ └── zh-Hans.lproj │ │ │ └── Main.strings │ └── Podfile └── ReadMe.md ├── README-EN.md ├── README.md ├── SDK ├── README-EN.md └── README.md └── Swift-Call-OC-Example ├── Podfile ├── SwiftCallOC.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── SwiftCallOC ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── SceneDelegate.swift ├── SwiftCallOC-Bridging-Header.h └── ViewController.swift ├── SwiftCallOCTests └── SwiftCallOCTests.swift └── SwiftCallOCUITests ├── SwiftCallOCUITests.swift └── SwiftCallOCUITestsLaunchTests.swift /Demo/PlayerApp/PlayerApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-20-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-20-ipad.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-20@2x-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-20@2x-ipad.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-29-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-29-ipad.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-29@2x-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-29@2x-ipad.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-40@2x-1.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-50.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-57.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-72.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Common/Localized/PlayerLocalized.h: -------------------------------------------------------------------------------- 1 | // Copyright © 2023 Tencent. All rights reserved. 2 | // 3 | 4 | #import 5 | 6 | NS_ASSUME_NONNULL_BEGIN 7 | 8 | extern NSString *PlayerLocalized(NSString *key); 9 | 10 | NS_ASSUME_NONNULL_END 11 | -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Player.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/PlayerLocalized/en.lproj/PlayerLocalized.strings: -------------------------------------------------------------------------------- 1 | // Copyright © 2023 Tencent. All rights reserved. 2 | 3 | "Player.MainTitle" = "Video Tool Kit"; 4 | 5 | -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/PlayerLocalized/zh-Hans.lproj/PlayerLocalized.strings: -------------------------------------------------------------------------------- 1 | // Copyright © 2023 Tencent. All rights reserved. 2 | 3 | 4 | "Player.MianTitle" = "视频云工具包"; 5 | -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Player_Premium.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/ViewController.h: -------------------------------------------------------------------------------- 1 | // Copyright © 2023 Tencent. All rights reserved. 2 | // 3 | 4 | #import 5 | 6 | @interface ViewController : UIViewController 7 | 8 | 9 | @end 10 | 11 | -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/zh-Hans.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/zh-Hans.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/YTFaceSDK.licence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/YTFaceSDK.licence -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/AECore.metallib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/AECore.metallib -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/FilterEngine.bundle/FilterResource/cos/bitlip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/FilterEngine.bundle/FilterResource/cos/bitlip.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/FilterEngine.bundle/FilterResource/cos/lipsHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/FilterEngine.bundle/FilterResource/cos/lipsHL.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/FilterEngine.bundle/FilterResource/cos/skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/FilterEngine.bundle/FilterResource/cos/skin.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/FilterEngine.bundle/FilterResource/cos/wocan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/FilterEngine.bundle/FilterResource/cos/wocan.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/MSFMLandmarks46_relandmark_models.xbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/MSFMLandmarks46_relandmark_models.xbin -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/RPNSegmenter.bundle/RPNSegmenter.metallib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/RPNSegmenter.bundle/RPNSegmenter.metallib -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/RPNSegmenter.bundle/RPNSegmenter_m5.rapidnetmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/RPNSegmenter.bundle/RPNSegmenter_m5.rapidnetmodel -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/detector.bundle/acn_535_net1.opt.tnnmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/detector.bundle/acn_535_net1.opt.tnnmodel -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/detector.bundle/acn_535_net1.opt_bin.tnnproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/detector.bundle/acn_535_net1.opt_bin.tnnproto -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/detector.bundle/acn_535_net2.opt.tnnmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/detector.bundle/acn_535_net2.opt.tnnmodel -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/detector.bundle/acn_535_net2.opt_bin.tnnproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/detector.bundle/acn_535_net2.opt_bin.tnnproto -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/detector.bundle/detector_config.ini: -------------------------------------------------------------------------------- 1 | version=v535 2 | 3 | model1=acn_535_net1.opt.tnnmodel 4 | proto1=acn_535_net1.opt_bin.tnnproto 5 | model2=acn_535_net2.opt.tnnmodel 6 | proto2=acn_535_net2.opt_bin.tnnproto 7 | -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/e1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/e1 -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/o1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/o1 -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/poseest.bundle/meshBasis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/poseest.bundle/meshBasis.bin -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/poseest.bundle/rotBasis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/poseest.bundle/rotBasis.bin -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/v1 -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AVRoom/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AVRoom/camera_dis.imageset/camera_dis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AVRoom/camera_dis.imageset/camera_dis.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AVRoom/camera_nol.imageset/camera_nol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AVRoom/camera_nol.imageset/camera_nol.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AVRoom/mic.imageset/mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AVRoom/mic.imageset/mic.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AVRoom/mic_dis.imageset/mic_dis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AVRoom/mic_dis.imageset/mic_dis.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AVRoom/sound.imageset/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AVRoom/sound.imageset/sound.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AVRoom/sound_dis.imageset/sound_dis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AVRoom/sound_dis.imageset/sound_dis.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-20-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-20-ipad.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-20@2x-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-20@2x-ipad.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-29-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-29-ipad.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-29@2x-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-29@2x-ipad.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-50.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-57.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-72.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon_TRTC.appiconset/Icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon_TRTC.appiconset/Icon-60.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon_TRTC.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon_TRTC.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon_TRTC.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon_TRTC.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon_TRTC.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon_TRTC.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon_TRTC.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon_TRTC.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon_TRTC.appiconset/Icon-Spotlight-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon_TRTC.appiconset/Icon-Spotlight-40.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon_TRTC.appiconset/Icon-Spotlight-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon_TRTC.appiconset/Icon-Spotlight-40@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon_TRTC.appiconset/Icon-Spotlight-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon_TRTC.appiconset/Icon-Spotlight-40@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon_TRTC.appiconset/TRTC_Demo_App_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon_TRTC.appiconset/TRTC_Demo_App_icon.jpg -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/arrow.imageset/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/arrow.imageset/arrow@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/avroom.imageset/avroom@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/avroom.imageset/avroom@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/block_normal.imageset/block_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/block_normal.imageset/block_normal@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/block_pressed.imageset/block_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/block_pressed.imageset/block_pressed@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/cut.imageset/cut@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/cut.imageset/cut@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/dbg_tool.imageset/调试.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/dbg_tool.imageset/调试.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/double_room.imageset/double_room@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/double_room.imageset/double_room@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/liveplay.imageset/liveplay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/liveplay.imageset/liveplay@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/main_composite.imageset/main_composite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/main_composite.imageset/main_composite.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/main_room_live.imageset/main_room_live.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/main_room_live.imageset/main_room_live.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/main_room_multi.imageset/main_room_multi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/main_room_multi.imageset/main_room_multi.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/main_room_video.imageset/main_room_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/main_room_video.imageset/main_room_video.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/multi-chat.imageset/multi-chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/multi-chat.imageset/multi-chat.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/push.imageset/push@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/push.imageset/push@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/qa.imageset/qa@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/qa.imageset/qa@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/realtime-player.imageset/realtime-player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/realtime-player.imageset/realtime-player.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/transparent.imageset/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/transparent.imageset/transparent.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/vodplay.imageset/vodplay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/vodplay.imageset/vodplay@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/Input_box.imageset/Input_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/Input_box.imageset/Input_box.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/QR_code.imageset/QR_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/QR_code.imageset/QR_code.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/SuperPlayer/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/SuperPlayer/addp.imageset/addp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/SuperPlayer/addp.imageset/addp@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/SuperPlayer/back_full.imageset/back_full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/SuperPlayer/back_full.imageset/back_full@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/SuperPlayer/back_full.imageset/back_full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/SuperPlayer/back_full.imageset/back_full@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/SuperPlayer/play_setting.imageset/play_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/SuperPlayer/play_setting.imageset/play_setting.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/adjust.imageset/adjust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/adjust.imageset/adjust.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/black.imageset/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/black.imageset/black.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/btn_selected.imageset/btn_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/btn_selected.imageset/btn_selected.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/btn_unselected.imageset/btn_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/btn_unselected.imageset/btn_unselected.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/cache.imageset/cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/cache.imageset/cache.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/cache2.imageset/cache2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/cache2.imageset/cache2.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/cache_time.imageset/cache_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/cache_time.imageset/cache_time.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/close.imageset/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/close.imageset/close@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/fill.imageset/fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/fill.imageset/fill.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/h264.imageset/h264.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/h264.imageset/h264.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/h265.imageset/h265.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/h265.imageset/h265.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/jisu_off.imageset/jisu_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/jisu_off.imageset/jisu_on.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/jisu_on.imageset/jisu_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/jisu_on.imageset/jisu_off.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/landscape.imageset/landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/landscape.imageset/landscape.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/loading_image0.imageset/loading_image0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/loading_image0.imageset/loading_image0.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/loading_image1.imageset/loading_image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/loading_image1.imageset/loading_image1.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/loading_image2.imageset/loading_image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/loading_image2.imageset/loading_image2.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/loading_image3.imageset/loading_image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/loading_image3.imageset/loading_image3.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/loading_image4.imageset/loading_image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/loading_image4.imageset/loading_image4.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/loading_image5.imageset/loading_image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/loading_image5.imageset/loading_image5.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/loading_image6.imageset/loading_image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/loading_image6.imageset/loading_image6.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/loading_image7.imageset/loading_image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/loading_image7.imageset/loading_image7.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/log.imageset/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/log.imageset/log.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/log2.imageset/log2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/log2.imageset/log2.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_background.imageset/play_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_background.imageset/play_background@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_background.imageset/play_background@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_background.imageset/play_background@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_cache_time.imageset/play_cache_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_cache_time.imageset/play_cache_time.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_cache_time.imageset/play_cache_time@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_cache_time.imageset/play_cache_time@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_cache_time.imageset/play_cache_time@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_cache_time.imageset/play_cache_time@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_fill.imageset/play_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_fill.imageset/play_fill.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_fill.imageset/play_fill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_fill.imageset/play_fill@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_fill.imageset/play_fill@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_fill.imageset/play_fill@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_log_show.imageset/play_log_show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_log_show.imageset/play_log_show.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_log_show.imageset/play_log_show@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_log_show.imageset/play_log_show@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_log_show.imageset/play_log_show@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_log_show.imageset/play_log_show@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_mute.imageset/playmute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_mute.imageset/playmute.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_pause.imageset/play_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_pause.imageset/play_pause.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_pause.imageset/play_pause@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_pause.imageset/play_pause@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_pause.imageset/play_pause@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_pause.imageset/play_pause@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_portrait.imageset/play_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_portrait.imageset/play_portrait.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_portrait.imageset/play_portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_portrait.imageset/play_portrait@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_portrait.imageset/play_portrait@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_portrait.imageset/play_portrait@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_setting.imageset/play_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_setting.imageset/play_setting.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_setting.imageset/play_setting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_setting.imageset/play_setting@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_setting.imageset/play_setting@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_setting.imageset/play_setting@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_sound.imageset/playsound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_sound.imageset/playsound.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_start.imageset/play_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_start.imageset/play_start.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_start.imageset/play_start@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_start.imageset/play_start@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_start.imageset/play_start@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/play_start.imageset/play_start@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/portrait.imageset/portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/portrait.imageset/portrait.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/quick.imageset/quick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/quick.imageset/quick.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/quick2.imageset/quick2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/quick2.imageset/quick2.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/start.imageset/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/start.imageset/start.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/stop.imageset/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/stop.imageset/close@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/suspend.imageset/suspend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/suspend.imageset/suspend.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/white.imageset/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/white.imageset/white.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/HD.imageset/HD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/HD.imageset/HD.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/PU.imageset/PU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/PU.imageset/PU.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/SD.imageset/SD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/SD.imageset/SD.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/beauty_b2.imageset/美颜-关.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/beauty_b2.imageset/美颜-关.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/beauty_dis.imageset/beauty_dis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/beauty_dis.imageset/beauty_dis.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/camera.imageset/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/camera.imageset/camera.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/camera.imageset/camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/camera.imageset/camera@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/camera.imageset/camera@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/camera.imageset/camera@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/camera2.imageset/camera2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/camera2.imageset/camera2.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/float.imageset/float.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/float.imageset/float.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/float_b.imageset/排列-浮动.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/float_b.imageset/排列-浮动.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/gird.imageset/gird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/gird.imageset/gird.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/gird_b.imageset/排列-平铺.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/gird_b.imageset/排列-平铺.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/greenb.imageset/greenb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/greenb.imageset/greenb.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/greenb2.imageset/greenb2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/greenb2.imageset/greenb2.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/help.imageset/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/help.imageset/help.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/ic_green.imageset/ic_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/ic_green.imageset/ic_green.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/ic_red.imageset/ic_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/ic_red.imageset/ic_red.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/log_b.imageset/logo-开.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/log_b.imageset/logo-开.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/log_b2.imageset/logo-关.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/log_b2.imageset/logo-关.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/mlvb_beauty.imageset/mlvb_beauty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/mlvb_beauty.imageset/mlvb_beauty.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/mlvb_camera_back.imageset/mlvb_camera_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/mlvb_camera_back.imageset/mlvb_camera_back.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/mlvb_camera_front.imageset/mlvb_camera_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/mlvb_camera_front.imageset/mlvb_camera_front.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/music.imageset/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/music.imageset/music.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/mute_b.imageset/mute_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/mute_b.imageset/mute_b.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/mute_b2.imageset/静音-关.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/mute_b2.imageset/静音-关.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/new.imageset/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/new.imageset/new.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/pause_publish.imageset/pause_publish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/pause_publish.imageset/pause_publish.jpg -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/send.imageset/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/send.imageset/send.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/set.imageset/set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/set.imageset/set.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/set_b.imageset/设置-开.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/set_b.imageset/设置-开.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/set_b2.imageset/设置-关.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/set_b2.imageset/设置-关.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/snapshot.imageset/snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/snapshot.imageset/snapshot.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/start2.imageset/start2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/start2.imageset/start2.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/stop2.imageset/stop2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/stop2.imageset/stop2.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/stopwatch.imageset/stopwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/stopwatch.imageset/stopwatch.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/stopwatch_b.imageset/stopwatch_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/stopwatch_b.imageset/stopwatch_h.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/video_press.imageset/video_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/video_press.imageset/video_press.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/watermark.imageset/watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/watermark.imageset/watermark.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/help_small.imageset/help_small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/help_small.imageset/help_small@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/linkmic_start.imageset/linkmic_start@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/linkmic_start.imageset/linkmic_start@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/linkmic_stop.imageset/linkmic_stop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/linkmic_stop.imageset/linkmic_stop@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/loading_1.imageset/loading_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/loading_1.imageset/loading_1.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/loading_10.imageset/loading_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/loading_10.imageset/loading_10.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/loading_11.imageset/loading_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/loading_11.imageset/loading_11.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/loading_12.imageset/loading_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/loading_12.imageset/loading_12.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/loading_13.imageset/loading_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/loading_13.imageset/loading_13.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/loading_14.imageset/loading_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/loading_14.imageset/loading_14.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/loading_2.imageset/loading_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/loading_2.imageset/loading_2.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/loading_3.imageset/loading_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/loading_3.imageset/loading_3.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/loading_4.imageset/loading_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/loading_4.imageset/loading_4.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/loading_5.imageset/loading_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/loading_5.imageset/loading_5.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/loading_6.imageset/loading_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/loading_6.imageset/loading_6.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/loading_7.imageset/loading_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/loading_7.imageset/loading_7.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/loading_8.imageset/loading_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/loading_8.imageset/loading_8.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/loading_9.imageset/loading_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/loading_9.imageset/loading_9.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/look_log.imageset/look_log@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/look_log.imageset/look_log@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/mlvb_comment.imageset/mlvb_comment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/mlvb_comment.imageset/mlvb_comment@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/mlvb_pk.imageset/mlvb_pk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/mlvb_pk.imageset/mlvb_pk.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/nick_mask.imageset/nick_mask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/nick_mask.imageset/nick_mask@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/people.imageset/people@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/people.imageset/people@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/pk_start.imageset/pk_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/pk_start.imageset/pk_start.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/pk_start.imageset/pk_start@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/pk_start.imageset/pk_start@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/pk_start.imageset/pk_start@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/pk_start.imageset/pk_start@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/release-env.imageset/正式环境.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/release-env.imageset/正式环境.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/test-env.imageset/测试环境.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/test-env.imageset/测试环境.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/tim-test.imageset/tim_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/tim-test.imageset/tim_test.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/tim-yun.imageset/tim_formal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/tim-yun.imageset/tim_formal.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/VideoClosed.imageset/VideoClosed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/VideoClosed.imageset/VideoClosed@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/cdnLogo.imageset/cdnLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/cdnLogo.imageset/cdnLogo.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/handsfree_off.imageset/handsfree_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/handsfree_off.imageset/handsfree_off@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/handsfree_on.imageset/handsfree_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/handsfree_on.imageset/handsfree_on@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/members.imageset/members.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/members.imageset/members.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/more_b.imageset/more_b@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/more_b.imageset/more_b@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/muteAudio.imageset/muteAudio@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/muteAudio.imageset/muteAudio@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/muteVideo.imageset/closeVideo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/muteVideo.imageset/closeVideo.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/navback.imageset/back_full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/navback.imageset/back_full@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/scaleFill.imageset/scaleFill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/scaleFill.imageset/scaleFill@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/scaleFit.imageset/scaleFit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/scaleFit.imageset/scaleFit@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/signal1.imageset/signal1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/signal1.imageset/signal1@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/signal2.imageset/signal2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/signal2.imageset/signal2@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/signal3.imageset/signal3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/signal3.imageset/signal3@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/signal4.imageset/signal4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/signal4.imageset/signal4@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/signal5.imageset/signal5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/signal5.imageset/signal5@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/unmuteAudio.imageset/unmuteAudio@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/unmuteAudio.imageset/unmuteAudio@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/unmuteVideo.imageset/unCloseVideo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/unmuteVideo.imageset/unCloseVideo.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/view_close.imageset/close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/view_close.imageset/close@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar0_100.imageset/avatar0_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar0_100.imageset/avatar0_100.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar0_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar0_100.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar1_100.imageset/avatar1_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar1_100.imageset/avatar1_100.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar1_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar1_100.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar2_100.imageset/avatar2_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar2_100.imageset/avatar2_100.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar2_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar2_100.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar3_100.imageset/avatar3_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar3_100.imageset/avatar3_100.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar3_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar3_100.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar4_100.imageset/avatar4_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar4_100.imageset/avatar4_100.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar4_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar4_100.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar5_100.imageset/avatar5_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar5_100.imageset/avatar5_100.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar5_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar5_100.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar6_100.imageset/avatar6_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar6_100.imageset/avatar6_100.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar6_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar6_100.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar7_100.imageset/avatar7_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar7_100.imageset/avatar7_100.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar7_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar7_100.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar8_100.imageset/avatar8_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar8_100.imageset/avatar8_100.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar8_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar8_100.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar9_100.imageset/avatar9_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar9_100.imageset/avatar9_100.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar9_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar9_100.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/bgm_pause.imageset/bgm_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/bgm_pause.imageset/bgm_pause.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/bgm_pause.imageset/bgm_pause@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/bgm_pause.imageset/bgm_pause@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/bgm_play.imageset/bgm_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/bgm_play.imageset/bgm_play.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/bgm_play.imageset/bgm_play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/bgm_play.imageset/bgm_play@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/mic_dissable.imageset/mic_dissable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/mic_dissable.imageset/mic_dissable.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/mic_off.imageset/mic_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/mic_off.imageset/mic_off.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/mic_off.imageset/mic_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/mic_off.imageset/mic_off@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/mic_off.imageset/mic_off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/mic_off.imageset/mic_off@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/mic_on.imageset/mic_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/mic_on.imageset/mic_on.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/mic_on.imageset/mic_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/mic_on.imageset/mic_on@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/mic_on.imageset/mic_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/mic_on.imageset/mic_on@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/more_disable.imageset/more_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/more_disable.imageset/more_disable.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/more_off.imageset/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/more_off.imageset/more.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/more_off.imageset/more@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/more_off.imageset/more@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/more_off.imageset/more_off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/more_off.imageset/more_off@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/more_on.imageset/more_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/more_on.imageset/more_on.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/more_on.imageset/more_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/more_on.imageset/more_on@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/more_on.imageset/more_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/more_on.imageset/more_on@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/music_off.imageset/music_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/music_off.imageset/music_off.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/music_off.imageset/music_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/music_off.imageset/music_off@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/music_off.imageset/music_off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/music_off.imageset/music_off@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/music_on.imageset/music_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/music_on.imageset/music_on.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/music_on.imageset/music_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/music_on.imageset/music_on@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/music_on.imageset/music_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/music_on.imageset/music_on@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/plus.imageset/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/plus.imageset/plus.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/plus.imageset/plus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/plus.imageset/plus@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/plus.imageset/plus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/plus.imageset/plus@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/select_off.imageset/select_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/select_off.imageset/select_off.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/select_off.imageset/select_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/select_off.imageset/select_off@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/select_off.imageset/select_off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/select_off.imageset/select_off@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/voice_off.imageset/voice_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/voice_off.imageset/voice_off.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/voice_off.imageset/voice_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/voice_off.imageset/voice_off@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/voice_off.imageset/voice_off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/voice_off.imageset/voice_off@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/voice_on.imageset/voice_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/voice_on.imageset/voice_on.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/voice_on.imageset/voice_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/voice_on.imageset/voice_on@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/voice_on.imageset/voice_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/voice_on.imageset/voice_on@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/volume.imageset/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/volume.imageset/volume.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/volume.imageset/volume@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/volume.imageset/volume@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/volume.imageset/volume@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/volume.imageset/volume@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/audio_pause.imageset/audio_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/audio_pause.imageset/audio_pause.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/audio_pause.imageset/audio_pause@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/audio_pause.imageset/audio_pause@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/audio_pause.imageset/audio_pause@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/audio_pause.imageset/audio_pause@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/audio_play.imageset/audio_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/audio_play.imageset/audio_play.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/audio_play.imageset/audio_play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/audio_play.imageset/audio_play@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/audio_play.imageset/audio_play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/audio_play.imageset/audio_play@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/audio_stop.imageset/audio_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/audio_stop.imageset/audio_stop.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/audio_stop.imageset/audio_stop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/audio_stop.imageset/audio_stop@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/audio_stop.imageset/audio_stop@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/audio_stop.imageset/audio_stop@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/back.imageset/bgm_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/back.imageset/bgm_back.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/back.imageset/bgm_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/back.imageset/bgm_back@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/back.imageset/bgm_back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/back.imageset/bgm_back@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/background.imageset/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/background.imageset/background.jpg -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/checkbox_nor.imageset/checkbox_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/checkbox_nor.imageset/checkbox_nor.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/checkbox_nor.imageset/checkbox_nor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/checkbox_nor.imageset/checkbox_nor@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/checkbox_nor.imageset/checkbox_nor@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/checkbox_nor.imageset/checkbox_nor@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/checkbox_sel.imageset/checkbox_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/checkbox_sel.imageset/checkbox_sel.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/checkbox_sel.imageset/checkbox_sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/checkbox_sel.imageset/checkbox_sel@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/checkbox_sel.imageset/checkbox_sel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/checkbox_sel.imageset/checkbox_sel@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/copy.imageset/copy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/copy.imageset/copy@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/exit.imageset/exitRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/exit.imageset/exitRoom.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/exit.imageset/exitRoom@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/exit.imageset/exitRoom@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/exit.imageset/exitRoom@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/exit.imageset/exitRoom@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/ic_logout.imageset/ic_logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/ic_logout.imageset/ic_logout.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/ic_logout.imageset/ic_logout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/ic_logout.imageset/ic_logout@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/ic_logout.imageset/ic_logout@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/ic_logout.imageset/ic_logout@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/launchimage.imageset/launchimage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/launchimage.imageset/launchimage@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/launchimage.imageset/launchimage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/launchimage.imageset/launchimage@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/livepusher_ic_qcode.imageset/livepusher_ic_qcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/livepusher_ic_qcode.imageset/livepusher_ic_qcode.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_about.imageset/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_about.imageset/about.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_about.imageset/about@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_about.imageset/about@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_about.imageset/about@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_about.imageset/about@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_about_back.imageset/black_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_about_back.imageset/black_back.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_about_back.imageset/black_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_about_back.imageset/black_back@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_about_back.imageset/black_back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_about_back.imageset/black_back@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_detail.imageset/detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_detail.imageset/detail.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_detail.imageset/detail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_detail.imageset/detail@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_detail.imageset/detail@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_detail.imageset/detail@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_disclaimer.imageset/Disclaimers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_disclaimer.imageset/Disclaimers.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_disclaimer.imageset/Disclaimers@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_disclaimer.imageset/Disclaimers@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_disclaimer.imageset/Disclaimers@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_disclaimer.imageset/Disclaimers@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_edit.imageset/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_edit.imageset/edit.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_edit.imageset/edit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_edit.imageset/edit@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_edit.imageset/edit@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_edit.imageset/edit@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_privacy.imageset/privaty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_privacy.imageset/privaty.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_privacy.imageset/privaty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_privacy.imageset/privaty@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_privacy.imageset/privaty@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/main_mine_privacy.imageset/privaty@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/members.imageset/members@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/members.imageset/members@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/navi_log.imageset/navi_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/navi_log.imageset/navi_log.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/navi_log.imageset/navi_log@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/navi_log.imageset/navi_log@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/navi_log.imageset/navi_log@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/navi_log.imageset/navi_log@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/qrcode.imageset/qrcode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/qrcode.imageset/qrcode@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/resign.imageset/resign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/resign.imageset/resign.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/scan.imageset/scan@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/scan.imageset/scan@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/userAgreement.imageset/userAgreement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/userAgreement.imageset/userAgreement.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/userAgreement.imageset/userAgreement@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/userAgreement.imageset/userAgreement@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/userAgreement.imageset/userAgreement@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/userAgreement.imageset/userAgreement@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/下一个.imageset/下一个@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/下一个.imageset/下一个@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/下一个_pressed.imageset/下一个_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/下一个_pressed.imageset/下一个_pressed@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/亮度大.imageset/亮度大@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/亮度大.imageset/亮度大@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/亮度小.imageset/亮度小@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/亮度小.imageset/亮度小@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/全屏.imageset/全屏@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/全屏.imageset/全屏@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/全屏_pressed.imageset/全屏_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/全屏_pressed.imageset/全屏_pressed@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/声音.imageset/声音@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/声音.imageset/声音@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/声音放大.imageset/声音放大@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/声音放大.imageset/声音放大@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/弹幕.imageset/弹幕@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/弹幕.imageset/弹幕@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/弹幕_pressed.imageset/弹幕_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/弹幕_pressed.imageset/弹幕_pressed@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/截屏.imageset/截屏@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/截屏.imageset/截屏@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/截屏_pressed.imageset/截屏_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/截屏_pressed.imageset/截屏_pressed@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/扫码.imageset/扫码@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/扫码.imageset/扫码@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/搜索框.imageset/搜索框@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/搜索框.imageset/搜索框@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/更多.imageset/更多@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/更多.imageset/更多@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/更多_pressed.imageset/更多_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/更多_pressed.imageset/更多_pressed@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/背景.imageset/背景@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/背景.imageset/背景@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/返回.imageset/返回@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/返回.imageset/返回@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/进度按钮.imageset/进度按钮@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/进度按钮.imageset/进度按钮@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/进度按钮点击.imageset/进度按钮点击@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/进度按钮点击.imageset/进度按钮点击@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/bailan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/bailan.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/baixi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/baixi.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/chaotuo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/chaotuo.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/chunzhen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/chunzhen.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/fennen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/fennen.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/huaijiu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/huaijiu.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/landiao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/landiao.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/langman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/langman.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/normal.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/qingliang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/qingliang.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/qingxin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/qingxin.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/rixi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/rixi.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/weimei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/weimei.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/white.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/xiangfen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/xiangfen.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/yinghong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/yinghong.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/yuanqi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/yuanqi.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/yunshang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/yunshang.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/ziran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/ziran.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Localized/LoginNetworkLocalized/English.lproj/LoginNetworkLocalized.strings: -------------------------------------------------------------------------------- 1 | /* 2 | LoginNetworkLocalized.strings 3 | TXLiteAVDemo 4 | 5 | Created by adams on 2021/3/22. 6 | Copyright © 2021 Tencent. All rights reserved. 7 | */ 8 | -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Localized/PlayerLocalized/English.lproj/PlayerLocalized.strings: -------------------------------------------------------------------------------- 1 | /* 2 | PlayerLocalized.strings 3 | TXLiteAVDemo 4 | 5 | Copyright © 2022 Tencent. All rights reserved. 6 | */ 7 | -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Localized/UGCLocalized/English.lproj/UGCLocalized.strings: -------------------------------------------------------------------------------- 1 | /* 2 | UGCLocalized.strings 3 | TXLiteAVDemo 4 | 5 | Created by adams on 2021/3/22. 6 | Copyright © 2021 Tencent. All rights reserved. 7 | */ 8 | -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Settings.bundle/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/Settings.bundle/en.lproj/Root.strings -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/TXVodPlayer.bundle/tx_vod_seamless_pip_backgroud_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/TXVodPlayer.bundle/tx_vod_seamless_pip_backgroud_video.mp4 -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/TengXunYun_logo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/TengXunYun_logo -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/back_full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/back_full@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/back_full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/back_full@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/bgm_demo.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/App/Resource/bgm_demo.mp3 -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/TUIShortVideoPlayDemo/TUISDK/TUIPlayerCore/TUIPlayerCore.xcframework/ios-arm64/TUIPlayerCore.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module TUIPlayerCore { 2 | umbrella header "TUIPlayerCore-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/MJRefresh.bundle/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/MJRefresh.bundle/arrow@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/MJRefresh.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/MJRefresh.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/MJRefresh.bundle/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/MJRefresh.bundle/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/MJRefresh.bundle/trail_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/MJRefresh.bundle/trail_arrow@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/MJRefresh.bundle/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/MJRefresh.bundle/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/MJRefresh.bundle/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/MJRefresh.bundle/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/back.imageset/back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/back.imageset/back@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/back.imageset/back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/back.imageset/back@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/click.imageset/click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/click.imageset/click.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/click.imageset/click@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/click.imageset/click@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/click.imageset/click@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/click.imageset/click@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/leftSlide.imageset/leftSlide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/leftSlide.imageset/leftSlide.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/leftSlide.imageset/leftSlide@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/leftSlide.imageset/leftSlide@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/leftSlide.imageset/leftSlide@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/leftSlide.imageset/leftSlide@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/pause.imageset/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/pause.imageset/pause.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/pause.imageset/pause@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/pause.imageset/pause@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/pause.imageset/pause@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/pause.imageset/pause@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/progressSlide.imageset/progressSlide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/progressSlide.imageset/progressSlide.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/upSlide.imageset/upSlide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/upSlide.imageset/upSlide.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/upSlide.imageset/upSlide@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/upSlide.imageset/upSlide@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/upSlide.imageset/upSlide@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/upSlide.imageset/upSlide@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/VodPlayerDemo/VideoBitrate.m: -------------------------------------------------------------------------------- 1 | // 2 | // VideoBitrate.m 3 | // TXLiteAVDemo 4 | // 5 | // Created by 路鹏 on 2022/8/5. 6 | // Copyright © 2022 Tencent. All rights reserved. 7 | // 8 | 9 | #import "VideoBitrate.h" 10 | 11 | @implementation VideoBitrate 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/arrow.imageset/arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/arrow.imageset/arrow@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/back_full.imageset/back_full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/back_full.imageset/back_full@2x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/back_full.imageset/back_full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/back_full.imageset/back_full@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/bottom_shadow.imageset/bottom_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/bottom_shadow.imageset/bottom_shadow.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/brightness.imageset/brightness@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/brightness.imageset/brightness@2x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/cacheView_noData.imageset/cacheView_noData@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/cacheView_noData.imageset/cacheView_noData@2x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/capture.imageset/capture@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/capture.imageset/capture@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/capture_pressed.imageset/capture_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/capture_pressed.imageset/capture_pressed@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/close.imageset/close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/close.imageset/close@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/copywright_bg.imageset/copywright_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/copywright_bg.imageset/copywright_bg@2x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/copywright_bg.imageset/copywright_bg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/copywright_bg.imageset/copywright_bg@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/cw_img_bg.imageset/cw_img_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/cw_img_bg.imageset/cw_img_bg@2x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/cw_img_bg.imageset/cw_img_bg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/cw_img_bg.imageset/cw_img_bg@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/danmu.imageset/danmu@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/danmu.imageset/danmu@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/danmu_pressed.imageset/danmu_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/danmu_pressed.imageset/danmu_pressed@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/defaultCoverImage.imageset/defaultCoverImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/defaultCoverImage.imageset/defaultCoverImage.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/download.imageset/download@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/download.imageset/download@2x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/download.imageset/download@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/download.imageset/download@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/fast_backward.imageset/fast_backward@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/fast_backward.imageset/fast_backward@2x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/fast_backward.imageset/fast_backward@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/fast_backward.imageset/fast_backward@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/fast_forward.imageset/fast_forward@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/fast_forward.imageset/fast_forward@2x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/fast_forward.imageset/fast_forward@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/fast_forward.imageset/fast_forward@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/fullscreen.imageset/fullscreen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/fullscreen.imageset/fullscreen@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/fullscreen_press.imageset/fullscreen_press@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/fullscreen_press.imageset/fullscreen_press@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/iknown.imageset/iknown@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/iknown.imageset/iknown@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/left_g.imageset/left_g@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/left_g.imageset/left_g@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/light_max.imageset/light_max@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/light_max.imageset/light_max@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/light_min.imageset/light_min@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/light_min.imageset/light_min@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/lock-nor.imageset/lock-nor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/lock-nor.imageset/lock-nor@2x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/lock-nor.imageset/lock-nor@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/lock-nor.imageset/lock-nor@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/middle_g.imageset/middle_g@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/middle_g.imageset/middle_g@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/more.imageset/more@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/more.imageset/more@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/more_pressed.imageset/more_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/more_pressed.imageset/more_pressed@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/not_download.imageset/not_download@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/not_download.imageset/not_download@2x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/not_download.imageset/not_download@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/not_download.imageset/not_download@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/offline_download.imageset/offline_download@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/offline_download.imageset/offline_download@2x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/pause.imageset/pause@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/pause.imageset/pause@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/pause_pressed.imageset/pause_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/pause_pressed.imageset/pause_pressed@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/pip_play_icon.imageset/pip_play_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/pip_play_icon.imageset/pip_play_icon.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/play.imageset/play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/play.imageset/play@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/play_btn.imageset/play_btn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/play_btn.imageset/play_btn@2x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/play_next.imageset/play_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/play_next.imageset/play_next.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/play_pressed.imageset/play_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/play_pressed.imageset/play_pressed@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/play_setting.imageset/play_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/play_setting.imageset/play_setting.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/play_setting.imageset/play_setting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/play_setting.imageset/play_setting@2x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/play_setting.imageset/play_setting@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/play_setting.imageset/play_setting@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/playbackward.imageset/playbackward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/playbackward.imageset/playbackward.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/playbackward_bg.imageset/playbackward_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/playbackward_bg.imageset/playbackward_bg.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/playforward.imageset/playforward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/playforward.imageset/playforward.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/playforward_bg.imageset/playforward_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/playforward_bg.imageset/playforward_bg.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/qg_online_bg.imageset/qg_online_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/qg_online_bg.imageset/qg_online_bg@2x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/repeat_video.imageset/repeat_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/repeat_video.imageset/repeat_video.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/repeat_video.imageset/repeat_video@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/repeat_video.imageset/repeat_video@2x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/repeat_video.imageset/repeat_video@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/repeat_video.imageset/repeat_video@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/right_g.imageset/right_g@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/right_g.imageset/right_g@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/shrinkscreen.imageset/shrinkscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/shrinkscreen.imageset/shrinkscreen.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/shrinkscreen.imageset/shrinkscreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/shrinkscreen.imageset/shrinkscreen@2x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/shrinkscreen.imageset/shrinkscreen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/shrinkscreen.imageset/shrinkscreen@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/slider.imageset/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/slider.imageset/slider.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/slider.imageset/slider@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/slider.imageset/slider@2x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/slider.imageset/slider@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/slider.imageset/slider@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/slider_thumb.imageset/slider_thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/slider_thumb.imageset/slider_thumb@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/slider_thumb_pressed.imageset/slider_thumb_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/slider_thumb_pressed.imageset/slider_thumb_pressed@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/sound_max.imageset/sound_max@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/sound_max.imageset/sound_max@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/sound_min.imageset/sound_min@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/sound_min.imageset/sound_min@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/subtitles.imageset/subtitles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/subtitles.imageset/subtitles.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/superplayer_dropdown.imageset/superplayer_dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/superplayer_dropdown.imageset/superplayer_dropdown.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/top_shadow.imageset/top_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/top_shadow.imageset/top_shadow.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/track.imageset/track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/track.imageset/track.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/unlock-nor.imageset/unlock-nor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/unlock-nor.imageset/unlock-nor@2x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/unlock-nor.imageset/unlock-nor@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/unlock-nor.imageset/unlock-nor@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/videoCache_choose.imageset/videoCache_choose@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/videoCache_choose.imageset/videoCache_choose@2x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/videoCache_down.imageset/videoCache_down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/videoCache_down.imageset/videoCache_down@2x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/videoCache_fail.imageset/videoCache_fail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/videoCache_fail.imageset/videoCache_fail@2x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/videoCache_success.imageset/videoCache_success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/videoCache_success.imageset/videoCache_success@2x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/videoCache_up.imageset/videoCache_up@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/videoCache_up.imageset/videoCache_up@2x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_back.imageset/wb_back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_back.imageset/wb_back@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_fullscreen.imageset/wb_fullscreen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_fullscreen.imageset/wb_fullscreen@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_fullscreen_back.imageset/wb_fullscreen_back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_fullscreen_back.imageset/wb_fullscreen_back@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_more.imageset/wb_more@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_more.imageset/wb_more@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_pause.imageset/wb_pause@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_pause.imageset/wb_pause@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_play.imageset/wb_play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_play.imageset/wb_play@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_thumb.imageset/wb_thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_thumb.imageset/wb_thumb@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_volume_off.imageset/wb_volume_off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_volume_off.imageset/wb_volume_off@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_volume_on.imageset/wb_volume_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_volume_on.imageset/wb_volume_on@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Category/UINavigationController+SuperPlayerRotation.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | @interface UINavigationController (SuperPlayerRotation) 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Model/DynamicWaterModel.m: -------------------------------------------------------------------------------- 1 | // 2 | // DynamicWaterModel.m 3 | // Pods 4 | // 5 | // Created by 路鹏 on 2021/12/9. 6 | // 7 | 8 | #import "DynamicWaterModel.h" 9 | 10 | @implementation DynamicWaterModel 11 | 12 | @end 13 | -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/SuperPlayer.h: -------------------------------------------------------------------------------- 1 | #import "SuperPlayerView.h" 2 | #import "SuperPlayerModel.h" 3 | #import "SuperPlayerControlView.h" 4 | #import "SuperPlayerControlViewDelegate.h" 5 | #import "SPDefaultControlView.h" 6 | #import "SPWeiboControlView.h" 7 | #import "SuperPlayerHelpers.h" 8 | -------------------------------------------------------------------------------- /Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/FunctionModule/TXBasePlayerModule/Resource/TXBasePlayer.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/Resource/Assets.xcassets/AppIcon.appiconset/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/Resource/Assets.xcassets/AppIcon.appiconset/Icon-40.png -------------------------------------------------------------------------------- /Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-50.png -------------------------------------------------------------------------------- /Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-57.png -------------------------------------------------------------------------------- /Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-72.png -------------------------------------------------------------------------------- /Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/Resource/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/Resource/Assets.xcassets/arrow.imageset/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/Resource/Assets.xcassets/arrow.imageset/arrow@2x.png -------------------------------------------------------------------------------- /Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/Resource/Assets.xcassets/back.imageset/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/Resource/Assets.xcassets/back.imageset/back.png -------------------------------------------------------------------------------- /Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/Resource/Assets.xcassets/back.imageset/back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/Resource/Assets.xcassets/back.imageset/back@2x.png -------------------------------------------------------------------------------- /Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/Resource/Assets.xcassets/back.imageset/back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/a4fddf4019a28ade7f5f04ca0c4331bee5efc0bf/Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/Resource/Assets.xcassets/back.imageset/back@3x.png -------------------------------------------------------------------------------- /Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/zh-Hans.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Swift-Call-OC-Example/SwiftCallOC.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Swift-Call-OC-Example/SwiftCallOC/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Swift-Call-OC-Example/SwiftCallOC/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | --------------------------------------------------------------------------------