Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (27)

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

  • FFMPEG overlay video over image using movie filter resulting video with no sound

    22 février 2021, par Herahadi An

    I want to overlay srinked video on the top of single image.
I use movie filter to do that. like this

    


    ffmpeg.exe -loop 1 -i Coronavirus00000000.jpg -vf "movie=C\\:/\Users/\Toshiba/\Pictures/\test vcp/\shopi pro.mp4,scale=1180:-1[inner];[in][inner]overlay=70:70:shortest=1[out]" -y out.mp4


    


    It's work. but the problem, the audio from video is removed. The final video out.mp4 has no sound, even though the original video has.

    


    I have read answer on this threat FFMPEG overlaying video with image removes audio

    


    That recommend to Change into ...[padded]overlay=0:0" -y ... Or add -map 0:a

    


    But I don't understand how to implement that answer into movie filter

    


  • using ffmpeg create video collage from video captured by app

    25 septembre 2017, par Bharat singh

    Hi guys i am working on a android app which is based on video collage in which have to create collage from selected or captured video, there are different types of collage i have to implement. i have implemented most of them.
    But i am stuck when i try to create a specific type of collage.

    So here is my question

    i have to create a collage in which all video should play one be one

    i have to combine 16 video all together in a frame and play one by one.

    it should be look like this

    enter image description here

    for now all video are playing together what should i do so that all videos play one by one
    Thanks in Advance

  • Output video file of ffmpeg command video and audio doesn't match

    6 juillet 2022, par Barry

    i'm trying to trim a video file using ffmpeg using this command
ffmpeg -i input.mp4 -ss 00:05:20 -t 00:10:00 -c:v copy -c:a copy output.mp4 . The problem is when i open the output video, the audio starts normally but the video appears only 5 seconds after. I tried removing the -c copy option and output is accurate but the process is very slow. So my question is how to make output video/audio match when using -c copy option, or how to make the process faster when not using -c copy option. It's my first time using this so i don't know much about video/audio encoding, i am just trying to extract a video clip from a php script.