How to stream video from a source site like YouTube without a GUI?How can I stream live TV from Windows Media...
Traveling to heavily polluted city, what practical measures can I take to minimize impact?
Graphic representation of a triangle using ArrayPlot
Converting from "matrix" data into "coordinate" data
Which country has more?
Why do phishing e-mails use faked e-mail addresses instead of the real one?
How do you make a gun that shoots melee weapons and/or swords?
Does the US political system, in principle, allow for a no-party system?
I can't die. Who am I?
Is it a Cyclops number? "Nobody" knows!
Cycles on the torus
How can a demon take control of a human body during REM sleep?
What should I do when a paper is published similar to my PhD thesis without citation?
Will expression retain the same definition if particle is changed?
What will happen if my luggage gets delayed?
How to write a chaotic neutral protagonist and prevent my readers from thinking they are evil?
Can the Witch Sight warlock invocation see through the Mirror Image spell?
Is there stress on two letters on the word стоят
Can I take the the bonus-action attack from Two-Weapon Fighting without taking the Attack action?
Smooth vector fields on a surface modulo diffeomorphisms
Leveling the sagging side of the home
Is there a way to make cleveref distinguish two environments with the same counter?
What is the "determinant" of two vectors?
The (Easy) Road to Code
Is there a logarithm base for which the logarithm becomes an identity function?
How to stream video from a source site like YouTube without a GUI?
How can I stream live TV from Windows Media Center to another computer?Can VLC stream a YouTube video?What are the minimum specs required for a PC to stream HD movie files?Stream videos from a server with “youtube-like” compressionLinux On-Demand Streaming ServerSetup for a live (low-latency) audio video broadcast over Wi-Fi?Video not working in Virtualbox on Windows 7Find the source of a x-mpegURL video live streamIs there any way to post-process streaming HTML5 or flash video, e.g. tweak sharpness and contrast during playback?FFMPEG h.264 stream to VLC from raw YUV444 produces black screen and audio noise
I need to set up a computer to put video on several screens at the same time. To save as many resources as I can from the original computer (which is getting old), I have two questions:
- Is it necessary to use a GUI to stream video from a Linux machine?
- And, if isn't, how do you automate video streaming without a GUI (in Linux)?
I think the screens are gonna be connected to a computer, and playing the stream via YouTube, but is there a way to avoid using a GUI for all of this?
linux video streaming gui
add a comment |
I need to set up a computer to put video on several screens at the same time. To save as many resources as I can from the original computer (which is getting old), I have two questions:
- Is it necessary to use a GUI to stream video from a Linux machine?
- And, if isn't, how do you automate video streaming without a GUI (in Linux)?
I think the screens are gonna be connected to a computer, and playing the stream via YouTube, but is there a way to avoid using a GUI for all of this?
linux video streaming gui
Do you mean the screens are all connected to a single machine running linux?vlc
,mplayer
andmpv
can all play a youtube url directly from the command line.
– Paul
Apr 25 '14 at 22:45
Please edit and clarify your question. If the screens are physically attached to the computer, you don't need any kind of "streaming". How did youtube get into this, are you going to play local files or youtube videos? Is your question "How can I play youtube videos without a GUI"?
– terdon
Apr 26 '14 at 11:15
add a comment |
I need to set up a computer to put video on several screens at the same time. To save as many resources as I can from the original computer (which is getting old), I have two questions:
- Is it necessary to use a GUI to stream video from a Linux machine?
- And, if isn't, how do you automate video streaming without a GUI (in Linux)?
I think the screens are gonna be connected to a computer, and playing the stream via YouTube, but is there a way to avoid using a GUI for all of this?
linux video streaming gui
I need to set up a computer to put video on several screens at the same time. To save as many resources as I can from the original computer (which is getting old), I have two questions:
- Is it necessary to use a GUI to stream video from a Linux machine?
- And, if isn't, how do you automate video streaming without a GUI (in Linux)?
I think the screens are gonna be connected to a computer, and playing the stream via YouTube, but is there a way to avoid using a GUI for all of this?
linux video streaming gui
linux video streaming gui
edited 10 mins ago
JakeGould
32k1098140
32k1098140
asked Apr 25 '14 at 22:28
user57129user57129
214
214
Do you mean the screens are all connected to a single machine running linux?vlc
,mplayer
andmpv
can all play a youtube url directly from the command line.
– Paul
Apr 25 '14 at 22:45
Please edit and clarify your question. If the screens are physically attached to the computer, you don't need any kind of "streaming". How did youtube get into this, are you going to play local files or youtube videos? Is your question "How can I play youtube videos without a GUI"?
– terdon
Apr 26 '14 at 11:15
add a comment |
Do you mean the screens are all connected to a single machine running linux?vlc
,mplayer
andmpv
can all play a youtube url directly from the command line.
– Paul
Apr 25 '14 at 22:45
Please edit and clarify your question. If the screens are physically attached to the computer, you don't need any kind of "streaming". How did youtube get into this, are you going to play local files or youtube videos? Is your question "How can I play youtube videos without a GUI"?
– terdon
Apr 26 '14 at 11:15
Do you mean the screens are all connected to a single machine running linux?
vlc
, mplayer
and mpv
can all play a youtube url directly from the command line.– Paul
Apr 25 '14 at 22:45
Do you mean the screens are all connected to a single machine running linux?
vlc
, mplayer
and mpv
can all play a youtube url directly from the command line.– Paul
Apr 25 '14 at 22:45
Please edit and clarify your question. If the screens are physically attached to the computer, you don't need any kind of "streaming". How did youtube get into this, are you going to play local files or youtube videos? Is your question "How can I play youtube videos without a GUI"?
– terdon
Apr 26 '14 at 11:15
Please edit and clarify your question. If the screens are physically attached to the computer, you don't need any kind of "streaming". How did youtube get into this, are you going to play local files or youtube videos? Is your question "How can I play youtube videos without a GUI"?
– terdon
Apr 26 '14 at 11:15
add a comment |
1 Answer
1
active
oldest
votes
Install Streamlink:
sudo -H pip install streamlink
Send the stream to cvlc --fullscreen
:
streamlink --player="cvlc --no-video" "https://www.youtube.com/freecodecamp/live" best
Personally what I was needing was just the audio, --no-video
.
To save bandwidth you could use worst
instead of best
.
Great tip here. +1
– JakeGould
19 mins ago
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%2f746158%2fhow-to-stream-video-from-a-source-site-like-youtube-without-a-gui%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
Install Streamlink:
sudo -H pip install streamlink
Send the stream to cvlc --fullscreen
:
streamlink --player="cvlc --no-video" "https://www.youtube.com/freecodecamp/live" best
Personally what I was needing was just the audio, --no-video
.
To save bandwidth you could use worst
instead of best
.
Great tip here. +1
– JakeGould
19 mins ago
add a comment |
Install Streamlink:
sudo -H pip install streamlink
Send the stream to cvlc --fullscreen
:
streamlink --player="cvlc --no-video" "https://www.youtube.com/freecodecamp/live" best
Personally what I was needing was just the audio, --no-video
.
To save bandwidth you could use worst
instead of best
.
Great tip here. +1
– JakeGould
19 mins ago
add a comment |
Install Streamlink:
sudo -H pip install streamlink
Send the stream to cvlc --fullscreen
:
streamlink --player="cvlc --no-video" "https://www.youtube.com/freecodecamp/live" best
Personally what I was needing was just the audio, --no-video
.
To save bandwidth you could use worst
instead of best
.
Install Streamlink:
sudo -H pip install streamlink
Send the stream to cvlc --fullscreen
:
streamlink --player="cvlc --no-video" "https://www.youtube.com/freecodecamp/live" best
Personally what I was needing was just the audio, --no-video
.
To save bandwidth you could use worst
instead of best
.
edited 8 mins ago
answered 23 mins ago
Pablo BianchiPablo Bianchi
233110
233110
Great tip here. +1
– JakeGould
19 mins ago
add a comment |
Great tip here. +1
– JakeGould
19 mins ago
Great tip here. +1
– JakeGould
19 mins ago
Great tip here. +1
– JakeGould
19 mins ago
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.
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%2f746158%2fhow-to-stream-video-from-a-source-site-like-youtube-without-a-gui%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
Do you mean the screens are all connected to a single machine running linux?
vlc
,mplayer
andmpv
can all play a youtube url directly from the command line.– Paul
Apr 25 '14 at 22:45
Please edit and clarify your question. If the screens are physically attached to the computer, you don't need any kind of "streaming". How did youtube get into this, are you going to play local files or youtube videos? Is your question "How can I play youtube videos without a GUI"?
– terdon
Apr 26 '14 at 11:15