Recherche avancée

Médias (91)

Autres articles (60)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

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

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

Sur d’autres sites (12334)

  • avformat/vivo : Do not use the general expression evaluator for parsing a floating...

    5 décembre 2021, par Michael Niedermayer
    avformat/vivo : Do not use the general expression evaluator for parsing a floating point value
    

    Fixes : Timeout
    Fixes : 41564/clusterfuzz-testcase-minimized-ffmpeg_dem_VIVO_fuzzer-6309014024093696

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/vivo.c
  • configure : Don’t use symlinks for creating the out of tree makefile

    14 novembre 2013, par Martin Storsjö
    configure : Don’t use symlinks for creating the out of tree makefile
    

    On some platforms (such as msys), symlinks are (poorly) emulated
    by simply creating a copy of the file.

    This means that when building out of tree, the build tree gets
    a copy of the original makefile, which can lead to unintuitive
    build errors when the original makefile gets updated later.

    Instead simply create a stub makefile which includes the real
    one.

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

    • [DBH] configure
  • C# Using ffmpeg with binary data

    27 juillet 2015, par user3763117

    I have the need to make several posters from a movie, however I bounched in several problems.

    I have been searching yesterday whole day how this works and what might be the best solution to do this in my C# project, currently as this far.

    AForge.Video.FFMPEG.VideoFileWriter writer = new VideoFileWriter();
    writer.Open("en.code-bude_test_video.avi", width, height, 25, VideoCodec.MPEG4, 1000000);

    Following the documentation this should work with a local avi file, however I have my movie in binary and have no understanding how to use this stream to let the ffmpeg writer read this

    data is contained like this :

    Byte[] bytes = Convert.IsDBNull(s[col]) ? null : (Byte[])s[col];

    Anybody idea how to do this ?