Recherche avancée

Médias (91)

Autres articles (111)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (12157)

  • difference between using SDL and using media player class that is videoview

    3 juin 2019, par Whoami

    I have been surfing the net for some time to get basic understanding of media framework in android. As part of this, to display video we have media player class or video view component which can easily display the video. When we have such solution provided by the framework itself, then why there are few components avaiable like SDL [ Simple Direct Media Layer], which claims the same functionality as video view ?

    How both are different ?

  • Revision e4eb0330fa : vp9_spatial_svc_encoder.sh : Disable existing tests, add a test that works. - vp

    31 juillet 2014, par Tom Finegan

    Changed Paths :
     Modify /test/vp9_spatial_svc_encoder.sh



    vp9_spatial_svc_encoder.sh : Disable existing tests, add a test that works.

    - vp9_spatial_svc_encoder.c no longer supports the -m parameter that
    has been used in the example test. Tests using -m have been disabled.
    - Added a basic test that appears to work as of commit
    3249f26ff85e2bfe148167ce80df53643a89a2d2.
    - Minor style clean up.

    Change-Id : Ic1402fcbbe28e33982c5ea12d1e3349f4069a5bf

  • How to add a new filter to ffmpeg library

    6 septembre 2020, par Croolman

    I am trying to add functionality to FFmpeg library. The issue is that in developer guide there are just general instruction on how to do it. I know that when I want to add something to ffmpeg I need to register the new functionality and rebuild the library so I can then call it somehow like so :

    



    ffmpeg -i input.avi -vf "myfilter" out.avi


    



    I do not want to officialy contribute. I would like to try to create the extra functionality and test it. The question is - is there any scelet file where the basic structure would be ready and you would just get a pointer to a new frame and processed it ? Some directions or anything, because the source files are kinda hard to read without understanding its functions it calls inside.