Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (52)

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (11170)

  • play MPD file of mpeg-dash on android and IOS

    9 janvier 2019, par user3223551

    I have used ffmpeg to create a MPD file for my video, and I could play and watch it on my pc using :http://dashplayer.azurewebsites.net/

    now I want to make sure it works and plays appropriately on andoid and IOS, could anyone tell me how to test this file on android and IOS ?

  • How to install frei0r on FFmepg ?

    26 octobre 2018, par La-Cat

    Sorry for the stupid question, I need some help with installing frei0r with FFmpeg.
    I have already installed FFmpeg by this tutorial :
    Tutorial for installing FFmepg

    When I’m trying to add the frei0r plugin, nothing works.
    I have tried to use this thread and frei0r’s website.

    Thanks :)

  • fps is too low when ffmpeg grab video

    6 avril 2014, par zhangyp007

    I use ffmpeg with the following options :

    ffmpeg -f video4linux2 -s 640x480 -r 25 -i /dev/video0 http://localhost:8090/feed1.ffm

    All I want to do is to watch the web live video in my chrome browser. This is relevant part in my ffserver.conf file :

    <stream>              # Output stream URL definition
      Feed feed1.ffm              # Feed from which to receive video
      Format webm
      NoAudio
       #Audio settings
      #AudioCodec vorbis
      #AudioBitRate 64             # Audio bitrate

      # Video settings
      VideoCodec libvpx            
      VideoSize 720*576           # 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
      AVOptionAudio flags +global_header
      PreRoll 15
      StartSendOnKey
      VideoBitRate 400            # Video bitrate
    </stream>

    When I open chrome to the following location :

    http://localhost:8090/test.webm

    I can successfully watch the live video, but due to a low fps, I just doesn't produce a fluent video. I found out that the fps is only around 6. Sometimes it goes up to around 10 or 15. When that is the case, the becomes video a bit more fluent.

    I have set the fps to 25, so I wonder why it actually gets to the low fps reate.