如何在不播放的情况下通过命令行在WMP 11中打开文件?


1

我需要从快捷方式打开“待机”模式的文件,等待介绍语音,然后播放文件。

如何在不播放的情况下通过命令行在Windows Media Player 11中打开文件?

Answers:



3

您可以使用pause语句创建.bat / .cmd文件。在介绍结束时,您可以按Enter,视频将开始。这是一个例子:

@echo off
echo Tested on Windows 7 64-bit
pause 
start /d "%ProgramFiles(x86)%\Windows Media Player" wmplayer.exe "C:\Users\Username\Videos\GTA 4\test.avi"

不完全是这个问题的答案,但一个好主意!
Zeemee 2011年

0

只需输入歌曲名称即可music.mp3

如果歌曲名称中有任何空格,请将其写为"music new.mp3"。在这里,music代表你想要播放的歌曲的标题。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.