Recherche avancée

Médias (3)

Mot : - Tags -/plugin

Autres articles (77)

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

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (13387)

  • FFMPEG Slideshow from set of videos and images

    14 septembre 2018, par Rahul

    I’m making a slideshow video from a couple videos and images.

    Making it from images only is quiet easy but what if I have to mix
    small videos too.

    In slideshow the next video/image should come when the previous video is fully played.

    Please suggest a command.

  • How to add a new audio (not mixing) into a videos using ffmpeg (Batch Processing) ? [on hold]

    9 août 2019, par Kris

    I’m looking for a solution to add a new audio (not mixing) into a multiple videos using ffmpeg.

    I have 3 directories :

    1. videos (contains *.mp4 videos)

    2. audio (contains single audio.mp3 file)

    3. ready (output folder)

    For single video processing I’m using following command :

    ffmpeg -i video.mp4 -i audio.mp3 -codec copy -shortest output.avi

    My goal is to add a single audio (not mixing) into all videos in /videos/ directory using ffmpeg and save the new files in /ready/ keeping the orginal file names. Is this possible with ffmpeg ?

    Thank you

  • Join videos using FFmpeg

    14 avril 2021, par ThehalfHeart

    I have 4 videos.

    


      

    1. Video 1 : 20 seconds.
    2. 


    3. Video 2 : 10 seconds.
    4. 


    5. Video 3 : 30 seconds.
    6. 


    


    I want to join these 3 videos into one video 60 second Using FFmpeg.

    


    Current code : ffmpeg -i video1.mp4 -i video2.mp4 -i video3.mp4 out_put.mp4

    


    But not work.

    


    Please help me !