Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (111)

  • 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" (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

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

  • Advise newsportal [on hold]

    25 janvier 2016, par DavyJ

    I need some advise for building an news system/site where news photographers can upload photo’s and video in every format from all kind off devices like mobiles, and camera’s from different Brands to keep the system easy for everyone ! Its need to be something with PHP ,js on a wamp. Is ffmpeg enough for this to acomplish ? And if yes, can i use one form fileinput for video and photos ?. Photos needs to be converted to .jpeg and video to .mp4. Maybe someone knows/has a simple PHP form with this functionality. Any help and ideas to accomplish is welcome. Is a lot i want in one solution, but i need some input and advice about what is the best direction for this kind of system.

    Thanks in advance !,
    Dave

  • SDL_SetVideoMode fails under Android ?

    17 avril 2013, par user1568549

    I am trying to buid a Video Player for android using libsdl for rendering and libav for decoding.

    First, i cross-compiled the sdl library for Android platform.
    Then i ceated the jni layer for my sdl cpp file(already tested under ubuntu)
    but when i test it under Android it fails(with fatal error segv11 signal) exactly at the beginning in the following instruction :

    this->screen = SDL_SetVideoMode(width, height, 0, 0);

    Does anyone know any workaround for this error ?

    Does anyone know how to display video using sdl under android ?
    And is there any instructions or steps that i must follow in order to render SDL gui under android ?

    Thanks in advance !

  • Getting the frame number as the filename for an extracted frame in ffmpeg

    7 janvier 2015, par Prashanth

    The following command line extracts the I frames from the video

    ffmpeg -i input.flv -f image2 -vf "select='eq(pict_type,PICT_TYPE_I)'" -vsync vfr thumb%04d.png

    But the frames are sequentially numbered ..like thumb0001,2,3,4,5.... Suppose the 9th frame is an I frame then I want the the extracted frame’s file name as ’thumb9.png’...suppose if 18th frame is the next I frame then the extracted frame’s filename should be ’thumb10.png’ or ’10.png’...

    How to achieve this ? Thanks in advance...