Need to play 2 different video streams (no audio) side by side in full screen with VLC on a Raspberry Pi at...
The logistics of corpse disposal
51k Euros annually for a family of 4 in Berlin: Is it enough?
Check which numbers satisfy the condition [A*B*C = A! + B! + C!]
Apollo command module space walk?
Is there a (better) way to access $wpdb results?
Why is "Consequences inflicted." not a sentence?
Is there a problem creating Diff Backups every hour instead of Logs and DIffs?
How to deal with a team lead who never gives me credit?
Is it ethical to give a final exam after the professor has quit before teaching the remaining chapters of the course?
How to bypass password on Windows XP account?
At the end of Thor: Ragnarok why don't the Asgardians turn and head for the Bifrost as per their original plan?
Denied boarding although I have proper visa and documentation. To whom should I make a complaint?
Error "illegal generic type for instanceof" when using local classes
How come Sam didn't become Lord of Horn Hill?
Should I use a zero-interest credit card for a large one-time purchase?
porting install scripts : can rpm replace apt?
If a contract sometimes uses the wrong name, is it still valid?
Bete Noir -- no dairy
Seeking colloquialism for “just because”
Generate an RGB colour grid
Do I really need recursive chmod to restrict access to a folder?
Single word antonym of "flightless"
Extract all GPU name, model and GPU ram
Withdrew £2800, but only £2000 shows as withdrawn on online banking; what are my obligations?
Need to play 2 different video streams (no audio) side by side in full screen with VLC on a Raspberry Pi at bootup
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Fine control over zoom and aspect ratio in VLC playerHow to disable all window borders from the VLC playback windowBatch convert video to audio with VLCHow to resize VLC window?How to play RTSP live video streams on VLC player?VLC video playback when playing just audioWhat do I need for VLC to play mp4 video?Play SRTP streams in VLC playerStream audio/video over RTSP with VLC?VLC 3 can not play certain UDP streams
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
As the title says, I need to be able to play 2 different video streams side by side in full screen with VLC on a Raspberry Pi at bootup.
I am able to play a single stream in full screen at bootup, but now I've been told it needs to bootup with 2 different video streams.
The command I used for a single video stream is:
/usr/bin/vlc -I dummy --fullscreen --sub-source="marq{marquee=title ,color=16776960,size=20}:marq{marquee=%d/%m/%Y %H:%M:%S,position=6,size=20,color=16776960" /home/pi/Desktop/stream1.m3u8
This lets me play the stream file which I have saved on the desktop and named stream1.m3u8 in full screen, and overlay a title on the top left and the date/time on the top right in yellow text.
To play two streams, I use this command:
/usr/bin/vlc -I dummy --no-one-instance --sub-source="marq{marquee=title1,color=16776960,size=20}:marq{marquee=%d/%m/%Y %H:%M:%S,position=6,size=20,color=16776960" /home/pi/Desktop/stream1.m3u8 & /usr/bin/vlc -I dummy --no-one-instance --sub-source="marq{marquee=title2,color=16776960,size=20}:marq{marquee=%d/%m/%Y %H:%M:%S,position=6,size=20,color=16776960" /home/pi/Desktop/stream2.m3u8
The "--no-one-instance" and "&" symbol lets me open both streams, but this command line results in both streams playing in their own window, but I need both streams to be in full screen with stream1 taking up half of the left side of the display and stream2 taking up the other half, right side of the display.
If I add the --fullscreen, only one of the stream becomes fullscreen. If I add --fullscreen to both side of the &, then both stream plays in fullscreen, but on top of each other.
Anyone have any clues as to what I need to change to the command line?
vlc-media-player raspberry-pi
New contributor
Isaac is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
As the title says, I need to be able to play 2 different video streams side by side in full screen with VLC on a Raspberry Pi at bootup.
I am able to play a single stream in full screen at bootup, but now I've been told it needs to bootup with 2 different video streams.
The command I used for a single video stream is:
/usr/bin/vlc -I dummy --fullscreen --sub-source="marq{marquee=title ,color=16776960,size=20}:marq{marquee=%d/%m/%Y %H:%M:%S,position=6,size=20,color=16776960" /home/pi/Desktop/stream1.m3u8
This lets me play the stream file which I have saved on the desktop and named stream1.m3u8 in full screen, and overlay a title on the top left and the date/time on the top right in yellow text.
To play two streams, I use this command:
/usr/bin/vlc -I dummy --no-one-instance --sub-source="marq{marquee=title1,color=16776960,size=20}:marq{marquee=%d/%m/%Y %H:%M:%S,position=6,size=20,color=16776960" /home/pi/Desktop/stream1.m3u8 & /usr/bin/vlc -I dummy --no-one-instance --sub-source="marq{marquee=title2,color=16776960,size=20}:marq{marquee=%d/%m/%Y %H:%M:%S,position=6,size=20,color=16776960" /home/pi/Desktop/stream2.m3u8
The "--no-one-instance" and "&" symbol lets me open both streams, but this command line results in both streams playing in their own window, but I need both streams to be in full screen with stream1 taking up half of the left side of the display and stream2 taking up the other half, right side of the display.
If I add the --fullscreen, only one of the stream becomes fullscreen. If I add --fullscreen to both side of the &, then both stream plays in fullscreen, but on top of each other.
Anyone have any clues as to what I need to change to the command line?
vlc-media-player raspberry-pi
New contributor
Isaac is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
As the title says, I need to be able to play 2 different video streams side by side in full screen with VLC on a Raspberry Pi at bootup.
I am able to play a single stream in full screen at bootup, but now I've been told it needs to bootup with 2 different video streams.
The command I used for a single video stream is:
/usr/bin/vlc -I dummy --fullscreen --sub-source="marq{marquee=title ,color=16776960,size=20}:marq{marquee=%d/%m/%Y %H:%M:%S,position=6,size=20,color=16776960" /home/pi/Desktop/stream1.m3u8
This lets me play the stream file which I have saved on the desktop and named stream1.m3u8 in full screen, and overlay a title on the top left and the date/time on the top right in yellow text.
To play two streams, I use this command:
/usr/bin/vlc -I dummy --no-one-instance --sub-source="marq{marquee=title1,color=16776960,size=20}:marq{marquee=%d/%m/%Y %H:%M:%S,position=6,size=20,color=16776960" /home/pi/Desktop/stream1.m3u8 & /usr/bin/vlc -I dummy --no-one-instance --sub-source="marq{marquee=title2,color=16776960,size=20}:marq{marquee=%d/%m/%Y %H:%M:%S,position=6,size=20,color=16776960" /home/pi/Desktop/stream2.m3u8
The "--no-one-instance" and "&" symbol lets me open both streams, but this command line results in both streams playing in their own window, but I need both streams to be in full screen with stream1 taking up half of the left side of the display and stream2 taking up the other half, right side of the display.
If I add the --fullscreen, only one of the stream becomes fullscreen. If I add --fullscreen to both side of the &, then both stream plays in fullscreen, but on top of each other.
Anyone have any clues as to what I need to change to the command line?
vlc-media-player raspberry-pi
New contributor
Isaac is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
As the title says, I need to be able to play 2 different video streams side by side in full screen with VLC on a Raspberry Pi at bootup.
I am able to play a single stream in full screen at bootup, but now I've been told it needs to bootup with 2 different video streams.
The command I used for a single video stream is:
/usr/bin/vlc -I dummy --fullscreen --sub-source="marq{marquee=title ,color=16776960,size=20}:marq{marquee=%d/%m/%Y %H:%M:%S,position=6,size=20,color=16776960" /home/pi/Desktop/stream1.m3u8
This lets me play the stream file which I have saved on the desktop and named stream1.m3u8 in full screen, and overlay a title on the top left and the date/time on the top right in yellow text.
To play two streams, I use this command:
/usr/bin/vlc -I dummy --no-one-instance --sub-source="marq{marquee=title1,color=16776960,size=20}:marq{marquee=%d/%m/%Y %H:%M:%S,position=6,size=20,color=16776960" /home/pi/Desktop/stream1.m3u8 & /usr/bin/vlc -I dummy --no-one-instance --sub-source="marq{marquee=title2,color=16776960,size=20}:marq{marquee=%d/%m/%Y %H:%M:%S,position=6,size=20,color=16776960" /home/pi/Desktop/stream2.m3u8
The "--no-one-instance" and "&" symbol lets me open both streams, but this command line results in both streams playing in their own window, but I need both streams to be in full screen with stream1 taking up half of the left side of the display and stream2 taking up the other half, right side of the display.
If I add the --fullscreen, only one of the stream becomes fullscreen. If I add --fullscreen to both side of the &, then both stream plays in fullscreen, but on top of each other.
Anyone have any clues as to what I need to change to the command line?
vlc-media-player raspberry-pi
vlc-media-player raspberry-pi
New contributor
Isaac is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Isaac is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Isaac is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 19 hours ago
IsaacIsaac
11
11
New contributor
Isaac is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Isaac is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Isaac is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
0
active
oldest
votes
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
});
}
});
Isaac is a new contributor. Be nice, and check out our Code of Conduct.
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%2f1425932%2fneed-to-play-2-different-video-streams-no-audio-side-by-side-in-full-screen-wi%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Isaac is a new contributor. Be nice, and check out our Code of Conduct.
Isaac is a new contributor. Be nice, and check out our Code of Conduct.
Isaac is a new contributor. Be nice, and check out our Code of Conduct.
Isaac is a new contributor. Be nice, and check out our Code of Conduct.
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.
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%2f1425932%2fneed-to-play-2-different-video-streams-no-audio-side-by-side-in-full-screen-wi%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