Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (95)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

Sur d’autres sites (7131)

  • Revision b26ce8b1be : Updates to 1-pass : -Don't reduce maxQ for gold/alt in CBR mode. -Fix to

    22 octobre 2013, par Marco Paniconi

    Changed Paths :
     Modify /test/datarate_test.cc


     Modify /vp9/encoder/vp9_onyx_if.c



    Updates to 1-pass :

    -Don't reduce maxQ for gold/alt in CBR mode.

    -Fix to min/maxQ for first/initial key frame.

    -Add more speeds to datarate test and reduce the starting bitrate for test.

    Change-Id : Id2a333d76dd3f6a51b322ca984588e2a22159c58

  • how do i add a text overlay on a video with ffmpeg

    14 avril 2021, par victor ukafor

    I'm trying to add a text overlay over a video but it hasn't been successfull. I keep getting this error :

    


    No such filter : 'drawtext'
Error reinitializing filters !
Failed to inject frame into filter network : Invalid argument

    


    I'm using Ubuntu and i have ffmpeg installed as well as —enable-libfreetype.

    


    Here is the script :

    


    ffmpeg -i vic.mp4 -vf "drawtext=text='My text starting at 640x360':x=640:y=360:fontsize=24:fontcolor=white" output.mp4

    


  • Which way to use to render decoded frame on screen ?

    17 décembre 2014, par user2270995

    I have compiled FFMPEG for android and used it to fetch a network stream and decode the frames.

    Now I am using FFMPEG’s sws_scale() function to convert the decoded frame from native to RGB and then copy that frame to Android’s Bitmap object passed and then set that Bitmap to an ImageView.

    1. Is this a good way ? (I think it’s not from whatever I have learned so far)
    2. Is using SDL a better way (AFAIK many media players are using it) and if yes how do I use it (any tutorial or starting code would be helpful)
    3. Is there any other better way ? (I would play multiple videos at a time)