View Single Post
  #102  
Old 04-05-2016, 07:48 AM
biezom biezom is offline
Senior Member
 
Join Date: Sep 2014
Posts: 1,025
biezom is on a distinguished road
Default

Re: Downloading from voot.com


Quote:
Originally Posted by pashok326 View Post
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];
            }		
	}
Reply With Quote