├── add.php ├── common.php ├── config.php ├── css ├── Jcrop-common.css ├── bootstrap-datetimepicker.css ├── bootstrap-extension.css ├── bootstrap-responsive.css ├── bootstrap-responsive.min.css ├── bootstrap-theme.css ├── bootstrap-theme.css.map ├── bootstrap-theme.min.css ├── bootstrap.css ├── bootstrap.css.map ├── bootstrap.min.css ├── content-style.css ├── frame-style.css ├── icon-picker.css ├── jquery-ui.css ├── jquery.Jcrop.css ├── jquery.fancybox-buttons.css ├── jquery.fancybox-thumbs.css ├── jquery.fancybox.css ├── jquery.treeview.css └── login-style.css ├── curl.php ├── db.php ├── decode.php ├── docs └── sql │ └── robber.sql ├── download.php ├── downvideo.php ├── extractor ├── flvxz.php ├── ifeng.php ├── iqiyi.php ├── ku6.php ├── qq.php ├── sohu.php ├── tudou.php ├── tudou_bak.php ├── vimeo.php ├── w163.php ├── w56.php ├── website.php ├── youku.php └── youtube.php ├── fonts ├── fancybox_buttons.png ├── fancybox_loading.gif ├── fancybox_loading_2x.gif ├── fancybox_overlay.png ├── fancybox_sprite.png ├── fancybox_sprite_2x.png ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf └── glyphicons-halflings-regular.woff ├── getimage.php ├── getvideo.php ├── index.php ├── list.php ├── main.php ├── scripts ├── bootstrap │ ├── .svn │ │ ├── all-wcprops │ │ ├── entries │ │ └── text-base │ │ │ ├── bootstrap-datetimepicker.js.svn-base │ │ │ ├── bootstrap-iconpicker.js.svn-base │ │ │ ├── bootstrap.js.svn-base │ │ │ ├── bootstrap.min.js.svn-base │ │ │ ├── html5shiv.js.svn-base │ │ │ └── respond.min.js.svn-base │ ├── bootstrap-datetimepicker.js │ ├── bootstrap-iconpicker.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── html5shiv.js │ └── respond.min.js ├── common │ ├── .svn │ │ ├── all-wcprops │ │ ├── entries │ │ ├── text-base │ │ │ ├── common.js.svn-base │ │ │ ├── datepicker.js.svn-base │ │ │ ├── form.js.svn-base │ │ │ ├── mask.js.svn-base │ │ │ ├── masked.js.svn-base │ │ │ ├── md5.js.svn-base │ │ │ ├── swfobject.js.svn-base │ │ │ ├── tree.js.svn-base │ │ │ └── upload.js.svn-base │ │ └── tmp │ │ │ ├── form.js.2.tmp │ │ │ ├── form.js.3.tmp │ │ │ ├── form.js.4.tmp │ │ │ ├── form.js.5.tmp │ │ │ ├── form.js.tmp │ │ │ └── tempfile.tmp │ ├── common.js │ ├── datepicker.js │ ├── form.js │ ├── mask.js │ ├── masked.js │ ├── md5.js │ ├── swfobject.js │ ├── tree.js │ └── upload.js ├── jquery │ ├── .svn │ │ ├── all-wcprops │ │ ├── entries │ │ └── text-base │ │ │ ├── jquery.Jcrop.js.svn-base │ │ │ ├── jquery.fancybox-buttons.js.svn-base │ │ │ ├── jquery.fancybox-media.js.svn-base │ │ │ ├── jquery.fancybox-thumbs.js.svn-base │ │ │ ├── jquery.fancybox.js.svn-base │ │ │ ├── jquery.form.js.svn-base │ │ │ ├── jquery.js.svn-base │ │ │ ├── jquery.json.js.svn-base │ │ │ ├── jquery.min.js.svn-base │ │ │ ├── jquery.treeview.js.svn-base │ │ │ ├── jquery.ui.custom.js.svn-base │ │ │ ├── jquery.ui.js.svn-base │ │ │ └── jquery.validate.js.svn-base │ ├── jquery.Jcrop.js │ ├── jquery.fancybox-buttons.js │ ├── jquery.fancybox-media.js │ ├── jquery.fancybox-thumbs.js │ ├── jquery.fancybox.js │ ├── jquery.form.js │ ├── jquery.js │ ├── jquery.json.js │ ├── jquery.min.js │ ├── jquery.treeview.js │ ├── jquery.ui.custom.js │ ├── jquery.ui.js │ └── jquery.validate.js └── modules │ ├── .svn │ ├── all-wcprops │ ├── entries │ └── text-base │ │ ├── account.js.svn-base │ │ ├── department.js.svn-base │ │ ├── login.js.svn-base │ │ ├── main.js.svn-base │ │ ├── mq.js.svn-base │ │ ├── privilege.js.svn-base │ │ ├── role.js.svn-base │ │ └── video.js.svn-base │ ├── account.js │ ├── department.js │ ├── live │ ├── .svn │ │ ├── all-wcprops │ │ ├── entries │ │ └── text-base │ │ │ ├── ajaxfileupload.js.svn-base │ │ │ ├── scene.js.svn-base │ │ │ └── upload.js.svn-base │ ├── ajaxfileupload.js │ ├── scene.js │ └── upload.js │ ├── login.js │ ├── main.js │ ├── mq.js │ ├── privilege.js │ ├── role.js │ ├── shijiao │ ├── .svn │ │ ├── all-wcprops │ │ ├── entries │ │ └── text-base │ │ │ ├── user.js.svn-base │ │ │ └── video.js.svn-base │ ├── user.js │ └── video.js │ └── video.js ├── test.php ├── upload.php ├── view ├── default.php ├── frame.php ├── index.php ├── list.php ├── youtube.php └── youtube_bak.php ├── youtube.ini ├── youtube.php ├── youtubeList.php └── youtubed.php /add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqinlong/php-videos/HEAD/add.php -------------------------------------------------------------------------------- /common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqinlong/php-videos/HEAD/common.php -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqinlong/php-videos/HEAD/config.php -------------------------------------------------------------------------------- /css/Jcrop-common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqinlong/php-videos/HEAD/css/Jcrop-common.css -------------------------------------------------------------------------------- /css/bootstrap-datetimepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqinlong/php-videos/HEAD/css/bootstrap-datetimepicker.css -------------------------------------------------------------------------------- /css/bootstrap-extension.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqinlong/php-videos/HEAD/css/bootstrap-extension.css -------------------------------------------------------------------------------- /css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqinlong/php-videos/HEAD/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqinlong/php-videos/HEAD/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqinlong/php-videos/HEAD/css/bootstrap-theme.css -------------------------------------------------------------------------------- /css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqinlong/php-videos/HEAD/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqinlong/php-videos/HEAD/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqinlong/php-videos/HEAD/css/bootstrap.css -------------------------------------------------------------------------------- /css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqinlong/php-videos/HEAD/css/bootstrap.css.map -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqinlong/php-videos/HEAD/css/bootstrap.min.css -------------------------------------------------------------------------------- /css/content-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqinlong/php-videos/HEAD/css/content-style.css -------------------------------------------------------------------------------- /css/frame-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqinlong/php-videos/HEAD/css/frame-style.css -------------------------------------------------------------------------------- /css/icon-picker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqinlong/php-videos/HEAD/css/icon-picker.css -------------------------------------------------------------------------------- /css/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqinlong/php-videos/HEAD/css/jquery-ui.css -------------------------------------------------------------------------------- /css/jquery.Jcrop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqinlong/php-videos/HEAD/css/jquery.Jcrop.css -------------------------------------------------------------------------------- /css/jquery.fancybox-buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqinlong/php-videos/HEAD/css/jquery.fancybox-buttons.css -------------------------------------------------------------------------------- /css/jquery.fancybox-thumbs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqinlong/php-videos/HEAD/css/jquery.fancybox-thumbs.css -------------------------------------------------------------------------------- /css/jquery.fancybox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqinlong/php-videos/HEAD/css/jquery.fancybox.css -------------------------------------------------------------------------------- /css/jquery.treeview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqinlong/php-videos/HEAD/css/jquery.treeview.css -------------------------------------------------------------------------------- /css/login-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqinlong/php-videos/HEAD/css/login-style.css -------------------------------------------------------------------------------- /curl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqinlong/php-videos/HEAD/curl.php -------------------------------------------------------------------------------- /db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqinlong/php-videos/HEAD/db.php -------------------------------------------------------------------------------- /decode.php: -------------------------------------------------------------------------------- 1 |