Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (37)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (4601)

  • Streaming microphone audio to tag with FFmpeg

    16 octobre 2013, par noodleboy347

    I'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 Denev

    I am using a translator.

    


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

    


      

    1. Load an audio file from my computer (server) and play it.
    2. 


    3. The client connects to the server and listens to the music currently playing on the server, and displays metadata on the client program screen.
    4. 


    


    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.

    


  • Convert asset to fMP4 in device (iOS) for streaming

    1er février 2018, par GustavoAzOl

    I have a local asset, recorded by the user, and I want to export a fMP4 to be upload to the server and later be used for streaming. I’ll target iOS 10.0 and later and use swift.

    How can I do that locally on the device ? Is there a "native" way or even a better way to do that ?
    I saw some people using ffmpeg but it seems a bit more complex to get it work on the project.