Recherche avancée

Médias (1)

Mot : - Tags -/punk

Autres articles (96)

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

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

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

  • Android Rendering Live H.264 over RTSP

    4 juin 2013, par Lior Ohana

    I'm trying to decode (and render) live H.264 over RTSP in an Android app.
    Assuming, there are no network latency issues, the latency should not exceed several seconds.

    The first try was to use the MediaPlayer which was fine but the internal buffering of the infrastructure causes delays of 10-15 seconds.

    Right now the main dilemma is between using the new MediaCodec APIs or with FFMPeg.

    I know there are many tutorials/samples out there talking about FFMPeg but I didn't see any comparison.
    I think I understand most of the pros/cons for each but before spending ages on making one of them working I would like to be sure.

  • DVR + FFMPEG + IOS Authentication and Live Streaming Fails

    6 août 2013, par user1744691

    How to grab video from a DVR using ffmpeg and DVR is password protected. Is there a way to grab live stream from IP-Cam connected to DVR.

    I was able to stream a channel (may be recorded video) but whenever i tried to connect to a DVR could not get it done.

    this
    http://www.wowza.com/_h264/BigBuckBunny_175k.mov and this rtsp ://live.sabah.com.tr:443/atv/atv3/
    link works great for getting me stream
    but when i try my DVR's (http://admril:56789@mysite.com) (mysite.com = 213.115.94.108) link it fails to establish a connection using FFMEG.

    I have used a variety of variation of DVR's url but all in vein.

    Please let me know where i am wrong and how i can get live stream.

  • FFmpeg C API - seek through live stream

    29 mai 2014, par Erik Villegas

    I’ve opened a live RTMP stream using FFmpeg’s C library, and I need to programmatically seek to the very end of the stream. This is after the stream is paused for an indeterminate amount of time. The closest I could get is the following :

    av_seek_frame(pFormatCtx, -1, pFormatCtx->duration, 0);
    avcodec_flush_buffers(pCodecCtx);

    But the duration is 0 for live streams. Any ideas ?