Quote:
Originally Posted by pashok326
can you rename 'low, medium and high' to '360p, 720p and 1080p' as in hotstar? 
|
i make this choice because not always 1080p an 720p exit
if you want for you
change
in bat
Code:
call set /p quality=write quality (write 360p 720p or 1080p):
in php
Code:
if ($argv[4]=='360p'){
$flavorId=$lflavorId[1];
}
else{
if ($argv[4]=='720p'){
$flavorId=$mflavorId[1];
}
else{
$flavorId=$hflavorId[1];
}
}