Recherche avancée

Médias (91)

Autres articles (99)

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

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

  • how to add text over video using ffmpeg in android

    1er février 2016, par android_beginner

    I am working on a video - editing app where user can add text/images, trim video,etc. and to implement this i have decided to use ffmpeg. The problem now is i do not have much idea on how to implement the same in my app as it seems bit difficult. Can any one help over this with the easiest way possible ?

  • Nginx FFMPEG rtmp to hls

    27 janvier 2017, par Ahmet Kandemir

    I want to stream with ffmpeg nginx. I want to do these.

    input : Other Server RTMP ex : (rtmp ://example.com )
    Output:To convert my m3u8 file -> Ex : ( http//myserverip.com/ex.m3u8 ) like theese

    Does anyone have an idea ? Thanks for helping.

  • Speed up video encoding

    28 août 2019, par eshangin

    My task is to create html5 compatible video from input video (.avi, .mov, .mp4, etc.). My understanding is that my output should be .webm or .mp4 (H264 video, aac audio).
    I use ffmpeg for conversion and it takes a lot of time. I wonder if I could use ffprobe to test if input video is "H264" and "aac" and if so then maybe I could just copy video/audio into output without modifications.

    I.e. I have next idea :

    1. Get input video info using ffprobe :
    ffprobe {input} -v quiet -show_entries stream=codec_name,codec_type -print_format json

    The result would be JSON like this :

    "streams": [
    {codec_name="mjpeg",codec_type="video"},
    {codec_name="aac",codec_type="audio"}
    ]
    1. If JSON tells that video codec is h264 then I think I could just copy video stream. If JSON tells that audio codec is h264 aac then I think I could just copy audio stream.
    2. JSON above tells that my audio is "aac". So I think I could just copy audio stream into ouput video but still needs video stream conversion. For the above example my ffmpeg command would be like :
    ffmpeg -i {input} -c:v libx264 -c:a copy ouput.mp4

    The question is if I could always use this idea to produce html5 compatible video and if this method will actually speed up video conversion.