Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (33)

  • Participer à sa documentation

    10 avril 2011

    La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
    Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
    Pour ce faire, vous pouvez vous inscrire sur (...)

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

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (6030)

  • How to extract audio from a video with ffmpeg in C++ ?

    6 novembre 2011, par Gp2mv3

    I'm using FFmpeg to extract informations about a video file.
    But i want to extract the audio channels to read it with FMOD.

    How can I do that ? Is it simple ?

    Do you know a good tutorial about FFmpeg in C++ ?

    Thanks

  • Revision 52af8e3ee6 : flv.h, flvmeta.c, flvdump.c : Added support for Screen Video V2, and On2 VP6 with

    20 septembre 2007, par Marc Noirot

    Changed Paths :
     Modify /AUTHORS


     Modify /ChangeLog


     Modify /Makefile.am


     Modify /README


     Add /THANKS
    (from /AUTHORS
    :7eef48a76c31888eb3e6267fb8c200419059f1dd)
     Add /TODO


     Modify /flv.h


     Modify /flvdump.c


     Modify /flvmeta.c



    flv.h, flvmeta.c, flvdump.c : Added support for Screen Video V2, and On2 VP6 with
    alpha channel.
    flvdump.c (compute_metadata) : Fixed a compilation issue on MacOSX caused by a
    misplaced minus sign.
    flvmeta.c (main) : Added protection against giving the same file as input and
    output.
    flv.h, flvmeta.c : Fixed the padding in the flv_tag to better reflect its role.
    flvmeta.c : Made error messages more uniform.
    flvmeta.c (compute_h263_size) : Added Picture Start Code check.
    flvdump.c (main) : Suppressed a compilation warning.
    Makefile.am : Added -Wall.
    Makefile.am : Removed non-existant directory `doc' from EXTRA_DIST.
    Added THANKS, TODO standard files.
    AUTHORS, README, Changelog : Standard stuff.

  • Create video from image sequence starting at image_100

    22 février 2014, par Johanna

    I'm using ffmpeg to convert a sequence of images into a .mov file. The command line I use is :

    ffmpeg.exe -f image2 -i im_%04d.jpeg -r 25 -sameq -vcodec mjpeg out.mov

    It works fine if the first image of the sequence starts at im_0000, but when the first image starts for example at im_0100, then I get an

    im_%04d.jpeg: Error number -2 occurred

    How can I force it to analyse the sequence, no matter what number the first image is ?