Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (111)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (11050)

  • 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 ?

  • php exec command to encode video to h.264 mp4 file using ffmpeg and x264 tool on ubuntu

    7 avril 2012, par matt

    I have a dedicated server with ffmpeg and the x264 tool installed. I can encode any video and works really well. But now I need to encode videos to play on iPads, iPhones... the format needs to be mp4 and using the h.264 codec.

    I'm using PHP to enconde videos, I'm just looking for an exec command to do the above encoding.
    what I'm using for the other videos is :

    exec("ffmpeg -i movie.mov -sameq -acodec mp3 -ar 22050 -ab 32 -f flv -s 1280x720 movie.flv");

    I just need something similar to that for encoding mp4
    by the way, I can't use libx264. I can only use the x264 tool

    Cheers