Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (36)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • 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) (...)

Sur d’autres sites (6959)

  • How to publish or push the live stream to RTMP-Nginx server using php and FFmpeg ?

    27 juin 2020, par vijendar

    I want to push the live stream to the RTMP-Nginx server. I am recording the webcam and sending it to the PHP running server using the socket but couldn't find the proper way to push the stream on the RTMP-Nginx server. I am appending the stream after receiving through the socket. I have used this

    


    ffmpeg -re -i uploads/test.webm -vcodec libx264 -preset fast -maxrate 1500k -c:a aac -b:a 128k -ac 2 -ar 44100 -f flv rtmp://x.xx.xxx.xx/live/xxx

    


    to push on the RTMP-Nginx server. But it's executing on the very first received packet of the video stream and then terminated. I know It's not working with a continuous appended video stream. may be FFmpeg reading as a whole. Hoping for the right direction. Thanks in advance.

    


  • Try to close SDL_CloseAudio has deadlock when RTSP server is down

    24 juillet 2014, par Evan Lin

    I try to using live555(a.k.a OpenRTSP) to setup RTSP server and client.
    My Client application using live555, ffmpeg and SDL as streaming, decode and playback.

    I found it might have deadlock if I try to call SDL_CloseAudio as following situation :

    • When RTSP is down.
    • When network is broken.

    I am exclude it related to any timing issue because it works well if I try to call SDL_CloseAudio when server is not down.

    Also, I have tried following API but still not work :

    • Try SDL_PauseAudio before close it.
    • Try SDL_UnlockAudio before close it.

    Any idea for this ?

  • How to upload a video through PHP, transcode it via FFmpeg and upload it to a different server via FTP.

    20 mai 2017, par PBXAI

    Currently I am building a video streaming platform and I need a way to upload my videos, through multiple resolutions to my Windows Wowza server. I am currently running Ubuntu with Nginx and PHP so I want to be able to, when the user uploads the video, encode it to 1080p, 720p, 480p, and 360p then upload it via FTP to my windows server. How would I do this ? Is there a better way ? Moving my Wowza server is not an option as the two can not be on the same server due to resources.