├── .gitignore ├── LICENSE ├── README.md ├── command ├── README.md ├── clean.bat ├── desktop.bat ├── edit.bat ├── ffmpeg.exe ├── ffplay.exe ├── ffprobe.exe ├── git.bat ├── home.bat ├── ls.exe ├── more.bat ├── play.bat ├── potplayer.bat ├── show.bat ├── storm.bat ├── support.bat ├── update.bat ├── v2m.bat ├── vip.bat ├── xmp.bat ├── you-get.exe └── youtube-dl.exe ├── download └── README.md ├── start.bat ├── temp └── README.md ├── 建立桌面快捷方式.bat ├── 更换设备需要修改的文件.txt └── 注意.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WWILLV/you-get-ffmpeg/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WWILLV/you-get-ffmpeg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WWILLV/you-get-ffmpeg/HEAD/README.md -------------------------------------------------------------------------------- /command/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WWILLV/you-get-ffmpeg/HEAD/command/README.md -------------------------------------------------------------------------------- /command/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WWILLV/you-get-ffmpeg/HEAD/command/clean.bat -------------------------------------------------------------------------------- /command/desktop.bat: -------------------------------------------------------------------------------- 1 | @C: 2 | @cd %desktop% -------------------------------------------------------------------------------- /command/edit.bat: -------------------------------------------------------------------------------- 1 | notepad %app%\%1% -------------------------------------------------------------------------------- /command/ffmpeg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WWILLV/you-get-ffmpeg/HEAD/command/ffmpeg.exe -------------------------------------------------------------------------------- /command/ffplay.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WWILLV/you-get-ffmpeg/HEAD/command/ffplay.exe -------------------------------------------------------------------------------- /command/ffprobe.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WWILLV/you-get-ffmpeg/HEAD/command/ffprobe.exe -------------------------------------------------------------------------------- /command/git.bat: -------------------------------------------------------------------------------- 1 | @start https://github.com/WWILLV/you-get-ffmpeg -------------------------------------------------------------------------------- /command/home.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WWILLV/you-get-ffmpeg/HEAD/command/home.bat -------------------------------------------------------------------------------- /command/ls.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WWILLV/you-get-ffmpeg/HEAD/command/ls.exe -------------------------------------------------------------------------------- /command/more.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WWILLV/you-get-ffmpeg/HEAD/command/more.bat -------------------------------------------------------------------------------- /command/play.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WWILLV/you-get-ffmpeg/HEAD/command/play.bat -------------------------------------------------------------------------------- /command/potplayer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WWILLV/you-get-ffmpeg/HEAD/command/potplayer.bat -------------------------------------------------------------------------------- /command/show.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WWILLV/you-get-ffmpeg/HEAD/command/show.bat -------------------------------------------------------------------------------- /command/storm.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WWILLV/you-get-ffmpeg/HEAD/command/storm.bat -------------------------------------------------------------------------------- /command/support.bat: -------------------------------------------------------------------------------- 1 | @start https://github.com/soimort/you-get#supported-sites -------------------------------------------------------------------------------- /command/update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WWILLV/you-get-ffmpeg/HEAD/command/update.bat -------------------------------------------------------------------------------- /command/v2m.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WWILLV/you-get-ffmpeg/HEAD/command/v2m.bat -------------------------------------------------------------------------------- /command/vip.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WWILLV/you-get-ffmpeg/HEAD/command/vip.bat -------------------------------------------------------------------------------- /command/xmp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WWILLV/you-get-ffmpeg/HEAD/command/xmp.bat -------------------------------------------------------------------------------- /command/you-get.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WWILLV/you-get-ffmpeg/HEAD/command/you-get.exe -------------------------------------------------------------------------------- /command/youtube-dl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WWILLV/you-get-ffmpeg/HEAD/command/youtube-dl.exe -------------------------------------------------------------------------------- /download/README.md: -------------------------------------------------------------------------------- 1 | # download 2 | 平时默认的工作目录,同时也就是默认下载文件夹 -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WWILLV/you-get-ffmpeg/HEAD/start.bat -------------------------------------------------------------------------------- /temp/README.md: -------------------------------------------------------------------------------- 1 | # temp 2 | 临时目录,随时可以清空,一般也没东西…… -------------------------------------------------------------------------------- /建立桌面快捷方式.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WWILLV/you-get-ffmpeg/HEAD/建立桌面快捷方式.bat -------------------------------------------------------------------------------- /更换设备需要修改的文件.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WWILLV/you-get-ffmpeg/HEAD/更换设备需要修改的文件.txt -------------------------------------------------------------------------------- /注意.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WWILLV/you-get-ffmpeg/HEAD/注意.txt --------------------------------------------------------------------------------