Tôi đang sử dụng HotstarLiveStreamer https://github.com/biezom/hotstarsportslivestreamer và tôi gặp khó khăn khi hiểu cách tôi có thể sửa đổi tập lệnh .bat cho phù hợp với mục đích của mình.
@ echo off
call set /p link=paste the link:
call set last=%%link:~-1,1%%
call set folder="%~dp0\videos\\"
call set livestreamer="%~dp0\tools\livestreamer\\"
call "%~dp0\tools\php5.4\php.exe" hotstarlivestreamer.php "%%link%%"
IF %last% NEQ c GOTO:nocollection
call set /p id=enter the Id of the video (example write 1000021386):
call "%~dp0\tools\php5.4\php.exe" hotstarlivestreamer.php "%%link%%" "%%id%%"
call set /p quality=write quality (example write 720p):
call "%~dp0\tools\php5.4\php.exe" hotstarlivestreamer.php "%%link%%" "%%id%%" "%%quality%%" "%%folder%%" "%%livestreamer%%"
GOTO end1
:nocollection
call set /p quality=write quality (example write 720p):
call set /p choice=play or download? (write p or d):
call "%~dp0\tools\php5.4\php.exe" hotstarlivestreamer.php "%%link%%" "%%quality%%" "%%folder%%" "%%livestreamer%%" "%%choice%%"
:end1
pause
:end
Những điều tôi muốn làm:
1) Thay đổi thư mục thành thư mục trên ổ cứng ngoài: M: \ LiveStreamer; phần mềm hiện đang nằm trong thư mục gốc của C:
2) Tự động nhập vào là 720p
call set /p quality=write quality
3) Để nó tự động nhập 'd' cho
call set /p choice=play or download? (write p or d):
Cảm ơn
Thư mục hiện đang lưu nó vào ổ đĩa c của bạn là gì? Tôi đang xem tập tin thực thi và cố gắng để có được một ý tưởng về những gì nó đã làm tôi có một ý tưởng một phần nhưng muốn xác nhận nó.
—
NetworkKingPin
@NetworkKingPin Nó lưu vào C: \ hotstarsportslivestreamer \ videos
—
Serenity_Life