Recherche avancée

Médias (91)

Autres articles (91)

  • 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

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

Sur d’autres sites (11932)

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

  • How to minimize the delay in a live streaming with ffmpeg

    9 juillet 2013, par Pasquale C.

    i have a problem.
    I would to do a live streaming with ffmpeg from my webcam.

    1. I launch the ffserver and it works.
    2. From another terminal I launch ffmpeg to stream with this command
      and it works :

      sudo ffmpeg -re -f video4linux2 -i /dev/video0 -fflags nobuffer -an http://localhost:8090/feed1.ffm
    3. In my configuration file I have this stream :

      <stream>
      Feed feed1.ffm
      Format webm
      NoAudio
      VideoCodec libvpx
      VideoSize 720x576
      VideoFrameRate 25
      # Video settings
         VideoCodec libvpx
         VideoSize 720x576           # Video resolution
         VideoFrameRate 25           # Video FPS
         AVOptionVideo flags +global_header  # Parameters passed to encoder
                                         # (same as ffmpeg command-line parameters)
         AVOptionVideo cpu-used 0
         AVOptionVideo qmin 10
         AVOptionVideo qmax 42
         #AVOptionVideo quality good
         PreRoll 5
          StartSendOnKey
         VideoBitRate 400            # Video bitrate
      </stream>
    4. I launch the stream with

      ffplay http://192.168.1.2:8090/test.webm
      It works but I have a delay of 4 seconds and I would to minimize this delay because is essential for my application.
      Thanks

  • HTTP Live Streaming, FFMPEG & FFSERVER, and iPhone OS 3

    17 novembre 2014, par jcnnghm

    In iPhone OS 3, Apple has introduced HTTP Live Streaming which should allow live streaming of video from the internet. I am currently operating a webcam, which feeds into my server, and is then converted into a flv stream by ffmpeg, and streamed back out using ffserver. Does anyone know how to setup a video stream the iPhone can use using ffmpeg and ffserver ? I should be able to re-encode into just about any format on the fly.