
Recherche avancée
Autres articles (63)
-
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (14018)
-
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.


-
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.
-
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 ?