Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (34)

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

  • [SOLVED]how do I apply watermark on multiple videos in the current directory with ffmpeg

    22 octobre 2017, par Ariane Martins Gomes Do Rego

    Linux + ffmpeg

    I have a folder with 300 videos. I need to apply the same watermark on all these videos, so in the folder I have 300 video files + 1 png file which is my watermark, how do I convert all with different names, so that the next file does not overwrite the previous one ?

    Answer :

    for f in *.mp4; do ffmpeg -i "$f" -i watermark.png -filter_complex 'overlay=10:10' -strict -2 "$f-marked.mp4"; done

    Thank you so Much. [SOLVED]

  • What is a decode_slice_header error ? Can this error output be solved ?

    21 septembre 2017, par Santiago Nicolas Martin

    While trying to decode or even get any useful information about .mts file, using in this case this command :

    ffmpeg -i URL

    I am always getting these errors :

    [h264 @ 0xb4c080] non-existing SPS 0 referenced in buffering period
    [h264 @ 0xb4c080] non-existing PPS 0 referenced
    [h264 @ 0xb4c080] non-existing SPS 0 referenced in buffering period
    [h264 @ 0xb4c080] non-existing PPS 0 referenced
    [h264 @ 0xb4c080] decode_slice_header error
    [h264 @ 0xb4c080] no frame!

    Is there a way to fix it ? The program after all these errors continues processing but the output doesn’t work. Is there a problem with the file itself ?

  • (SOLVED) FFMpeg encode keyframes with minimum loss

    26 septembre 2016, par metlira

    Is there any way to encode keyframes of a video in FFMpeg using high bitrates while using low bitrates for B and P frames ? I’ve used "crf" and "qp" options, but output file size increased too much.