Starting VLC via command line to play a video as desktop wallpaper
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
add a comment |
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
add a comment |
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
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
windows-8 command-line vlc-media-player
asked Nov 21 '13 at 5:00
Ian Hyzy
35129
35129
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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
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
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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
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
add a comment |
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
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
add a comment |
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
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
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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