Import buddy has this snippet of code
string resolution = "1080p";
switch(DiscFormat)
{
case "Blu-Ray":
resolution = "1080p";
break;
case "UHD":
resolution = "2160p";
break;
case "DVD":
resolution = "720p";
break;
}
For NTSC (American) DVDs, you have 480p (720x480), here in Europe we have PAL which is 576p (720x576)
The resolution only appears to be there to fill out a filename value, but it's still technically incorrect
Import buddy has this snippet of code
For NTSC (American) DVDs, you have 480p (720x480), here in Europe we have PAL which is 576p (720x576)
The resolution only appears to be there to fill out a filename value, but it's still technically incorrect