Recherche avancée

Médias (91)

Autres articles (40)

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

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

  • Is there any way to detect and cut out the real video part from a full video

    27 octobre 2020, par Jemma.Z

    Not sure whether I can explain my question. I have a bunch of video material. Some of them are recorded videos from mobile phones. When people record the video on their phone, their produced video may contain more than just the recorded video I need. I need to detect and cut out the useless part. The useless part would be still while the part I need is changing and on the play.

    


    I do not know whether there is any way for me to do it. I can write some code but I just do not know what libraries to use. Does it have something to do with OpenCV. Or is there a way to solve it with ffmpeg ?

    


    Hopefully someone can give me some ideas. Thanks a lot.

    


  • Loop movie and mix with audio by ffmpeg

    29 novembre 2020, par whitebear

    I have a movie file and an audio file with different length.

    


    Audio file is longer than video file.

    


    I want to loop video and mix with audio, then set length same as audio file.

    


    ffmpeg -i "Pentagon_VJ_background_loop.mp4" -stream_loop -1 -t 60 -i "Out1.wav"  -map 0:0 -map 1:0 output.mp4


    


    With this I have -stream_loop -1 but movie doesn't loop. and have no way to set the length to audio file(I use -t 60 instead).

    


    Does anyone help ??

    


  • does movie filter in ffmpeg 4.3.1 support png format picture

    1er janvier 2021, par TONY

    I use ffmpeg's moive filter to add wartermark on my video.
The str is "const char *filter_descr = "movie=test.png:seek_point=3.2, scale=180 :-1, setpts=PTS-STARTPTS [over] ;[in] setpts=PTS-STARTPTS [main] ;[main][over] overlay=16:16 [out]" ;"
it shows that can't find codec, but if the wartermark picture is bmp ,then it's ok.
I found that the png code exists in ffmpeg, it should support png decoder.