Recherche avancée

Médias (1)

Mot : - Tags -/graphisme

Autres articles (87)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (7648)

  • AAC encoder : make pe.min a local minimum

    29 novembre 2015, par Claudio Freire
    AAC encoder : make pe.min a local minimum
    

    As noted in a comment, pe.min in the reference encoder
    is centered around current pe. The bit reservoir algo
    needs pe.min to be a local minimum, because it can only
    account for local PE variations. If it’s set to a global
    minimum as was being done, bit reservoir logic doesn’t
    work as efficiently.

    This patch tries to forget old minimums and converge to
    a local minimum without losing the stability of the
    previous solution. Listening tests until now suggest this
    solves numerous RC issues.

    • [DH] libavcodec/aacpsy.c
    • [DH] tests/fate/aac.mak
  • arm : Add an option for making sure NEON registers aren’t clobbered

    20 décembre 2013, par Martin Storsjö
    arm : Add an option for making sure NEON registers aren’t clobbered
    

    This is pretty much based on the same test for XMM registers.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] configure
    • [DH] libavcodec/arm/Makefile
    • [DH] libavcodec/arm/neontest.c
    • [DH] libavutil/arm/neontest.h
  • Making a animating image using a video [closed]

    29 juillet 2014, par user3508453

    I want to create an animating image using a video.
    I have a .mp4 video of length 60s.
    Now, I want to capture its first 5s and make a moving .gif image. Is it possible ?
    Can i do it with ffmpeg or canvas ?

    I thought of using ffmpeg to capture 5 frames till 5s and showing them repeatedly but thats too many images.... do u have a solution ?

    UPDATE

    exec("$ffmpegPath -i $vidFilePath -t 10 put.gif  2>&amp;1", $out, $ret);

    This code got it working but now the .gif image is too big 20MB is there any possibility to get a lowered size image ? without affecting resolution ?