Horizontal resolution (default 1280) -height Vertical resolution (default 720) -30fps Use 30fps -60fps Use 60fps [default] -bitrate Specify the bitrate in Kbps -packetsize Specify the maximum packetsize in bytes -forcehevc Use high efficiency video decoding (HEVC) -remote Enable remote optimizations -app Name of app to stream -nosops Don't allow GFE to modify game settings -localaudio Play audio locally -surround Stream 5.1 surround sound (requires GFE 2.7) -keydir Load encryption keys from directory */ $cmd = 'sudo moonlight stream -app "'.$_POST['game'].'"'; if( $_POST['resolution'] == '1920x1080') $cmd .= ' -1080'; if( $_POST['fps'] == '30') $cmd .= ' -30fps'; if( $_POST['forcehevc'] == 'true') $cmd .= ' -forcehevc'; if( $_POST['localaudio'] == 'true') $cmd .= ' -localaudio'; if( $_POST['remote'] == 'true') $cmd .= ' -remote'; exec("$cmd &", $out); print_r($out); ?>