├── .gitignore ├── Dependencies ├── CMPopTipView │ ├── CMPopTipView.h │ └── CMPopTipView.m ├── CaptureCamera │ ├── CaptureCameraResource │ │ ├── camera_line.png │ │ ├── camera_line@2x.png │ │ ├── flashing_auto@2x.png │ │ ├── flashing_off@2x.png │ │ ├── flashing_on@2x.png │ │ ├── g_tabbar_ic_video_down.png │ │ ├── g_tabbar_ic_video_down@2x.png │ │ ├── g_tabbar_ic_video_nor.png │ │ ├── g_tabbar_ic_video_nor@2x.png │ │ ├── photo_close_icon@2x.png │ │ ├── record_close_disable.png │ │ ├── record_close_disable@2x.png │ │ ├── record_close_highlighted.png │ │ ├── record_close_highlighted@2x.png │ │ ├── record_close_normal.png │ │ ├── record_close_normal@2x.png │ │ ├── record_delete_disable.png │ │ ├── record_delete_disable@2x.png │ │ ├── record_delete_normal.png │ │ ├── record_delete_normal@2x.png │ │ ├── record_deletesure_normal.png │ │ ├── record_deletesure_normal@2x.png │ │ ├── record_flashlight_disable.png │ │ ├── record_flashlight_disable@2x.png │ │ ├── record_flashlight_highlighted.png │ │ ├── record_flashlight_highlighted@2x.png │ │ ├── record_flashlight_normal.png │ │ ├── record_flashlight_normal@2x.png │ │ ├── record_focus_disable.png │ │ ├── record_focus_disable@2x.png │ │ ├── record_focus_highlighted.png │ │ ├── record_focus_highlighted@2x.png │ │ ├── record_focus_normal.png │ │ ├── record_focus_normal@2x.png │ │ ├── record_focus_off.png │ │ ├── record_focus_off@2x.png │ │ ├── record_icon_hook.png │ │ ├── record_icon_hook@2x.png │ │ ├── record_icon_hook_highlighted_bg.png │ │ ├── record_icon_hook_highlighted_bg@2x.png │ │ ├── record_icon_hook_normal.png │ │ ├── record_icon_hook_normal@2x.png │ │ ├── record_icon_hook_normal_bg.png │ │ ├── record_icon_hook_normal_bg@2x.png │ │ ├── record_lensflip_disable.png │ │ ├── record_lensflip_disable@2x.png │ │ ├── record_lensflip_highlighted.png │ │ ├── record_lensflip_highlighted@2x.png │ │ ├── record_lensflip_normal.png │ │ ├── record_lensflip_normal@2x.png │ │ ├── record_progressbar_front.png │ │ ├── record_progressbar_front@2x.png │ │ ├── record_tool_disable.png │ │ ├── record_tool_disable@2x.png │ │ ├── record_tool_highlighted.png │ │ ├── record_tool_highlighted@2x.png │ │ ├── record_tool_normal.png │ │ ├── record_tool_normal@2x.png │ │ ├── touch_focus_not.png │ │ ├── touch_focus_not@2x.png │ │ ├── vedio_nav_btn_back_nor.png │ │ ├── vedio_nav_btn_back_nor@2x.png │ │ ├── vedio_nav_btn_back_pre.png │ │ ├── vedio_nav_btn_back_pre@2x.png │ │ ├── video_icon.png │ │ ├── video_icon@2x.png │ │ ├── video_longvideo_btn_pause.png │ │ ├── video_longvideo_btn_pause@2x.png │ │ ├── video_longvideo_btn_shoot.png │ │ ├── video_longvideo_btn_shoot@2x.png │ │ └── video_longvideo_btn_shot@2x.png │ ├── CaptureViewController │ │ ├── CaptureViewController.h │ │ ├── CaptureViewController.m │ │ ├── DeleteButton │ │ │ ├── DeleteButton.h │ │ │ └── DeleteButton.m │ │ └── ProgressBar │ │ │ ├── ProgressBar.h │ │ │ └── ProgressBar.m │ ├── DDHTimerControl │ │ ├── DDHTimerControl.h │ │ └── DDHTimerControl.m │ └── VideoCapture │ │ ├── CameraRecorder.h │ │ ├── CameraRecorder.m │ │ ├── CaptureDefine.h │ │ ├── CaptureToolKit.h │ │ └── CaptureToolKit.m ├── Category │ ├── NSString+Height.h │ ├── NSString+Height.m │ ├── UIAlertController+Blocks.h │ ├── UIAlertController+Blocks.m │ ├── UIAlertView+Blocks.h │ └── UIAlertView+Blocks.m ├── CommonDefine.h ├── CustomVideoCompositor │ ├── AVAsset+help.h │ ├── AVAsset+help.m │ ├── CustomVideoCompositor.h │ └── CustomVideoCompositor.m ├── DBPrivacyHelper │ ├── DBPrivacyHelperAssets.xcassets │ │ └── DBPrivacyHelperIcons │ │ │ ├── dbph_alertIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── dbph_alertIcon.png │ │ │ ├── dbph_alertIcon@2x.png │ │ │ └── dbph_alertIcon@3x.png │ │ │ ├── dbph_appIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── dbph_appIcon.png │ │ │ ├── dbph_appIcon@2x.png │ │ │ └── dbph_appIcon@3x.png │ │ │ ├── dbph_cameraIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── dbph_camera.png │ │ │ ├── dbph_camera@2x.png │ │ │ └── dbph_camera@3x.png │ │ │ ├── dbph_checkIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── dbph_check.png │ │ │ ├── dbph_check@2x.png │ │ │ └── dbph_check@3x.png │ │ │ ├── dbph_contactsIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── contacts.png │ │ │ ├── contacts@2x.png │ │ │ └── contacts@3x.png │ │ │ ├── dbph_healthIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── dbph_health.png │ │ │ ├── dbph_health@2x.png │ │ │ └── dbph_health@3x.png │ │ │ ├── dbph_homekitIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── dbph_homekit.png │ │ │ ├── dbph_homekit@2x.png │ │ │ └── dbph_homekit@3x.png │ │ │ ├── dbph_localizationIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── dbph_localization.png │ │ │ ├── dbph_localization@2x.png │ │ │ └── dbph_localization@3x.png │ │ │ ├── dbph_motionIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── dbph_motion.png │ │ │ ├── dbph_motion@2x.png │ │ │ └── dbph_motion@3x.png │ │ │ ├── dbph_notificationsIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── dbph_notifications.png │ │ │ ├── dbph_notifications@2x.png │ │ │ └── dbph_notifications@3x.png │ │ │ ├── dbph_photoIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── dbph_photo.png │ │ │ ├── dbph_photo@2x.png │ │ │ └── dbph_photo@3x.png │ │ │ ├── dbph_privacyIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── dbph_privacy.png │ │ │ ├── dbph_privacy@2x.png │ │ │ └── dbph_privacy@3x.png │ │ │ ├── dbph_settingsIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── dbph_settings.png │ │ │ ├── dbph_settings@2x.png │ │ │ └── dbph_settings@3x.png │ │ │ └── dbph_switchIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── dbph_switch.png │ │ │ ├── dbph_switch@2x.png │ │ │ └── dbph_switch@3x.png │ ├── DBPrivacyHelperDataSource.h │ ├── DBPrivacyHelperDataSource.m │ ├── DBPrivacyHelperLocalizations │ │ ├── en.lproj │ │ │ └── DBPrivacyHelperLocalizable.strings │ │ ├── es.lproj │ │ │ └── DBPrivacyHelperLocalizable.strings │ │ ├── it.lproj │ │ │ └── DBPrivacyHelperLocalizable.strings │ │ ├── ko.lproj │ │ │ └── DBPrivacyHelperLocalizable.strings │ │ ├── zh-Hans.lproj │ │ │ └── DBPrivacyHelperLocalizable.strings │ │ └── zh-Hant.lproj │ │ │ └── DBPrivacyHelperLocalizable.strings │ ├── DBPrivateHelperCell.h │ ├── DBPrivateHelperCell.m │ ├── DBPrivateHelperController.h │ ├── DBPrivateHelperController.m │ ├── UIImage+ImageEffects.h │ ├── UIImage+ImageEffects.m │ ├── UIViewController+DBPrivacyHelper.h │ └── UIViewController+DBPrivacyHelper.m ├── InAppSettingsKit │ ├── Controllers │ │ ├── IASKAppSettingsViewController.h │ │ ├── IASKAppSettingsViewController.m │ │ ├── IASKAppSettingsWebViewController.h │ │ ├── IASKAppSettingsWebViewController.m │ │ ├── IASKMultipleValueSelection.h │ │ ├── IASKMultipleValueSelection.m │ │ ├── IASKSpecifierValuesViewController.h │ │ ├── IASKSpecifierValuesViewController.m │ │ └── IASKViewController.h │ ├── Models │ │ ├── IASKSettingsReader.h │ │ ├── IASKSettingsReader.m │ │ ├── IASKSettingsStore.h │ │ ├── IASKSettingsStore.m │ │ ├── IASKSettingsStoreFile.h │ │ ├── IASKSettingsStoreFile.m │ │ ├── IASKSettingsStoreUserDefaults.h │ │ ├── IASKSettingsStoreUserDefaults.m │ │ ├── IASKSpecifier.h │ │ └── IASKSpecifier.m │ ├── Resources │ │ ├── Base.lproj │ │ │ └── IASKLocalizable.strings │ │ ├── de.lproj │ │ │ └── IASKLocalizable.strings │ │ ├── el.lproj │ │ │ └── IASKLocalizable.strings │ │ ├── en.lproj │ │ │ └── IASKLocalizable.strings │ │ ├── es.lproj │ │ │ └── IASKLocalizable.strings │ │ ├── fr.lproj │ │ │ └── IASKLocalizable.strings │ │ ├── it.lproj │ │ │ └── IASKLocalizable.strings │ │ ├── ja.lproj │ │ │ └── IASKLocalizable.strings │ │ ├── nl.lproj │ │ │ └── IASKLocalizable.strings │ │ ├── pt-PT.lproj │ │ │ └── IASKLocalizable.strings │ │ ├── pt.lproj │ │ │ └── IASKLocalizable.strings │ │ ├── ru.lproj │ │ │ └── IASKLocalizable.strings │ │ ├── sv.lproj │ │ │ └── IASKLocalizable.strings │ │ ├── th.lproj │ │ │ └── IASKLocalizable.strings │ │ └── tr.lproj │ │ │ └── IASKLocalizable.strings │ ├── Settings.bundle │ │ ├── Root.plist │ │ ├── en.lproj │ │ │ └── Root.strings │ │ └── zh-Hans.lproj │ │ │ └── Root.strings │ └── Views │ │ ├── IASKPSSliderSpecifierViewCell.h │ │ ├── IASKPSSliderSpecifierViewCell.m │ │ ├── IASKPSTextFieldSpecifierViewCell.h │ │ ├── IASKPSTextFieldSpecifierViewCell.m │ │ ├── IASKSlider.h │ │ ├── IASKSlider.m │ │ ├── IASKSwitch.h │ │ ├── IASKSwitch.m │ │ ├── IASKTextField.h │ │ └── IASKTextField.m ├── JGActionSheet │ ├── JGActionSheet.h │ └── JGActionSheet.m ├── KGModal │ ├── KGModal.h │ └── KGModal.m ├── MBProgressHUD │ ├── MBProgressHUD.h │ ├── MBProgressHUD.m │ ├── SNLoading.h │ └── SNLoading.m ├── StickerView │ ├── CircleView.h │ ├── CircleView.m │ ├── GIFImageView.h │ ├── GIFImageView.m │ ├── ScrollSelectView.h │ ├── ScrollSelectView.m │ ├── StickerView.h │ ├── StickerView.m │ ├── UIView+Frame.h │ ├── UIView+Frame.m │ ├── VideoView.h │ ├── VideoView.m │ ├── selected.png │ └── turnoff_icon.png ├── VideoEffects │ ├── ExportEffects.h │ └── ExportEffects.m └── VideoPlay │ ├── PBJVideoPlayerController.h │ ├── PBJVideoPlayerController.m │ ├── PBJVideoView.h │ ├── PBJVideoView.m │ └── play_button@2x.png ├── IMG_0009.MP4 ├── LICENSE ├── PictureInPicture.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── PictureInPicture.xccheckout │ └── xcuserdata │ │ ├── JohnnyXu.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── johnny.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── JohnnyXu.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── PictureInPicture.xcscheme │ │ └── xcschememanagement.plist │ └── johnny.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── PictureInPicture.xcscheme │ └── xcschememanagement.plist ├── PictureInPicture ├── AppDelegate.h ├── AppDelegate.m ├── Images.xcassets │ ├── AppIcon-2.appiconset │ │ ├── Contents.json │ │ ├── Icon_29.png │ │ ├── Icon_29@2x-1.png │ │ ├── Icon_29@2x.png │ │ ├── Icon_40.png │ │ ├── Icon_40@2x-1.png │ │ ├── Icon_40@2x.png │ │ ├── Icon_60@2x.png │ │ ├── Icon_60@3x.png │ │ ├── Icon_76.png │ │ └── Icon_76@2x.png │ └── LaunchImage-2.launchimage │ │ ├── Contents.json │ │ ├── Default-568@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ └── Default@2x.png ├── Info.plist ├── PictureInPicture-Prefix.pch ├── ViewController.h ├── ViewController.m ├── en.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── main.m └── zh-Hans.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── PictureInPictureTests ├── Info.plist └── PictureInPictureTests.m ├── README.md └── Resource ├── Demo └── Demo.gif ├── Font └── 迷你简启体.ttf ├── Icon ├── Icon_1024.png ├── Icon_128.png ├── Icon_16.png ├── Icon_256.png ├── Icon_29.png ├── Icon_29@2x.png ├── Icon_29@3x.png ├── Icon_32.png ├── Icon_40.png ├── Icon_40@2x.png ├── Icon_40@3x.png ├── Icon_512.png ├── Icon_60@2x.png ├── Icon_60@3x.png ├── Icon_64.png ├── Icon_76.png └── Icon_76@2x.png ├── Images ├── GoalLetter.png ├── NewStart.png ├── StartLetter.png ├── Video_Add.png ├── close.png ├── close@2x.png ├── navbar.png ├── pause.png ├── sharebg.png ├── sharebg2.png ├── sharebg3.png └── start.png ├── Musics ├── A Little Kiss.mp3 ├── Apple.mp3 ├── Bye Bye Sunday.mp3 ├── Come With Me.mp3 ├── Dolphin Tango.mp3 ├── I Do.mp3 ├── Lead Me On.mp3 ├── Let Me Know.mp3 ├── Love Paradise.mp3 ├── Rabbit.mp3 └── Swing Dance.mp3 ├── Splash ├── Default-568@2x.png ├── Default-Portrait.png ├── Default-Portrait@2x.png ├── Default.png └── Default@2x.png └── Videos └── IMG_Dst.mp4 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/.gitignore -------------------------------------------------------------------------------- /Dependencies/CMPopTipView/CMPopTipView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CMPopTipView/CMPopTipView.h -------------------------------------------------------------------------------- /Dependencies/CMPopTipView/CMPopTipView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CMPopTipView/CMPopTipView.m -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/camera_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/camera_line.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/camera_line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/camera_line@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/flashing_auto@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/flashing_auto@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/flashing_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/flashing_off@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/flashing_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/flashing_on@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/g_tabbar_ic_video_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/g_tabbar_ic_video_down.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/g_tabbar_ic_video_down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/g_tabbar_ic_video_down@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/g_tabbar_ic_video_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/g_tabbar_ic_video_nor.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/g_tabbar_ic_video_nor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/g_tabbar_ic_video_nor@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/photo_close_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/photo_close_icon@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_close_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_close_disable.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_close_disable@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_close_disable@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_close_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_close_highlighted.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_close_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_close_highlighted@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_close_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_close_normal.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_close_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_close_normal@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_delete_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_delete_disable.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_delete_disable@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_delete_disable@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_delete_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_delete_normal.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_delete_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_delete_normal@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_deletesure_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_deletesure_normal.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_deletesure_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_deletesure_normal@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_flashlight_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_flashlight_disable.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_flashlight_disable@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_flashlight_disable@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_flashlight_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_flashlight_highlighted.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_flashlight_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_flashlight_highlighted@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_flashlight_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_flashlight_normal.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_flashlight_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_flashlight_normal@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_focus_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_focus_disable.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_focus_disable@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_focus_disable@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_focus_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_focus_highlighted.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_focus_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_focus_highlighted@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_focus_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_focus_normal.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_focus_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_focus_normal@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_focus_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_focus_off.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_focus_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_focus_off@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_icon_hook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_icon_hook.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_icon_hook@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_icon_hook@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_icon_hook_highlighted_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_icon_hook_highlighted_bg.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_icon_hook_highlighted_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_icon_hook_highlighted_bg@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_icon_hook_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_icon_hook_normal.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_icon_hook_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_icon_hook_normal@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_icon_hook_normal_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_icon_hook_normal_bg.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_icon_hook_normal_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_icon_hook_normal_bg@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_lensflip_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_lensflip_disable.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_lensflip_disable@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_lensflip_disable@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_lensflip_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_lensflip_highlighted.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_lensflip_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_lensflip_highlighted@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_lensflip_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_lensflip_normal.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_lensflip_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_lensflip_normal@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_progressbar_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_progressbar_front.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_progressbar_front@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_progressbar_front@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_tool_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_tool_disable.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_tool_disable@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_tool_disable@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_tool_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_tool_highlighted.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_tool_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_tool_highlighted@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_tool_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_tool_normal.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/record_tool_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/record_tool_normal@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/touch_focus_not.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/touch_focus_not.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/touch_focus_not@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/touch_focus_not@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/vedio_nav_btn_back_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/vedio_nav_btn_back_nor.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/vedio_nav_btn_back_nor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/vedio_nav_btn_back_nor@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/vedio_nav_btn_back_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/vedio_nav_btn_back_pre.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/vedio_nav_btn_back_pre@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/vedio_nav_btn_back_pre@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/video_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/video_icon.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/video_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/video_icon@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/video_longvideo_btn_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/video_longvideo_btn_pause.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/video_longvideo_btn_pause@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/video_longvideo_btn_pause@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/video_longvideo_btn_shoot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/video_longvideo_btn_shoot.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/video_longvideo_btn_shoot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/video_longvideo_btn_shoot@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureCameraResource/video_longvideo_btn_shot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureCameraResource/video_longvideo_btn_shot@2x.png -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureViewController/CaptureViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureViewController/CaptureViewController.h -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureViewController/CaptureViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureViewController/CaptureViewController.m -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureViewController/DeleteButton/DeleteButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureViewController/DeleteButton/DeleteButton.h -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureViewController/DeleteButton/DeleteButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureViewController/DeleteButton/DeleteButton.m -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureViewController/ProgressBar/ProgressBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureViewController/ProgressBar/ProgressBar.h -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/CaptureViewController/ProgressBar/ProgressBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/CaptureViewController/ProgressBar/ProgressBar.m -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/DDHTimerControl/DDHTimerControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/DDHTimerControl/DDHTimerControl.h -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/DDHTimerControl/DDHTimerControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/DDHTimerControl/DDHTimerControl.m -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/VideoCapture/CameraRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/VideoCapture/CameraRecorder.h -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/VideoCapture/CameraRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/VideoCapture/CameraRecorder.m -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/VideoCapture/CaptureDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/VideoCapture/CaptureDefine.h -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/VideoCapture/CaptureToolKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/VideoCapture/CaptureToolKit.h -------------------------------------------------------------------------------- /Dependencies/CaptureCamera/VideoCapture/CaptureToolKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CaptureCamera/VideoCapture/CaptureToolKit.m -------------------------------------------------------------------------------- /Dependencies/Category/NSString+Height.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/Category/NSString+Height.h -------------------------------------------------------------------------------- /Dependencies/Category/NSString+Height.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/Category/NSString+Height.m -------------------------------------------------------------------------------- /Dependencies/Category/UIAlertController+Blocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/Category/UIAlertController+Blocks.h -------------------------------------------------------------------------------- /Dependencies/Category/UIAlertController+Blocks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/Category/UIAlertController+Blocks.m -------------------------------------------------------------------------------- /Dependencies/Category/UIAlertView+Blocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/Category/UIAlertView+Blocks.h -------------------------------------------------------------------------------- /Dependencies/Category/UIAlertView+Blocks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/Category/UIAlertView+Blocks.m -------------------------------------------------------------------------------- /Dependencies/CommonDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CommonDefine.h -------------------------------------------------------------------------------- /Dependencies/CustomVideoCompositor/AVAsset+help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CustomVideoCompositor/AVAsset+help.h -------------------------------------------------------------------------------- /Dependencies/CustomVideoCompositor/AVAsset+help.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CustomVideoCompositor/AVAsset+help.m -------------------------------------------------------------------------------- /Dependencies/CustomVideoCompositor/CustomVideoCompositor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CustomVideoCompositor/CustomVideoCompositor.h -------------------------------------------------------------------------------- /Dependencies/CustomVideoCompositor/CustomVideoCompositor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/CustomVideoCompositor/CustomVideoCompositor.m -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_alertIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_alertIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_alertIcon.imageset/dbph_alertIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_alertIcon.imageset/dbph_alertIcon.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_alertIcon.imageset/dbph_alertIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_alertIcon.imageset/dbph_alertIcon@2x.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_alertIcon.imageset/dbph_alertIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_alertIcon.imageset/dbph_alertIcon@3x.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_appIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_appIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_appIcon.imageset/dbph_appIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_appIcon.imageset/dbph_appIcon.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_appIcon.imageset/dbph_appIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_appIcon.imageset/dbph_appIcon@2x.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_appIcon.imageset/dbph_appIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_appIcon.imageset/dbph_appIcon@3x.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_cameraIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_cameraIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_cameraIcon.imageset/dbph_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_cameraIcon.imageset/dbph_camera.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_cameraIcon.imageset/dbph_camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_cameraIcon.imageset/dbph_camera@2x.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_cameraIcon.imageset/dbph_camera@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_cameraIcon.imageset/dbph_camera@3x.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_checkIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_checkIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_checkIcon.imageset/dbph_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_checkIcon.imageset/dbph_check.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_checkIcon.imageset/dbph_check@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_checkIcon.imageset/dbph_check@2x.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_checkIcon.imageset/dbph_check@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_checkIcon.imageset/dbph_check@3x.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_contactsIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_contactsIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_contactsIcon.imageset/contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_contactsIcon.imageset/contacts.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_contactsIcon.imageset/contacts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_contactsIcon.imageset/contacts@2x.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_contactsIcon.imageset/contacts@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_contactsIcon.imageset/contacts@3x.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_healthIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_healthIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_healthIcon.imageset/dbph_health.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_healthIcon.imageset/dbph_health.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_healthIcon.imageset/dbph_health@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_healthIcon.imageset/dbph_health@2x.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_healthIcon.imageset/dbph_health@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_healthIcon.imageset/dbph_health@3x.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_homekitIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_homekitIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_homekitIcon.imageset/dbph_homekit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_homekitIcon.imageset/dbph_homekit.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_homekitIcon.imageset/dbph_homekit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_homekitIcon.imageset/dbph_homekit@2x.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_homekitIcon.imageset/dbph_homekit@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_homekitIcon.imageset/dbph_homekit@3x.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_localizationIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_localizationIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_localizationIcon.imageset/dbph_localization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_localizationIcon.imageset/dbph_localization.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_localizationIcon.imageset/dbph_localization@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_localizationIcon.imageset/dbph_localization@2x.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_localizationIcon.imageset/dbph_localization@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_localizationIcon.imageset/dbph_localization@3x.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_motionIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_motionIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_motionIcon.imageset/dbph_motion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_motionIcon.imageset/dbph_motion.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_motionIcon.imageset/dbph_motion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_motionIcon.imageset/dbph_motion@2x.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_motionIcon.imageset/dbph_motion@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_motionIcon.imageset/dbph_motion@3x.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_notificationsIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_notificationsIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_notificationsIcon.imageset/dbph_notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_notificationsIcon.imageset/dbph_notifications.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_notificationsIcon.imageset/dbph_notifications@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_notificationsIcon.imageset/dbph_notifications@2x.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_notificationsIcon.imageset/dbph_notifications@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_notificationsIcon.imageset/dbph_notifications@3x.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_photoIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_photoIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_photoIcon.imageset/dbph_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_photoIcon.imageset/dbph_photo.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_photoIcon.imageset/dbph_photo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_photoIcon.imageset/dbph_photo@2x.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_photoIcon.imageset/dbph_photo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_photoIcon.imageset/dbph_photo@3x.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_privacyIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_privacyIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_privacyIcon.imageset/dbph_privacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_privacyIcon.imageset/dbph_privacy.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_privacyIcon.imageset/dbph_privacy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_privacyIcon.imageset/dbph_privacy@2x.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_privacyIcon.imageset/dbph_privacy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_privacyIcon.imageset/dbph_privacy@3x.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_settingsIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_settingsIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_settingsIcon.imageset/dbph_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_settingsIcon.imageset/dbph_settings.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_settingsIcon.imageset/dbph_settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_settingsIcon.imageset/dbph_settings@2x.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_settingsIcon.imageset/dbph_settings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_settingsIcon.imageset/dbph_settings@3x.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_switchIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_switchIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_switchIcon.imageset/dbph_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_switchIcon.imageset/dbph_switch.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_switchIcon.imageset/dbph_switch@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_switchIcon.imageset/dbph_switch@2x.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_switchIcon.imageset/dbph_switch@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperAssets.xcassets/DBPrivacyHelperIcons/dbph_switchIcon.imageset/dbph_switch@3x.png -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperDataSource.h -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperDataSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperDataSource.m -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperLocalizations/en.lproj/DBPrivacyHelperLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperLocalizations/en.lproj/DBPrivacyHelperLocalizable.strings -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperLocalizations/es.lproj/DBPrivacyHelperLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperLocalizations/es.lproj/DBPrivacyHelperLocalizable.strings -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperLocalizations/it.lproj/DBPrivacyHelperLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperLocalizations/it.lproj/DBPrivacyHelperLocalizable.strings -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperLocalizations/ko.lproj/DBPrivacyHelperLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperLocalizations/ko.lproj/DBPrivacyHelperLocalizable.strings -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperLocalizations/zh-Hans.lproj/DBPrivacyHelperLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperLocalizations/zh-Hans.lproj/DBPrivacyHelperLocalizable.strings -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivacyHelperLocalizations/zh-Hant.lproj/DBPrivacyHelperLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivacyHelperLocalizations/zh-Hant.lproj/DBPrivacyHelperLocalizable.strings -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivateHelperCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivateHelperCell.h -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivateHelperCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivateHelperCell.m -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivateHelperController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivateHelperController.h -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/DBPrivateHelperController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/DBPrivateHelperController.m -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/UIImage+ImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/UIImage+ImageEffects.m -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/UIViewController+DBPrivacyHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/UIViewController+DBPrivacyHelper.h -------------------------------------------------------------------------------- /Dependencies/DBPrivacyHelper/UIViewController+DBPrivacyHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/DBPrivacyHelper/UIViewController+DBPrivacyHelper.m -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Controllers/IASKAppSettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Controllers/IASKAppSettingsViewController.h -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Controllers/IASKAppSettingsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Controllers/IASKAppSettingsViewController.m -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Controllers/IASKAppSettingsWebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Controllers/IASKAppSettingsWebViewController.h -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Controllers/IASKAppSettingsWebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Controllers/IASKAppSettingsWebViewController.m -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Controllers/IASKMultipleValueSelection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Controllers/IASKMultipleValueSelection.h -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Controllers/IASKMultipleValueSelection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Controllers/IASKMultipleValueSelection.m -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Controllers/IASKSpecifierValuesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Controllers/IASKSpecifierValuesViewController.h -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Controllers/IASKSpecifierValuesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Controllers/IASKSpecifierValuesViewController.m -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Controllers/IASKViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Controllers/IASKViewController.h -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Models/IASKSettingsReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Models/IASKSettingsReader.h -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Models/IASKSettingsReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Models/IASKSettingsReader.m -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Models/IASKSettingsStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Models/IASKSettingsStore.h -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Models/IASKSettingsStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Models/IASKSettingsStore.m -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Models/IASKSettingsStoreFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Models/IASKSettingsStoreFile.h -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Models/IASKSettingsStoreFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Models/IASKSettingsStoreFile.m -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Models/IASKSettingsStoreUserDefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Models/IASKSettingsStoreUserDefaults.h -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Models/IASKSettingsStoreUserDefaults.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Models/IASKSettingsStoreUserDefaults.m -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Models/IASKSpecifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Models/IASKSpecifier.h -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Models/IASKSpecifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Models/IASKSpecifier.m -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Resources/Base.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Resources/Base.lproj/IASKLocalizable.strings -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Resources/de.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Resources/de.lproj/IASKLocalizable.strings -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Resources/el.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Resources/el.lproj/IASKLocalizable.strings -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Resources/en.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Resources/en.lproj/IASKLocalizable.strings -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Resources/es.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Resources/es.lproj/IASKLocalizable.strings -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Resources/fr.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Resources/fr.lproj/IASKLocalizable.strings -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Resources/it.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Resources/it.lproj/IASKLocalizable.strings -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Resources/ja.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Resources/ja.lproj/IASKLocalizable.strings -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Resources/nl.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Resources/nl.lproj/IASKLocalizable.strings -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Resources/pt-PT.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Resources/pt-PT.lproj/IASKLocalizable.strings -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Resources/pt.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Resources/pt.lproj/IASKLocalizable.strings -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Resources/ru.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Resources/ru.lproj/IASKLocalizable.strings -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Resources/sv.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Resources/sv.lproj/IASKLocalizable.strings -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Resources/th.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Resources/th.lproj/IASKLocalizable.strings -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Resources/tr.lproj/IASKLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Resources/tr.lproj/IASKLocalizable.strings -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Settings.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Settings.bundle/Root.plist -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Settings.bundle/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Settings.bundle/en.lproj/Root.strings -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Settings.bundle/zh-Hans.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Settings.bundle/zh-Hans.lproj/Root.strings -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Views/IASKPSSliderSpecifierViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Views/IASKPSSliderSpecifierViewCell.h -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Views/IASKPSSliderSpecifierViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Views/IASKPSSliderSpecifierViewCell.m -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Views/IASKPSTextFieldSpecifierViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Views/IASKPSTextFieldSpecifierViewCell.h -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Views/IASKPSTextFieldSpecifierViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Views/IASKPSTextFieldSpecifierViewCell.m -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Views/IASKSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Views/IASKSlider.h -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Views/IASKSlider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Views/IASKSlider.m -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Views/IASKSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Views/IASKSwitch.h -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Views/IASKSwitch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Views/IASKSwitch.m -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Views/IASKTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Views/IASKTextField.h -------------------------------------------------------------------------------- /Dependencies/InAppSettingsKit/Views/IASKTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/InAppSettingsKit/Views/IASKTextField.m -------------------------------------------------------------------------------- /Dependencies/JGActionSheet/JGActionSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/JGActionSheet/JGActionSheet.h -------------------------------------------------------------------------------- /Dependencies/JGActionSheet/JGActionSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/JGActionSheet/JGActionSheet.m -------------------------------------------------------------------------------- /Dependencies/KGModal/KGModal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/KGModal/KGModal.h -------------------------------------------------------------------------------- /Dependencies/KGModal/KGModal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/KGModal/KGModal.m -------------------------------------------------------------------------------- /Dependencies/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /Dependencies/MBProgressHUD/MBProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/MBProgressHUD/MBProgressHUD.m -------------------------------------------------------------------------------- /Dependencies/MBProgressHUD/SNLoading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/MBProgressHUD/SNLoading.h -------------------------------------------------------------------------------- /Dependencies/MBProgressHUD/SNLoading.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/MBProgressHUD/SNLoading.m -------------------------------------------------------------------------------- /Dependencies/StickerView/CircleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/StickerView/CircleView.h -------------------------------------------------------------------------------- /Dependencies/StickerView/CircleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/StickerView/CircleView.m -------------------------------------------------------------------------------- /Dependencies/StickerView/GIFImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/StickerView/GIFImageView.h -------------------------------------------------------------------------------- /Dependencies/StickerView/GIFImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/StickerView/GIFImageView.m -------------------------------------------------------------------------------- /Dependencies/StickerView/ScrollSelectView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/StickerView/ScrollSelectView.h -------------------------------------------------------------------------------- /Dependencies/StickerView/ScrollSelectView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/StickerView/ScrollSelectView.m -------------------------------------------------------------------------------- /Dependencies/StickerView/StickerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/StickerView/StickerView.h -------------------------------------------------------------------------------- /Dependencies/StickerView/StickerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/StickerView/StickerView.m -------------------------------------------------------------------------------- /Dependencies/StickerView/UIView+Frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/StickerView/UIView+Frame.h -------------------------------------------------------------------------------- /Dependencies/StickerView/UIView+Frame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/StickerView/UIView+Frame.m -------------------------------------------------------------------------------- /Dependencies/StickerView/VideoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/StickerView/VideoView.h -------------------------------------------------------------------------------- /Dependencies/StickerView/VideoView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/StickerView/VideoView.m -------------------------------------------------------------------------------- /Dependencies/StickerView/selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/StickerView/selected.png -------------------------------------------------------------------------------- /Dependencies/StickerView/turnoff_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/StickerView/turnoff_icon.png -------------------------------------------------------------------------------- /Dependencies/VideoEffects/ExportEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/VideoEffects/ExportEffects.h -------------------------------------------------------------------------------- /Dependencies/VideoEffects/ExportEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/VideoEffects/ExportEffects.m -------------------------------------------------------------------------------- /Dependencies/VideoPlay/PBJVideoPlayerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/VideoPlay/PBJVideoPlayerController.h -------------------------------------------------------------------------------- /Dependencies/VideoPlay/PBJVideoPlayerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/VideoPlay/PBJVideoPlayerController.m -------------------------------------------------------------------------------- /Dependencies/VideoPlay/PBJVideoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/VideoPlay/PBJVideoView.h -------------------------------------------------------------------------------- /Dependencies/VideoPlay/PBJVideoView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/VideoPlay/PBJVideoView.m -------------------------------------------------------------------------------- /Dependencies/VideoPlay/play_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Dependencies/VideoPlay/play_button@2x.png -------------------------------------------------------------------------------- /IMG_0009.MP4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/IMG_0009.MP4 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/LICENSE -------------------------------------------------------------------------------- /PictureInPicture.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PictureInPicture.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PictureInPicture.xcodeproj/project.xcworkspace/xcshareddata/PictureInPicture.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture.xcodeproj/project.xcworkspace/xcshareddata/PictureInPicture.xccheckout -------------------------------------------------------------------------------- /PictureInPicture.xcodeproj/project.xcworkspace/xcuserdata/JohnnyXu.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture.xcodeproj/project.xcworkspace/xcuserdata/JohnnyXu.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /PictureInPicture.xcodeproj/project.xcworkspace/xcuserdata/johnny.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture.xcodeproj/project.xcworkspace/xcuserdata/johnny.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /PictureInPicture.xcodeproj/xcuserdata/JohnnyXu.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture.xcodeproj/xcuserdata/JohnnyXu.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /PictureInPicture.xcodeproj/xcuserdata/JohnnyXu.xcuserdatad/xcschemes/PictureInPicture.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture.xcodeproj/xcuserdata/JohnnyXu.xcuserdatad/xcschemes/PictureInPicture.xcscheme -------------------------------------------------------------------------------- /PictureInPicture.xcodeproj/xcuserdata/JohnnyXu.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture.xcodeproj/xcuserdata/JohnnyXu.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /PictureInPicture.xcodeproj/xcuserdata/johnny.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture.xcodeproj/xcuserdata/johnny.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /PictureInPicture.xcodeproj/xcuserdata/johnny.xcuserdatad/xcschemes/PictureInPicture.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture.xcodeproj/xcuserdata/johnny.xcuserdatad/xcschemes/PictureInPicture.xcscheme -------------------------------------------------------------------------------- /PictureInPicture.xcodeproj/xcuserdata/johnny.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture.xcodeproj/xcuserdata/johnny.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /PictureInPicture/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture/AppDelegate.h -------------------------------------------------------------------------------- /PictureInPicture/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture/AppDelegate.m -------------------------------------------------------------------------------- /PictureInPicture/Images.xcassets/AppIcon-2.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture/Images.xcassets/AppIcon-2.appiconset/Contents.json -------------------------------------------------------------------------------- /PictureInPicture/Images.xcassets/AppIcon-2.appiconset/Icon_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture/Images.xcassets/AppIcon-2.appiconset/Icon_29.png -------------------------------------------------------------------------------- /PictureInPicture/Images.xcassets/AppIcon-2.appiconset/Icon_29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture/Images.xcassets/AppIcon-2.appiconset/Icon_29@2x-1.png -------------------------------------------------------------------------------- /PictureInPicture/Images.xcassets/AppIcon-2.appiconset/Icon_29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture/Images.xcassets/AppIcon-2.appiconset/Icon_29@2x.png -------------------------------------------------------------------------------- /PictureInPicture/Images.xcassets/AppIcon-2.appiconset/Icon_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture/Images.xcassets/AppIcon-2.appiconset/Icon_40.png -------------------------------------------------------------------------------- /PictureInPicture/Images.xcassets/AppIcon-2.appiconset/Icon_40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture/Images.xcassets/AppIcon-2.appiconset/Icon_40@2x-1.png -------------------------------------------------------------------------------- /PictureInPicture/Images.xcassets/AppIcon-2.appiconset/Icon_40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture/Images.xcassets/AppIcon-2.appiconset/Icon_40@2x.png -------------------------------------------------------------------------------- /PictureInPicture/Images.xcassets/AppIcon-2.appiconset/Icon_60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture/Images.xcassets/AppIcon-2.appiconset/Icon_60@2x.png -------------------------------------------------------------------------------- /PictureInPicture/Images.xcassets/AppIcon-2.appiconset/Icon_60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture/Images.xcassets/AppIcon-2.appiconset/Icon_60@3x.png -------------------------------------------------------------------------------- /PictureInPicture/Images.xcassets/AppIcon-2.appiconset/Icon_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture/Images.xcassets/AppIcon-2.appiconset/Icon_76.png -------------------------------------------------------------------------------- /PictureInPicture/Images.xcassets/AppIcon-2.appiconset/Icon_76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture/Images.xcassets/AppIcon-2.appiconset/Icon_76@2x.png -------------------------------------------------------------------------------- /PictureInPicture/Images.xcassets/LaunchImage-2.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture/Images.xcassets/LaunchImage-2.launchimage/Contents.json -------------------------------------------------------------------------------- /PictureInPicture/Images.xcassets/LaunchImage-2.launchimage/Default-568@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture/Images.xcassets/LaunchImage-2.launchimage/Default-568@2x.png -------------------------------------------------------------------------------- /PictureInPicture/Images.xcassets/LaunchImage-2.launchimage/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture/Images.xcassets/LaunchImage-2.launchimage/Default-Portrait.png -------------------------------------------------------------------------------- /PictureInPicture/Images.xcassets/LaunchImage-2.launchimage/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture/Images.xcassets/LaunchImage-2.launchimage/Default-Portrait@2x.png -------------------------------------------------------------------------------- /PictureInPicture/Images.xcassets/LaunchImage-2.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture/Images.xcassets/LaunchImage-2.launchimage/Default@2x.png -------------------------------------------------------------------------------- /PictureInPicture/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture/Info.plist -------------------------------------------------------------------------------- /PictureInPicture/PictureInPicture-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture/PictureInPicture-Prefix.pch -------------------------------------------------------------------------------- /PictureInPicture/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture/ViewController.h -------------------------------------------------------------------------------- /PictureInPicture/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture/ViewController.m -------------------------------------------------------------------------------- /PictureInPicture/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PictureInPicture/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /PictureInPicture/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture/main.m -------------------------------------------------------------------------------- /PictureInPicture/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture/zh-Hans.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PictureInPicture/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPicture/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /PictureInPictureTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPictureTests/Info.plist -------------------------------------------------------------------------------- /PictureInPictureTests/PictureInPictureTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/PictureInPictureTests/PictureInPictureTests.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/README.md -------------------------------------------------------------------------------- /Resource/Demo/Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Demo/Demo.gif -------------------------------------------------------------------------------- /Resource/Font/迷你简启体.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Font/迷你简启体.ttf -------------------------------------------------------------------------------- /Resource/Icon/Icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Icon/Icon_1024.png -------------------------------------------------------------------------------- /Resource/Icon/Icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Icon/Icon_128.png -------------------------------------------------------------------------------- /Resource/Icon/Icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Icon/Icon_16.png -------------------------------------------------------------------------------- /Resource/Icon/Icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Icon/Icon_256.png -------------------------------------------------------------------------------- /Resource/Icon/Icon_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Icon/Icon_29.png -------------------------------------------------------------------------------- /Resource/Icon/Icon_29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Icon/Icon_29@2x.png -------------------------------------------------------------------------------- /Resource/Icon/Icon_29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Icon/Icon_29@3x.png -------------------------------------------------------------------------------- /Resource/Icon/Icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Icon/Icon_32.png -------------------------------------------------------------------------------- /Resource/Icon/Icon_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Icon/Icon_40.png -------------------------------------------------------------------------------- /Resource/Icon/Icon_40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Icon/Icon_40@2x.png -------------------------------------------------------------------------------- /Resource/Icon/Icon_40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Icon/Icon_40@3x.png -------------------------------------------------------------------------------- /Resource/Icon/Icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Icon/Icon_512.png -------------------------------------------------------------------------------- /Resource/Icon/Icon_60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Icon/Icon_60@2x.png -------------------------------------------------------------------------------- /Resource/Icon/Icon_60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Icon/Icon_60@3x.png -------------------------------------------------------------------------------- /Resource/Icon/Icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Icon/Icon_64.png -------------------------------------------------------------------------------- /Resource/Icon/Icon_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Icon/Icon_76.png -------------------------------------------------------------------------------- /Resource/Icon/Icon_76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Icon/Icon_76@2x.png -------------------------------------------------------------------------------- /Resource/Images/GoalLetter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Images/GoalLetter.png -------------------------------------------------------------------------------- /Resource/Images/NewStart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Images/NewStart.png -------------------------------------------------------------------------------- /Resource/Images/StartLetter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Images/StartLetter.png -------------------------------------------------------------------------------- /Resource/Images/Video_Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Images/Video_Add.png -------------------------------------------------------------------------------- /Resource/Images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Images/close.png -------------------------------------------------------------------------------- /Resource/Images/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Images/close@2x.png -------------------------------------------------------------------------------- /Resource/Images/navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Images/navbar.png -------------------------------------------------------------------------------- /Resource/Images/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Images/pause.png -------------------------------------------------------------------------------- /Resource/Images/sharebg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Images/sharebg.png -------------------------------------------------------------------------------- /Resource/Images/sharebg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Images/sharebg2.png -------------------------------------------------------------------------------- /Resource/Images/sharebg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Images/sharebg3.png -------------------------------------------------------------------------------- /Resource/Images/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Images/start.png -------------------------------------------------------------------------------- /Resource/Musics/A Little Kiss.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Musics/A Little Kiss.mp3 -------------------------------------------------------------------------------- /Resource/Musics/Apple.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Musics/Apple.mp3 -------------------------------------------------------------------------------- /Resource/Musics/Bye Bye Sunday.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Musics/Bye Bye Sunday.mp3 -------------------------------------------------------------------------------- /Resource/Musics/Come With Me.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Musics/Come With Me.mp3 -------------------------------------------------------------------------------- /Resource/Musics/Dolphin Tango.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Musics/Dolphin Tango.mp3 -------------------------------------------------------------------------------- /Resource/Musics/I Do.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Musics/I Do.mp3 -------------------------------------------------------------------------------- /Resource/Musics/Lead Me On.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Musics/Lead Me On.mp3 -------------------------------------------------------------------------------- /Resource/Musics/Let Me Know.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Musics/Let Me Know.mp3 -------------------------------------------------------------------------------- /Resource/Musics/Love Paradise.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Musics/Love Paradise.mp3 -------------------------------------------------------------------------------- /Resource/Musics/Rabbit.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Musics/Rabbit.mp3 -------------------------------------------------------------------------------- /Resource/Musics/Swing Dance.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Musics/Swing Dance.mp3 -------------------------------------------------------------------------------- /Resource/Splash/Default-568@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Splash/Default-568@2x.png -------------------------------------------------------------------------------- /Resource/Splash/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Splash/Default-Portrait.png -------------------------------------------------------------------------------- /Resource/Splash/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Splash/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Resource/Splash/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Splash/Default.png -------------------------------------------------------------------------------- /Resource/Splash/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Splash/Default@2x.png -------------------------------------------------------------------------------- /Resource/Videos/IMG_Dst.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujingzhou/VideoInVideo/HEAD/Resource/Videos/IMG_Dst.mp4 --------------------------------------------------------------------------------