Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (61)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (5474)

  • Split videos to chunks using Rails and streamio-ffmpeg

    29 septembre 2021, par Nasser FN

    I've followed this tutorial both parts 1 & 2,https://www.randygirard.com/how-to-create-a-video-upload-platform-using-ruby-on-rails-part-2/

    


    so now I am able to upload videos, convert them to mp4 and display them to the user, but the problem is I want to split the uploaded videos to chunks of 30 seconds each and

    


    return them to the user so he/she can use them for whatsapp status.

    


    This' my main goal !

    


    As I've mentioned earlier, i followed the tutorial above, all I need is how to integrate

    


    and use https://github.com/streamio/streamio-ffmpeg in my rails code for splitting videos

    


    to chunks. Thanks !

    


  • How to merge multiple videos end-to-end with yt-dlp or ffmpeg [closed]

    12 juillet 2024, par Pengu

    We want to download a bunch of small sections of videos then stitch them all together into one big video. How would we go about this ? Is there a way to bulk-stitch together videos from a particular folder ? We're planning to have thousands of clips, so the more automated it can be, the better.

    


    We are already using yt-dlp and ffmpeg for downloading the sections, so we would prefer if the solution was using those as well.

    


    The closest thing we could find was this https://github.com/yt-dlp/yt-dlp/issues/6595 which, when we try it, runs fine but the resulting clip is the same length as the parts used and doesn't seem to join them together.

    


  • ffmpeg trim videos at specific start / end frame [closed]

    13 mai 2023, par emilector

    I have mp4 video files that I need to trim between a start and an end frame. I am using this python command, but instead of the trimmed videos I get long videos of the same frame.

    


    os.system('ffmpeg -i {0}.mp4 -vf trim=start_frame={1}:end_frame={2} -fflags +genpts {3}.mp4'.format(inputVideoPath, startFrame, endFrame, outputVideoPath))


    


    I dont care about audio. Could someone point me in the right direction ?