Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
youtube-dl should be able to execute last ffmpeg command in stream #8269
Comments
|
It's a little like |
|
I'd need that as well. I really cant use youtube-dl like I want because the -x only operates on a finished file. youtube-dl should use ffmpeg to convert, using stdin/stdout so it continously writes to the file and we can start using the audio file while data is still being written to it. Please make this possible! @rg3 |
|
Any news of this ? |
|
I'd find this very helpful as well. |
|
I want to extract audio from video streams too.
pipe.js isn't interesting here, but...express = require('express')
const app = express()
const port = 5556
app.get('/', (req, res) => process.stdin.pipe(res))
app.listen(port, () => console.log(`Example app listening on port ${port}!`)) |
I would like to know if is possible to add a parameter (e.g: --stream) for execute the last ffmpeg command with the argument
pipe:1instead offile:xxx.The utility of this argument is that we can make on-the-fly conversion.
For example:
become:
That would be really cool and it would help me a lot for a personal project, thank you in advance.