Recherche avancée

Médias (91)

Autres articles (62)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

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

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

Sur d’autres sites (9555)

  • Presenting more than 2 videos using FFmpeg [duplicate]

    31 octobre 2018, par Radagskar

    This question already has an answer here :

    I found this answer for combining 2 videos using Ffmpeg

    ffmpeg.exe -i LeftInput.mp4 -vf "[in] scale=iw/2:ih/2, pad=2*iw:ih [left];
       movie=RightInput.mp4, scale=iw/3:ih/3, fade=out:300:30:alpha=1 [right];
       [left][right] overlay=main_w/2:0 [out]" -b:v 768k Output.mp4

    Is there a way to combine more than 2 ?

    I tried adding [bottom] and [upper] but I’m failing to understand how the overlay works and where do I put more videos.

  • 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