Starting VLC via command line to play a video as desktop wallpaper












2














I'm trying to create a batch script to start a video as a live wallpaper on startup. Right-clicking a playing video and selecting the "Set as wallpaper" option works fine, but attempting to run VLC with the following flags fails and only renders the video in the top left corner of the screen:



"C:Program Files (x86)VideoLANVLCvlc.exe" --fullscreen --no-video-title-show --no-embedded-video --no-qt-fs-controller --qt-start-minimized --qt-system-tray --video-wallpaper "D:carrey.mpg"


Is this a bug in VLC or am I not formatting the command correctly? I've tried a few different versions of the command script, but the same thing happens each time. I'm on Windows 8.1 x64.










share|improve this question



























    2














    I'm trying to create a batch script to start a video as a live wallpaper on startup. Right-clicking a playing video and selecting the "Set as wallpaper" option works fine, but attempting to run VLC with the following flags fails and only renders the video in the top left corner of the screen:



    "C:Program Files (x86)VideoLANVLCvlc.exe" --fullscreen --no-video-title-show --no-embedded-video --no-qt-fs-controller --qt-start-minimized --qt-system-tray --video-wallpaper "D:carrey.mpg"


    Is this a bug in VLC or am I not formatting the command correctly? I've tried a few different versions of the command script, but the same thing happens each time. I'm on Windows 8.1 x64.










    share|improve this question

























      2












      2








      2


      2





      I'm trying to create a batch script to start a video as a live wallpaper on startup. Right-clicking a playing video and selecting the "Set as wallpaper" option works fine, but attempting to run VLC with the following flags fails and only renders the video in the top left corner of the screen:



      "C:Program Files (x86)VideoLANVLCvlc.exe" --fullscreen --no-video-title-show --no-embedded-video --no-qt-fs-controller --qt-start-minimized --qt-system-tray --video-wallpaper "D:carrey.mpg"


      Is this a bug in VLC or am I not formatting the command correctly? I've tried a few different versions of the command script, but the same thing happens each time. I'm on Windows 8.1 x64.










      share|improve this question













      I'm trying to create a batch script to start a video as a live wallpaper on startup. Right-clicking a playing video and selecting the "Set as wallpaper" option works fine, but attempting to run VLC with the following flags fails and only renders the video in the top left corner of the screen:



      "C:Program Files (x86)VideoLANVLCvlc.exe" --fullscreen --no-video-title-show --no-embedded-video --no-qt-fs-controller --qt-start-minimized --qt-system-tray --video-wallpaper "D:carrey.mpg"


      Is this a bug in VLC or am I not formatting the command correctly? I've tried a few different versions of the command script, but the same thing happens each time. I'm on Windows 8.1 x64.







      windows-8 command-line vlc-media-player






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 21 '13 at 5:00









      Ian Hyzy

      35129




      35129






















          1 Answer
          1






          active

          oldest

          votes


















          0














          You don't set any size so maybe VLC media player will play the movie in its original size/resolution.



          I think adding the size to your command will solve your problem.



          --width, --height <integer> sets the video window dimensions. By default, the video window size will be adjusted to match the video dimensions.



          Source: Advanced Use of VLC, Video options






          share|improve this answer























          • I noticed when setting the resolution's to my screen resolution or full screen there's a black flash the size of the screen, but the video still shows at it's original resolution. Adding width and height flags didn't help.
            – Ian Hyzy
            Nov 21 '13 at 21:04










          • Ok, good to know, i thought this should work. I don't had the time to read through it but maybe the vlc forum may help you: forum.videolan.org/viewtopic.php?f=14&t=100222
            – konqui
            Nov 22 '13 at 7:03










          • I already went through the forums and tried all the solutions there; trying the commands on those posts resulted in my desktop having a pink screen instead of video at best.
            – Ian Hyzy
            Nov 22 '13 at 16:40











          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "3"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f678670%2fstarting-vlc-via-command-line-to-play-a-video-as-desktop-wallpaper%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          You don't set any size so maybe VLC media player will play the movie in its original size/resolution.



          I think adding the size to your command will solve your problem.



          --width, --height <integer> sets the video window dimensions. By default, the video window size will be adjusted to match the video dimensions.



          Source: Advanced Use of VLC, Video options






          share|improve this answer























          • I noticed when setting the resolution's to my screen resolution or full screen there's a black flash the size of the screen, but the video still shows at it's original resolution. Adding width and height flags didn't help.
            – Ian Hyzy
            Nov 21 '13 at 21:04










          • Ok, good to know, i thought this should work. I don't had the time to read through it but maybe the vlc forum may help you: forum.videolan.org/viewtopic.php?f=14&t=100222
            – konqui
            Nov 22 '13 at 7:03










          • I already went through the forums and tried all the solutions there; trying the commands on those posts resulted in my desktop having a pink screen instead of video at best.
            – Ian Hyzy
            Nov 22 '13 at 16:40
















          0














          You don't set any size so maybe VLC media player will play the movie in its original size/resolution.



          I think adding the size to your command will solve your problem.



          --width, --height <integer> sets the video window dimensions. By default, the video window size will be adjusted to match the video dimensions.



          Source: Advanced Use of VLC, Video options






          share|improve this answer























          • I noticed when setting the resolution's to my screen resolution or full screen there's a black flash the size of the screen, but the video still shows at it's original resolution. Adding width and height flags didn't help.
            – Ian Hyzy
            Nov 21 '13 at 21:04










          • Ok, good to know, i thought this should work. I don't had the time to read through it but maybe the vlc forum may help you: forum.videolan.org/viewtopic.php?f=14&t=100222
            – konqui
            Nov 22 '13 at 7:03










          • I already went through the forums and tried all the solutions there; trying the commands on those posts resulted in my desktop having a pink screen instead of video at best.
            – Ian Hyzy
            Nov 22 '13 at 16:40














          0












          0








          0






          You don't set any size so maybe VLC media player will play the movie in its original size/resolution.



          I think adding the size to your command will solve your problem.



          --width, --height <integer> sets the video window dimensions. By default, the video window size will be adjusted to match the video dimensions.



          Source: Advanced Use of VLC, Video options






          share|improve this answer














          You don't set any size so maybe VLC media player will play the movie in its original size/resolution.



          I think adding the size to your command will solve your problem.



          --width, --height <integer> sets the video window dimensions. By default, the video window size will be adjusted to match the video dimensions.



          Source: Advanced Use of VLC, Video options







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Apr 26 '15 at 14:56









          Peter Mortensen

          8,331166184




          8,331166184










          answered Nov 21 '13 at 6:26









          konqui

          484315




          484315












          • I noticed when setting the resolution's to my screen resolution or full screen there's a black flash the size of the screen, but the video still shows at it's original resolution. Adding width and height flags didn't help.
            – Ian Hyzy
            Nov 21 '13 at 21:04










          • Ok, good to know, i thought this should work. I don't had the time to read through it but maybe the vlc forum may help you: forum.videolan.org/viewtopic.php?f=14&t=100222
            – konqui
            Nov 22 '13 at 7:03










          • I already went through the forums and tried all the solutions there; trying the commands on those posts resulted in my desktop having a pink screen instead of video at best.
            – Ian Hyzy
            Nov 22 '13 at 16:40


















          • I noticed when setting the resolution's to my screen resolution or full screen there's a black flash the size of the screen, but the video still shows at it's original resolution. Adding width and height flags didn't help.
            – Ian Hyzy
            Nov 21 '13 at 21:04










          • Ok, good to know, i thought this should work. I don't had the time to read through it but maybe the vlc forum may help you: forum.videolan.org/viewtopic.php?f=14&t=100222
            – konqui
            Nov 22 '13 at 7:03










          • I already went through the forums and tried all the solutions there; trying the commands on those posts resulted in my desktop having a pink screen instead of video at best.
            – Ian Hyzy
            Nov 22 '13 at 16:40
















          I noticed when setting the resolution's to my screen resolution or full screen there's a black flash the size of the screen, but the video still shows at it's original resolution. Adding width and height flags didn't help.
          – Ian Hyzy
          Nov 21 '13 at 21:04




          I noticed when setting the resolution's to my screen resolution or full screen there's a black flash the size of the screen, but the video still shows at it's original resolution. Adding width and height flags didn't help.
          – Ian Hyzy
          Nov 21 '13 at 21:04












          Ok, good to know, i thought this should work. I don't had the time to read through it but maybe the vlc forum may help you: forum.videolan.org/viewtopic.php?f=14&t=100222
          – konqui
          Nov 22 '13 at 7:03




          Ok, good to know, i thought this should work. I don't had the time to read through it but maybe the vlc forum may help you: forum.videolan.org/viewtopic.php?f=14&t=100222
          – konqui
          Nov 22 '13 at 7:03












          I already went through the forums and tried all the solutions there; trying the commands on those posts resulted in my desktop having a pink screen instead of video at best.
          – Ian Hyzy
          Nov 22 '13 at 16:40




          I already went through the forums and tried all the solutions there; trying the commands on those posts resulted in my desktop having a pink screen instead of video at best.
          – Ian Hyzy
          Nov 22 '13 at 16:40


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Super User!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f678670%2fstarting-vlc-via-command-line-to-play-a-video-as-desktop-wallpaper%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Plaza Victoria

          In PowerPoint, is there a keyboard shortcut for bulleted / numbered list?

          How to put 3 figures in Latex with 2 figures side by side and 1 below these side by side images but in...