1 Star 0 Fork 0

MengLv/deprecated-lame-mirror

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
lame.bat 1.12 KB
一键复制 编辑 原始数据 按行查看 历史
Robert Hegemann 提交于 2002-12-14 19:19 . removed my email address
@echo off
rem ---------------------------------------------
rem PURPOSE:
rem - put this Batch-Command on your Desktop,
rem so you can drag and drop wave files on it
rem and LAME will encode them to mp3 format.
rem - put this Batch-Command in a place mentioned
rem in your PATH environment, start the DOS-BOX
rem and change to a directory where your wave
rem files are located. the following line will
rem encode all your wave files to mp3
rem "lame.bat *.wav"
rem ---------------------------------------------
rem C2000 Robert Hegemann
rem ---------------------------------------------
rem please set LAME and LAMEOPTS
rem LAME - where the executeable is
rem OPTS - options you like LAME to use
set LAME=lame.exe
set OPTS=--preset cd
rem ---------------------------------------------
set thecmd=%LAME% %OPTS%
lfnfor on
:processArgs
if "%1"=="" goto endmark
for %%f in (%1) do %thecmd% "%%f"
if errorlevel 1 goto errormark
shift
goto processArgs
:errormark
echo.
echo.
echo ERROR processing %1
echo.
:endmark
rem
rem finished
rem
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/menglv/deprecated-lame-mirror.git
[email protected]:menglv/deprecated-lame-mirror.git
menglv
deprecated-lame-mirror
deprecated-lame-mirror
master

搜索帮助