代码拉取完成,页面将自动刷新
@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
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。