
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (105)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...)
Sur d’autres sites (13294)
-
How can I play an audio file while converting it with ffmpeg in Node.js ?
18 août 2017, par Blake AllenI created a simple video-to-audio converter with ffmpeg for my discord.js bot :
let stream = //an mp4 stream
ffmpeg(stream)
.toFormat("mp3")
.stream(fs.createWriteStream("./audio.mp3"))
.on("end", () => {
connection.playStream(fs.createReadStream("./audio.mp3"))
});This all works fine, but using .on() to play the file - only after it completely finishes converting - can take a while.
Is there an efficient way to use connection.playStream to play the audio file or stream as the ffmpeg conversion is still happening ?
-
FFMPEG and RTMPDUMP is unable to play content from Red5 server
1er juillet 2016, par KiranI am using Red5 1.0.7-RELEASE(ubuntu 12.04) to understand the rtmp protocol. I tried "Publisher" demo to see the functioning. Live publish and play works fine in the "Publisher" demo page. But when I publish from demo page and play through FFMPEG : avplay rtmp ://localhost/oflaDemo/stream or
RTMPDUMP : rtmpdump -v -r "rtmp ://localhost/oflaDemo/stream" -o - | "vlc" I see some problem. Only after I end publishing I see data in the FFMPEG or RTMPDUMP.In case of rtmpt, VLC says unable to open MRL when I can able to play data in Publisher demo page.
-
Cannot play audio with FFPLAY
2 avril 2020, par Javier UrrestarazuI am trying to stream the sound of a Linux machine via UDP to a Windows 7 64 bit machine. The command for streaming the audio is :



./ffmpeg -f oss -i /dev/dsp -f mpegts udp://192.168.99.35:11222




It seems to work well. However, when I try to play the audio with the following command :



ffplay -fflags nobuffer udp://127.0.0.1:11222




I get the following error : No more combinations to try audio open failed



And nothing plays. I have no clue where the issue is coming from.