
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (62)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (8000)
-
Raspberry Pi HLS streaming [on hold]
5 mars 2015, par Razvan-Catalin OlaruI have a rev. B Raspberry Pi and want to stream from my Microsoft Lifecam VX-800 to a web server using HLS protocol and avconv/ffmpeg, preferably without using raspivid because it’s not working (couldn’t figure out why). The stream needs to be fed to jwplayer. I went through a lot of guides but none seem to be fitting my needs. Could you give me detailed instructions on how to do the live streaming or give me links to detailed tutorials that you tried and worked ?
Thanks.
-
Streaming microphone audio to tag with FFmpeg
16 octobre 2013, par noodleboy347I've been working on a nodejs server that streams a live webcam feed and I've been looking for a way to get audio working but I'm completely stumped.
The video is being streamed onto a canvas element with jsmpeg, and is being streamed with the following command (I'm not sure that this is even successfully streaming audio) :
ffmpeg -s 640x480 -f vfwcap -i video="/dev/video0":audio="Microphone" -f mpeg1video -acodec libmp3lame -b:v 30k -r 24 -b:a 24k -ar 22050 http://website.com:8082
So what I'm wondering is, maybe there's a possible way to stream the audio with the HTML5 audio tag, or maybe even use WebM, just any good solution. What's the best way for streaming live video and audio with nodejs ?
-
C# Audio Streaming (server to client)
19 décembre 2020, par DenevI am using a translator.


I want to make a live streaming music player (UDP) using c#.


- 

- Load an audio file from my computer (server) and play it.
- The client connects to the server and listens to the music currently playing on the server, and displays metadata on the client program screen.






The important part is that the client cannot control the playback timing and must receive it from the server unilaterally and play it. (Like twitch live streaming)


Is it possible to split the audio file into a buffer and send it, and the client receives it and plays it as audio in real-time ?


It looks like it's possible with FFmpeg, but I couldn't find any tutorials or examples for my level.


Thank you.