1 Star 0 Fork 5

hucheng27/BAT_FFMPEG

forked from jingcheng/BAT_FFMPEG 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
!MP4-ToMKV-firstVersion.bat 594 Bytes
一键复制 编辑 原始数据 按行查看 历史
KnightDanila 提交于 2018-08-24 18:16 . updates - first commit :D :movie_camera:
@echo off
echo %CD%
echo %~dp0
cd /d %~dp0
echo %1
:: echo %* :: for multiple files
if NOT [%1]==[] (
echo "get one file"
REM ffmpeg.exe -i %1 -vcodec libx265 -acodec copy output_265.mkv
REM ffmpeg.exe -i %1 -vcodec libx264 -acodec copy output_264.mkv
REM ffmpeg.exe -i %1 -vcodec libx264 -acodec aac output.mkv
REM AAC filesize = 70%
ffmpeg.exe -i %1 -vcodec copy -acodec aac output_AAC.mkv
REM filesize = 90% -> aac < ac3
REM ffmpeg.exe -i %1 -vcodec copy -acodec ac3 output_AC3.mkv
REM ffmpeg -i %1 -vcodec copy -acodec copy output.avi
) else (
echo "get no one files"
)
pause
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Shell
1
https://gitee.com/hucheng27/BAT_FFMPEG.git
git@gitee.com:hucheng27/BAT_FFMPEG.git
hucheng27
BAT_FFMPEG
BAT_FFMPEG
master

搜索帮助