In a case of mine a very high (compared to the video stream) resolution graphical frame (saying "access denied" (when my IP changes)) can appear instead of a video stream, which makes VLC window to resize, getting bigger than my screen is. This annoys me. Can I set up VLC to never resize its window when I don't do it myself and resize content instead?

link|improve this question

47% accept rate
feedback

3 Answers

up vote 2 down vote accepted

It is really tricky to find the checkbox that needs to be un-checked, so you could go edit the rc file.

C:\Users\%USERNAME%\AppData\Roaming\vlc

--- vlcrc.default       2011-12-16 11:46:51.000000000 -0800
+++ vlcrc.noresize      2010-12-05 20:00:26.000000000 -0800
@@ -1088,7 +1088,7 @@
 #qt-start-minimized=0

 # Resize interface to the native video size (boolean)
-#qt-video-autoresize=1
+qt-video-autoresize=0

Here is where you find the option in the interface.

VLC disable resize

link|improve this answer
1  
PS, it was an extreme PITA to find that the first time I was looking for it. I actually dug into the vlc source before I figured out where they hid that stupid checkbox. – Zoredache Dec 16 '11 at 19:57
feedback

From the VLC documentation, I found:

--sout-transcode-maxwidth=<integer>
  Maximum output video width.

--sout-transcode-maxheight=<integer>
  Maximum output video height.

However, running VLC from the command line requires a lot of setup (including settings from the standard module and the transcode module), so you may want to take a look at their Examples.

I'm going to install VLC on this computer and look into setting max sizes through the GUI. I'll report back if I find anything.

link|improve this answer
I am almost certain that he doesn't want to transcode anything, he just wants the interface to stop resizing. – Zoredache Dec 16 '11 at 19:53
Way to go, @zoredache! I voted for you. – Jesse Smith Dec 16 '11 at 19:54
feedback

Tools>Preferences>Interface> uncheck the box "Resize interface to video size" then restart VLC.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.