Recherche avancée

Médias (91)

Autres articles (45)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (6593)

  • How to streaming from laptop camera to server rtmp

    21 août 2017, par boygiandi

    I’m looking for a solution to send data from laptop camera using browser (Javascript) to a rtmp server (like facebook live or youtube). I did researched but no luck. What I got :

    1. Direct from camera to rtmp server ==> We can’t do this, browser WebRTC using udp and rtmp is tcp
    2. Another server as proxy ==> What I think is : browser using WebRTC and send video data to server. Server also running as a WebRTC client and receive video data, forward to ffmpeg process. ffmpeg send video data to rtmp server.

    The problem is I can’t find any working example for WebRTC on server (almost example use server to help 2 clients can connect together). What I need is use server as WebRTC client and get video data.
    I also take a look at RecordRTC but I only see example of upload video after stop record. I want to upload while recording (live stream)
    Please help

  • UDP streaming from laptop to wowza streaming engine using ffmpeg

    9 février 2018, par ST94

    I am working on Streaming a local file or a live stream from a webcam on my laptop to the Wowza Streaming Engine using UDP. My laptop and the system with Wowza server are able to ping each other. The ffmpeg command and the output it gives is

    ffmpeg -re -i bunny_1080p_60fps_normal.mp4 -strict experimental -f mpegts udp ://192.168.1.22:10000 ?pkt_size=1316

    It shows that the video’s streaming, but on the wowza’s test players I am not able to view the stream. I followed these links to stream the video
    https://www.wowza.com/docs/how-to-use-ffmpeg-with-wowza-media-server-mpeg-ts

    https://www.wowza.com/docs/how-to-publish-and-play-a-live-stream-mpeg-ts-based-encoder

    Please guide me what I am doing wrong here. Thank You

  • FFmpeg in Jupyter Notebook

    16 avril 2020, par TheYellowBlueWhite

    So, I installed ffmpeg according to https://www.wikihow.com/Install-FFmpeg-on-Windows
I also checked related topics such as RuntimeError : No MovieWriters available in Matplotlib animation
Still, there is a problem when I try to run the cell :

    



    Writer = animation.FFMpegWriter(fps=30, codec='libx264')
 animate.save('heat.mp4', writer=Writer)

    



    And here occurs the problem : an error is raised :

    



    filenotfounderror: (winerror 2) the system cannot find the file specified

    



    Should I somehow specify the file's name or something else ?