├── .gitignore ├── LICENSE.txt ├── README.md ├── app ├── __init__.py ├── compile_linux.sh ├── config.ini ├── config.py ├── favicon.ico ├── main.py ├── ui │ ├── __init__.py │ ├── about_widget.py │ ├── about_widget.ui │ ├── files_list_dialog.py │ ├── files_list_dialog.ui │ ├── icon.qrc │ ├── icon_rc.py │ ├── main_window.py │ ├── main_window.ui │ ├── proxy_dialog.py │ ├── proxy_dialog.ui │ ├── res │ │ └── favicon.ico │ ├── task_item.ui │ ├── ui_about_widget.py │ ├── ui_design.pro │ ├── ui_design.pro.user │ ├── ui_files_list_dialog.py │ ├── ui_main_window.py │ ├── ui_proxy_dialog.py │ └── ui_task_item.py ├── util │ ├── __init__.py │ ├── config_utils.py │ ├── download_thread.py │ ├── proxy.py │ └── status.py └── you_get │ ├── __init__.py │ ├── cli_wrapper │ ├── __init__.py │ ├── downloader │ │ └── __init__.py │ ├── openssl │ │ └── __init__.py │ ├── player │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── dragonplayer.py │ │ ├── gnome_mplayer.py │ │ ├── mplayer.py │ │ ├── vlc.py │ │ └── wmp.py │ └── transcoder │ │ ├── __init__.py │ │ ├── ffmpeg.py │ │ ├── libav.py │ │ └── mencoder.py │ ├── common.py │ ├── extractor.py │ ├── extractors │ ├── __init__.py │ ├── acfun.py │ ├── alive.py │ ├── archive.py │ ├── baidu.py │ ├── bandcamp.py │ ├── baomihua.py │ ├── bigthink.py │ ├── bilibili.py │ ├── bokecc.py │ ├── cbs.py │ ├── ckplayer.py │ ├── cntv.py │ ├── dailymotion.py │ ├── dilidili.py │ ├── douban.py │ ├── douyutv.py │ ├── ehow.py │ ├── embed.py │ ├── facebook.py │ ├── fc2video.py │ ├── flickr.py │ ├── freesound.py │ ├── funshion.py │ ├── google.py │ ├── heavymusic.py │ ├── huaban.py │ ├── huomaotv.py │ ├── icourses.py │ ├── ifeng.py │ ├── imgur.py │ ├── infoq.py │ ├── instagram.py │ ├── interest.py │ ├── iqilu.py │ ├── iqiyi.py │ ├── joy.py │ ├── khan.py │ ├── ku6.py │ ├── kugou.py │ ├── kuwo.py │ ├── le.py │ ├── lizhi.py │ ├── magisto.py │ ├── metacafe.py │ ├── mgtv.py │ ├── miaopai.py │ ├── miomio.py │ ├── mixcloud.py │ ├── mtv81.py │ ├── musicplayon.py │ ├── nanagogo.py │ ├── naver.py │ ├── netease.py │ ├── nicovideo.py │ ├── panda.py │ ├── pinterest.py │ ├── pixnet.py │ ├── pptv.py │ ├── qie.py │ ├── qq.py │ ├── quanmin.py │ ├── showroom.py │ ├── sina.py │ ├── sohu.py │ ├── soundcloud.py │ ├── suntv.py │ ├── ted.py │ ├── theplatform.py │ ├── tucao.py │ ├── tudou.py │ ├── tumblr.py │ ├── twitter.py │ ├── universal.py │ ├── veoh.py │ ├── videomega.py │ ├── vidto.py │ ├── vimeo.py │ ├── vine.py │ ├── vk.py │ ├── w56.py │ ├── wanmen.py │ ├── xiami.py │ ├── yinyuetai.py │ ├── yixia.py │ ├── youku.py │ ├── youtube.py │ └── zhanqi.py │ ├── json_output.py │ ├── processor │ ├── __init__.py │ ├── ffmpeg.py │ ├── join_flv.py │ ├── join_mp4.py │ ├── join_ts.py │ └── rtmpdump.py │ ├── util │ ├── __init__.py │ ├── fs.py │ ├── git.py │ ├── log.py │ ├── strings.py │ └── term.py │ └── version.py ├── command.txt ├── screenshot ├── fileDialog.png └── mainWindow.png └── version.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/compile_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/compile_linux.sh -------------------------------------------------------------------------------- /app/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/config.ini -------------------------------------------------------------------------------- /app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/config.py -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/main.py -------------------------------------------------------------------------------- /app/ui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/ui/__init__.py -------------------------------------------------------------------------------- /app/ui/about_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/ui/about_widget.py -------------------------------------------------------------------------------- /app/ui/about_widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/ui/about_widget.ui -------------------------------------------------------------------------------- /app/ui/files_list_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/ui/files_list_dialog.py -------------------------------------------------------------------------------- /app/ui/files_list_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/ui/files_list_dialog.ui -------------------------------------------------------------------------------- /app/ui/icon.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/ui/icon.qrc -------------------------------------------------------------------------------- /app/ui/icon_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/ui/icon_rc.py -------------------------------------------------------------------------------- /app/ui/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/ui/main_window.py -------------------------------------------------------------------------------- /app/ui/main_window.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/ui/main_window.ui -------------------------------------------------------------------------------- /app/ui/proxy_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/ui/proxy_dialog.py -------------------------------------------------------------------------------- /app/ui/proxy_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/ui/proxy_dialog.ui -------------------------------------------------------------------------------- /app/ui/res/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/ui/res/favicon.ico -------------------------------------------------------------------------------- /app/ui/task_item.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/ui/task_item.ui -------------------------------------------------------------------------------- /app/ui/ui_about_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/ui/ui_about_widget.py -------------------------------------------------------------------------------- /app/ui/ui_design.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/ui/ui_design.pro -------------------------------------------------------------------------------- /app/ui/ui_design.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/ui/ui_design.pro.user -------------------------------------------------------------------------------- /app/ui/ui_files_list_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/ui/ui_files_list_dialog.py -------------------------------------------------------------------------------- /app/ui/ui_main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/ui/ui_main_window.py -------------------------------------------------------------------------------- /app/ui/ui_proxy_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/ui/ui_proxy_dialog.py -------------------------------------------------------------------------------- /app/ui/ui_task_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/ui/ui_task_item.py -------------------------------------------------------------------------------- /app/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/util/__init__.py -------------------------------------------------------------------------------- /app/util/config_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/util/config_utils.py -------------------------------------------------------------------------------- /app/util/download_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/util/download_thread.py -------------------------------------------------------------------------------- /app/util/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/util/proxy.py -------------------------------------------------------------------------------- /app/util/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/util/status.py -------------------------------------------------------------------------------- /app/you_get/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/__init__.py -------------------------------------------------------------------------------- /app/you_get/cli_wrapper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/you_get/cli_wrapper/downloader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/you_get/cli_wrapper/openssl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/you_get/cli_wrapper/player/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | from .mplayer import * 4 | -------------------------------------------------------------------------------- /app/you_get/cli_wrapper/player/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/cli_wrapper/player/__main__.py -------------------------------------------------------------------------------- /app/you_get/cli_wrapper/player/dragonplayer.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/you_get/cli_wrapper/player/gnome_mplayer.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/you_get/cli_wrapper/player/mplayer.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/you_get/cli_wrapper/player/vlc.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | -------------------------------------------------------------------------------- /app/you_get/cli_wrapper/player/wmp.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/you_get/cli_wrapper/transcoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/you_get/cli_wrapper/transcoder/ffmpeg.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/you_get/cli_wrapper/transcoder/libav.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/you_get/cli_wrapper/transcoder/mencoder.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/you_get/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/common.py -------------------------------------------------------------------------------- /app/you_get/extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractor.py -------------------------------------------------------------------------------- /app/you_get/extractors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/__init__.py -------------------------------------------------------------------------------- /app/you_get/extractors/acfun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/acfun.py -------------------------------------------------------------------------------- /app/you_get/extractors/alive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/alive.py -------------------------------------------------------------------------------- /app/you_get/extractors/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/archive.py -------------------------------------------------------------------------------- /app/you_get/extractors/baidu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/baidu.py -------------------------------------------------------------------------------- /app/you_get/extractors/bandcamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/bandcamp.py -------------------------------------------------------------------------------- /app/you_get/extractors/baomihua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/baomihua.py -------------------------------------------------------------------------------- /app/you_get/extractors/bigthink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/bigthink.py -------------------------------------------------------------------------------- /app/you_get/extractors/bilibili.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/bilibili.py -------------------------------------------------------------------------------- /app/you_get/extractors/bokecc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/bokecc.py -------------------------------------------------------------------------------- /app/you_get/extractors/cbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/cbs.py -------------------------------------------------------------------------------- /app/you_get/extractors/ckplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/ckplayer.py -------------------------------------------------------------------------------- /app/you_get/extractors/cntv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/cntv.py -------------------------------------------------------------------------------- /app/you_get/extractors/dailymotion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/dailymotion.py -------------------------------------------------------------------------------- /app/you_get/extractors/dilidili.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/dilidili.py -------------------------------------------------------------------------------- /app/you_get/extractors/douban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/douban.py -------------------------------------------------------------------------------- /app/you_get/extractors/douyutv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/douyutv.py -------------------------------------------------------------------------------- /app/you_get/extractors/ehow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/ehow.py -------------------------------------------------------------------------------- /app/you_get/extractors/embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/embed.py -------------------------------------------------------------------------------- /app/you_get/extractors/facebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/facebook.py -------------------------------------------------------------------------------- /app/you_get/extractors/fc2video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/fc2video.py -------------------------------------------------------------------------------- /app/you_get/extractors/flickr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/flickr.py -------------------------------------------------------------------------------- /app/you_get/extractors/freesound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/freesound.py -------------------------------------------------------------------------------- /app/you_get/extractors/funshion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/funshion.py -------------------------------------------------------------------------------- /app/you_get/extractors/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/google.py -------------------------------------------------------------------------------- /app/you_get/extractors/heavymusic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/heavymusic.py -------------------------------------------------------------------------------- /app/you_get/extractors/huaban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/huaban.py -------------------------------------------------------------------------------- /app/you_get/extractors/huomaotv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/huomaotv.py -------------------------------------------------------------------------------- /app/you_get/extractors/icourses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/icourses.py -------------------------------------------------------------------------------- /app/you_get/extractors/ifeng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/ifeng.py -------------------------------------------------------------------------------- /app/you_get/extractors/imgur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/imgur.py -------------------------------------------------------------------------------- /app/you_get/extractors/infoq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/infoq.py -------------------------------------------------------------------------------- /app/you_get/extractors/instagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/instagram.py -------------------------------------------------------------------------------- /app/you_get/extractors/interest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/interest.py -------------------------------------------------------------------------------- /app/you_get/extractors/iqilu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/iqilu.py -------------------------------------------------------------------------------- /app/you_get/extractors/iqiyi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/iqiyi.py -------------------------------------------------------------------------------- /app/you_get/extractors/joy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/joy.py -------------------------------------------------------------------------------- /app/you_get/extractors/khan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/khan.py -------------------------------------------------------------------------------- /app/you_get/extractors/ku6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/ku6.py -------------------------------------------------------------------------------- /app/you_get/extractors/kugou.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/kugou.py -------------------------------------------------------------------------------- /app/you_get/extractors/kuwo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/kuwo.py -------------------------------------------------------------------------------- /app/you_get/extractors/le.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/le.py -------------------------------------------------------------------------------- /app/you_get/extractors/lizhi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/lizhi.py -------------------------------------------------------------------------------- /app/you_get/extractors/magisto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/magisto.py -------------------------------------------------------------------------------- /app/you_get/extractors/metacafe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/metacafe.py -------------------------------------------------------------------------------- /app/you_get/extractors/mgtv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/mgtv.py -------------------------------------------------------------------------------- /app/you_get/extractors/miaopai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/miaopai.py -------------------------------------------------------------------------------- /app/you_get/extractors/miomio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/miomio.py -------------------------------------------------------------------------------- /app/you_get/extractors/mixcloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/mixcloud.py -------------------------------------------------------------------------------- /app/you_get/extractors/mtv81.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/mtv81.py -------------------------------------------------------------------------------- /app/you_get/extractors/musicplayon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/musicplayon.py -------------------------------------------------------------------------------- /app/you_get/extractors/nanagogo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/nanagogo.py -------------------------------------------------------------------------------- /app/you_get/extractors/naver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/naver.py -------------------------------------------------------------------------------- /app/you_get/extractors/netease.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/netease.py -------------------------------------------------------------------------------- /app/you_get/extractors/nicovideo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/nicovideo.py -------------------------------------------------------------------------------- /app/you_get/extractors/panda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/panda.py -------------------------------------------------------------------------------- /app/you_get/extractors/pinterest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/pinterest.py -------------------------------------------------------------------------------- /app/you_get/extractors/pixnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/pixnet.py -------------------------------------------------------------------------------- /app/you_get/extractors/pptv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/pptv.py -------------------------------------------------------------------------------- /app/you_get/extractors/qie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/qie.py -------------------------------------------------------------------------------- /app/you_get/extractors/qq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/qq.py -------------------------------------------------------------------------------- /app/you_get/extractors/quanmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/quanmin.py -------------------------------------------------------------------------------- /app/you_get/extractors/showroom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/showroom.py -------------------------------------------------------------------------------- /app/you_get/extractors/sina.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/sina.py -------------------------------------------------------------------------------- /app/you_get/extractors/sohu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/sohu.py -------------------------------------------------------------------------------- /app/you_get/extractors/soundcloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/soundcloud.py -------------------------------------------------------------------------------- /app/you_get/extractors/suntv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/suntv.py -------------------------------------------------------------------------------- /app/you_get/extractors/ted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/ted.py -------------------------------------------------------------------------------- /app/you_get/extractors/theplatform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/theplatform.py -------------------------------------------------------------------------------- /app/you_get/extractors/tucao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/tucao.py -------------------------------------------------------------------------------- /app/you_get/extractors/tudou.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/tudou.py -------------------------------------------------------------------------------- /app/you_get/extractors/tumblr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/tumblr.py -------------------------------------------------------------------------------- /app/you_get/extractors/twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/twitter.py -------------------------------------------------------------------------------- /app/you_get/extractors/universal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/universal.py -------------------------------------------------------------------------------- /app/you_get/extractors/veoh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/veoh.py -------------------------------------------------------------------------------- /app/you_get/extractors/videomega.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/videomega.py -------------------------------------------------------------------------------- /app/you_get/extractors/vidto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/vidto.py -------------------------------------------------------------------------------- /app/you_get/extractors/vimeo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/vimeo.py -------------------------------------------------------------------------------- /app/you_get/extractors/vine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/vine.py -------------------------------------------------------------------------------- /app/you_get/extractors/vk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/vk.py -------------------------------------------------------------------------------- /app/you_get/extractors/w56.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/w56.py -------------------------------------------------------------------------------- /app/you_get/extractors/wanmen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/wanmen.py -------------------------------------------------------------------------------- /app/you_get/extractors/xiami.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/xiami.py -------------------------------------------------------------------------------- /app/you_get/extractors/yinyuetai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/yinyuetai.py -------------------------------------------------------------------------------- /app/you_get/extractors/yixia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/yixia.py -------------------------------------------------------------------------------- /app/you_get/extractors/youku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/youku.py -------------------------------------------------------------------------------- /app/you_get/extractors/youtube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/youtube.py -------------------------------------------------------------------------------- /app/you_get/extractors/zhanqi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/extractors/zhanqi.py -------------------------------------------------------------------------------- /app/you_get/json_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/json_output.py -------------------------------------------------------------------------------- /app/you_get/processor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/processor/__init__.py -------------------------------------------------------------------------------- /app/you_get/processor/ffmpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/processor/ffmpeg.py -------------------------------------------------------------------------------- /app/you_get/processor/join_flv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/processor/join_flv.py -------------------------------------------------------------------------------- /app/you_get/processor/join_mp4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/processor/join_mp4.py -------------------------------------------------------------------------------- /app/you_get/processor/join_ts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/processor/join_ts.py -------------------------------------------------------------------------------- /app/you_get/processor/rtmpdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/processor/rtmpdump.py -------------------------------------------------------------------------------- /app/you_get/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/you_get/util/fs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/util/fs.py -------------------------------------------------------------------------------- /app/you_get/util/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/util/git.py -------------------------------------------------------------------------------- /app/you_get/util/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/util/log.py -------------------------------------------------------------------------------- /app/you_get/util/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/util/strings.py -------------------------------------------------------------------------------- /app/you_get/util/term.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/app/you_get/util/term.py -------------------------------------------------------------------------------- /app/you_get/version.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | script_name = 'you-get' 4 | __version__ = '0.4.652' 5 | -------------------------------------------------------------------------------- /command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/command.txt -------------------------------------------------------------------------------- /screenshot/fileDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/screenshot/fileDialog.png -------------------------------------------------------------------------------- /screenshot/mainWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/screenshot/mainWindow.png -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/share23/GUI-YouGet/HEAD/version.json --------------------------------------------------------------------------------