Yes - VLC can do this. In what context do you mean though since VLC can scale the video output to whatever resolution the window/video region is scaled to or alternatively can stream/transcode to a file.
If you want to output to a video file with a resolution of 1080p you can use the width and height parameters in the sout (stream out) string. For example:
Code: Select all
vlc dvdsimple:// :sout=#transcode{vcodec=h264,vb=2000,width=1920,height=1080,acodec=mp3,ab=192,channels=2}:duplicate{dst=std{access=file,mux=mp4,dst="C:\Temp\OUTPUT"}}
Where dvdsimple:// and C:\Temp\OUTPUT.mp4 are the input stream and output file respectfully.
That would output an H.264 video of 1920x1080 at 2000kbps (with 192kbps stereo MP3 audio) and encapsulate it into a MP4 file.
Arite.