Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

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?

share|improve this question

3 Answers

up vote 8 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

share|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

Select Tools⇨Preferences⇨Interface then uncheck the box Resize interface to video size. Finally, restart VLC.

share|improve this answer

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.

share|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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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