Recherche avancée

Médias (91)

Autres articles (51)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

Sur d’autres sites (5749)

  • How to add a text containing the dynamic current time of the video into video,when finished catching each frame using ffmpeg ?

    12 septembre 2016, par breakHeart

    How to solve it ? I hope to solve it by using a function, no command. I hope someone can help me ?

  • How to extract video embedded subtitle from a video URL and show in a text widget in flutter ?

    24 mars 2024, par badshah badmas

    I'm using flutter VLC player to play videos in my flutter app. I want to change the subtitle size dynamically in my video. But Flutter VLC player did not provide the function to change subtitle size dynamically. So I would like to extract the subtitle from the video and show it in a text widget instead of VLC player's subtitle. Can someone help me to extract the subtitle from the video URL ? Or any other method to solve this issue ?

    


    I have tried to extract subtitles using ffmpegkit .

    


     await FFmpegKit.executeAsync('-i $url -map 0:s:0 -codec:s srt $outputPath');


    


    This code returns a blank srt file.

    


  • FFMPEG encoded mp4 video don't show video frames but audio is fine [duplicate]

    29 avril 2020, par ark1974

    Trying on converting an mp3 audio and a jpeg image as background image into a mp4 video, video conversion should terminate after it reaches the audio play length.

    



    Here's the ffmpeg commandline. The conversion is successful and encoded mp4 audio is also good, but the image don't seem to appear. Do I have to specify a screen resolution ? Am I making any mistake ? How can I make the command more faster (I can't use -c:a copy as I may be converting other audio formats) ?

    



    ffmpeg -y -loop 1 -framerate 15 -i  "/storage/emulated/0/Download/Kites.jpg" -i "/storage/emulated/0/Download/myaudio.mp3" -c:v libx264 -c:a libmp3lame -shortest "/storage/emulated/0/Download/Out.mp4"