
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (109)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)
Sur d’autres sites (14068)
-
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.