Recherche avancée

Médias (91)

Autres articles (37)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

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

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

  • How can i split a video into NxM tiles spatially ?

    15 avril 2020, par Fuxing Yang

    I want to spatially cut a video to generate N x M files.

    



    For example,I want to split the test.video into NxM tiles ?

    



    Video tiles

    


  • Split an uncompressed video into segments with ffmpeg on MatLab ?

    14 mars 2017, par Sendja

    I have a video sequence(format Y4M) and I want to split it into sevral segment with the same GoP size.
    GoP = 8 ;
    How can I do that in MatLab using FFMPEG ?

  • flac/encode.c : Fix an integer overflow

    14 février 2017, par Erik de Castro Lopo
    flac/encode.c : Fix an integer overflow
    

    When encoding a 24 bit multichannel W64 file on a 32 bit system, a
    calculation could overflow resulting in a "got partial sample"
    error and early termination of the encoding process.

    The fix was to replace the cast to `size_t` (which is only 32 bits
    on a 32 bit system) with a cast to `uin64_t`.

    Thanks to Janne Hyvärinen for helping to track down the problem.

    Closes : https://sourceforge.net/p/flac/bugs/453

    • [DH] src/flac/encode.c