Recherche avancée

Médias (91)

Autres articles (106)

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

  • mov : Fix handling of zero-length metadata values

    15 décembre 2014, par Martin Storsjö
    mov : Fix handling of zero-length metadata values
    

    Since 3cec81f4d4, a zero-length metadata value would try to
    allocate 2*0 bytes, where av_malloc() returns NULL.

    Always add one to the allocated length, to allow space for
    a null terminator in the zero-length case.

    Incidentally, this fixes fate-alac on RVCT 4.0, where a compiler
    bug seems to mess up the mov muxer to the point that it writes
    the wrong sort of metadata. Previously this bug was undetected,
    but since 3cec81f4d4 such mov files started returning
    AVERROR(ENOMEM) in the mov demuxer.

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

    • [DBH] libavformat/mov.c
  • Revision a16f075375 : Corrected value range of —cpu-used for vp9 This commit removes undefined value

    18 décembre 2014, par Yaowu Xu

    Changed Paths :
     Modify /vp9/encoder/vp9_speed_features.c


     Modify /vp9/vp9_cx_iface.c


     Modify /vpxenc.c



    Corrected value range of —cpu-used for vp9

    This commit removes undefined value options of cpu-used for VP9 and
    changed vpxenc prompt to reflect the usable range of [-8,8]

    Change-Id : Ib80fef3dbb6ec9aabac45ed13e8ab6fbaf94f55e

  • MediaConvert split video into multiple chunk but in different duration length

    12 novembre 2020, par Sandip

    I have one video with 1 hr time.

    &#xA;

    i want to chunk in different part by specified range.

    &#xA;

    ex :

    &#xA;

      &#xA;
    1. 0 to 10 min
    2. &#xA;

    3. 10 to 40 min
    4. &#xA;

    5. 40 to 60 min
    6. &#xA;

    &#xA;

    I know it is possible by ffmpeg but i want to do this with MediaConvert.

    &#xA;

    here is sample for ffmpeg but same thing i want do using MediaConvert

    &#xA;

    ffmpeg -i input.mp4 -c copy -f segment -segment_times 0,600,2400 output%d.mp4&#xA;

    &#xA;