Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (60)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Prérequis à l’installation

    31 janvier 2010, par

    Préambule
    Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
    Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
    Il (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (8459)

  • SWF to PNG.. but merge all pngs inside into 1

    14 novembre 2014, par Jayden

    The title says it all,

    I’ve tried swftools and ffmepg but I don’t ’think’ they achieve what I need to do.

    Basically there is a SWF file that is made up of up to 60 images, them 60 images inside the SWF all are parts of an image that make up 1 final image or animation on an online game.

    I need to be able to download the swf as a png image with the same output it will look like on the virtual game - so not 60 images if seperate graphics, just one image with them all (merged ?) together.

    I am not even sure if this is possible to do in the commandline so if you understand any of this, please point me in the right direction.

    I am using Ubuntu 14.04

  • AVC-Intra support

    20 juillet 2013, par Kieran Kunhya
    AVC-Intra support
    

    This format has been reverse engineered and x264’s output has almost exactly
    the same bitstream as Panasonic cameras and encoders produce. It therefore does
    not comply with SMPTE RP2027 since Panasonic themselves do not comply with
    their own specification. It has been tested in Avid, Premiere, Edius and
    Quantel.

    Parts of this patch were written by Jason Garrett-Glaser and some reverse
    engineering was done by Joseph Artsimovich.

    • [DH] common/common.c
    • [DH] common/common.h
    • [DH] common/set.h
    • [DH] encoder/analyse.c
    • [DH] encoder/encoder.c
    • [DH] encoder/ratecontrol.c
    • [DH] encoder/set.c
    • [DH] encoder/set.h
    • [DH] x264.c
    • [DH] x264.h
  • ffmpeg encode video with different rates [on hold]

    12 août 2013, par alexis

    I have two videos. I make this videos with the following codes :

     ffmpeg -r 5 -f image2 -i "b%d.png" -c:v mpeg4 -q:v 5 -an a.avi
     ffmpeg -r 15 -f image2 -i "b%d.png" -c:v mpeg4 -q:v 5 -an b.avi

    As you can see, the only difference is the rate. Now I want to concatenate them. Following the other post I use this :

     ffmpeg -i "concat:a.avi|b.avi" -c copy movie2.avi

    However the resulting movie shows the "b.avi" part much more slower. Actually no difference of speed is appreciated between "a" and "b" parts. How can I keep the differences of speed in the resulting movie ?

    Maybe I have some conceptual misunderstanding about rate... but the thing is that I want the "b.avi" part to be faster than the "a.avi" part.