Seeking through ffmpeg streamWhat would be the equivalent to /dev/video0 in OSX Snow Leopard on a MacBook Pro (integrated iSight Camera)Seeking video while transcoding with ffmpegcan't re-stream using FFMPEG to MP4 HTML5 videoBest approach to real time http streaming to HTML5 video clientLive streaming of mp4 from Linux to Android with ffmpegstream webcam with nodejs ffmpegStreaming with ffmpeg kills my internet connectionAccess Android phone camera stream using ffmpegWebm - Video playback stops after seekingSending webcam video to remote PC over WiFi with ffmpeg
What was the rationale behind 36 bit computer architectures?
Is it legal for private citizens to "impound" e-scooters?
What does "see" in "the Holy See" mean?
What do I do when a student working in my lab "ghosts" me?
How can I stop myself from micromanaging other PCs' actions?
401(k) investment after being fired. Do I own it?
Grid/table with lots of buttons
"I you already know": is this proper English?
Replacing tongue and groove floorboards: but can't find a match
How do I generate distribution of positive numbers only with min, max and mean?
Why is a dedicated QA team member necessary?
Other than a swing wing, what types of variable geometry have flown?
What is the lowest-speed bogey a jet fighter can intercept/escort?
How to write a sincerely religious protagonist without preaching or affirming or judging their worldview?
How is the uk visa 180 calculated
Why is chess failing to attract big name sponsors?
Strange Cron Job takes up 100% of CPU Ubuntu 18 LTS Server
Commercial jet accompanied by small plane near Seattle
How do I run a game when my PCs have different approaches to combat?
Time travel novel: machine makes clones, clones battle to be the one to get back their life
Why can't my huge trees be chopped down?
Spin vs orbital angular momenta in QFT
How important is a good quality camera for good photography?
Difficulty pronouncing "maths", "baths", "hundredths", "sixths"
Seeking through ffmpeg stream
What would be the equivalent to /dev/video0 in OSX Snow Leopard on a MacBook Pro (integrated iSight Camera)Seeking video while transcoding with ffmpegcan't re-stream using FFMPEG to MP4 HTML5 videoBest approach to real time http streaming to HTML5 video clientLive streaming of mp4 from Linux to Android with ffmpegstream webcam with nodejs ffmpegStreaming with ffmpeg kills my internet connectionAccess Android phone camera stream using ffmpegWebm - Video playback stops after seekingSending webcam video to remote PC over WiFi with ffmpeg
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am trying to stream the output of a webcam to a html5 webpage. I have successfully achieved this using the code :
ffmpeg -re -I /dev/video0 -f webm -preset ultrafast -listen 1 -multiple_requests 1 http://localhost:8090/feed1.mp4
This streams to a video element on my website with the controls enabled.
I am able to play and pause the live stream but the seeker has no effect on the stream, also when I stop the ffmpeg stream the video disappears from the element.
Can anyone help me to seek through the stream and be able to view the stream after the ffmpeg script stops.
ubuntu ffmpeg
add a comment |
I am trying to stream the output of a webcam to a html5 webpage. I have successfully achieved this using the code :
ffmpeg -re -I /dev/video0 -f webm -preset ultrafast -listen 1 -multiple_requests 1 http://localhost:8090/feed1.mp4
This streams to a video element on my website with the controls enabled.
I am able to play and pause the live stream but the seeker has no effect on the stream, also when I stop the ffmpeg stream the video disappears from the element.
Can anyone help me to seek through the stream and be able to view the stream after the ffmpeg script stops.
ubuntu ffmpeg
add a comment |
I am trying to stream the output of a webcam to a html5 webpage. I have successfully achieved this using the code :
ffmpeg -re -I /dev/video0 -f webm -preset ultrafast -listen 1 -multiple_requests 1 http://localhost:8090/feed1.mp4
This streams to a video element on my website with the controls enabled.
I am able to play and pause the live stream but the seeker has no effect on the stream, also when I stop the ffmpeg stream the video disappears from the element.
Can anyone help me to seek through the stream and be able to view the stream after the ffmpeg script stops.
ubuntu ffmpeg
I am trying to stream the output of a webcam to a html5 webpage. I have successfully achieved this using the code :
ffmpeg -re -I /dev/video0 -f webm -preset ultrafast -listen 1 -multiple_requests 1 http://localhost:8090/feed1.mp4
This streams to a video element on my website with the controls enabled.
I am able to play and pause the live stream but the seeker has no effect on the stream, also when I stop the ffmpeg stream the video disappears from the element.
Can anyone help me to seek through the stream and be able to view the stream after the ffmpeg script stops.
ubuntu ffmpeg
ubuntu ffmpeg
asked Mar 26 at 16:46
Luke PenroseLuke Penrose
11 bronze badge
11 bronze badge
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
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%2fstackoverflow.com%2fquestions%2f55362299%2fseeking-through-ffmpeg-stream%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
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- 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%2fstackoverflow.com%2fquestions%2f55362299%2fseeking-through-ffmpeg-stream%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