Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (43)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • avcodec/jpeg2000 : Simplify exp2fi for numbers used here

    17 février 2024, par Andreas Rheinhardt
    avcodec/jpeg2000 : Simplify exp2fi for numbers used here
    

    The call to ff_exp2fi() here always uses arguments in the normal
    range, so that the branches in ff_exp2fi() are unnecessary.
    This is so because JPEG2000 itself only supports up to
    128 bits per component per pixel (we only support far less) ;
    furthermore, expn is always 0..31 for the decoder and also
    sane for the encoder, so that the difference between these
    two values is always in the normal range of -126..128.

    Reviewed-by : Tomas Härdin <git@haerdin.se>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/jpeg2000.c
  • ffmpeg make a movie with multiple numbers in filename [closed]

    22 juillet 2024, par NNN

    I have the following four files

    &#xA;

    mov_00_00.png&#xA;mov_00_01.png&#xA;mov_01_00.png&#xA;mov_01_01.png&#xA;

    &#xA;

    I can make a movie using

    &#xA;

    ffmpeg.exe -i mov_%02d_00.png -filter:v "setpts=10*PTS" out.mp4

    &#xA;

    But this does not consider the files ending with 01.png.

    &#xA;

    I tried

    &#xA;

    ffmpeg.exe -i mov_%02d_%02d.png -filter:v "setpts=10*PTS" out.mp4&#xA;

    &#xA;

    But it says

    &#xA;

    [in#0 @ 0000021982d69000] Error opening input: No such file or directory&#xA;Error opening input file mov_%02d_%02d.png.&#xA;Error opening input files: No such file or directory&#xA;

    &#xA;

    What command line magic do I need to use to make this work ? Thanks.

    &#xA;

    Edit : I'm using the Windows version under WSL and the glob option is not supported.

    &#xA;

  • avcodec/osq : avoid using too large numbers for shifts and integers in update_residue_...

    14 septembre 2023, par Michael Niedermayer
    avcodec/osq : avoid using too large numbers for shifts and integers in update_residue_parameter()
    

    Fixes : 2.96539e+09 is outside the range of representable values of type 'int'
    Fixes : Assertion n>=0 && n<=32 failed at libavcodec/get_bits.h:423
    Fixes : 62241/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_OSQ_fuzzer-4525761925873664
    Fixes : 70406/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_OSQ_fuzzer-6545326804434944

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/osq.c