Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (89)

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (8901)

  • how to trim and merge videos with single commend [duplicate]

    18 mars 2020, par eomer

    Is it possible to trim a video and merge with another video at the same time ?

    



    I am learning ffmpeg and I know that I can merge videos and trim videos

    



    I could use output for trimmed video and merge with another but is it possible to do at one step ?

    


  • FFmpeg - Create Thumbnail Grid from Videos [duplicate]

    28 février 2021, par John Doe

    Is it possible to create a grid of 9 videos to form one big video, then snapshot the first frame to create a thumbnail showing the first frames of all 9 videos ? I wish to take the first 9 videos from a contact.txt file

    


    I started by trying with 4 videos but it still doesnt work :

    


    ffmpeg -y -ss 00:00:01 -protocol_whitelist file,pipe -f concat -safe 0 -i "concat.txt" -filter_complex "[0:v][1:v]hstack=inputs=2[top];[2:v][3:v]hstack=inputs=2[bottom];[top][bottom]vstack=inputs=2[v]" -map "[v]" -s 1280x720 "thumb.jpg"


    


    Trying to get this layout :
enter image description here

    


    MUST use files from concat list in text file

    


  • Overlaying multiple videos with ffmpeg [closed]

    21 juin 2015, par xZise

    I’m trying to overlay multiple videos into one video with ffmpeg. There is already a question with only one overlay, but I want to add multiple videos at the same time (to avoid multiple encodings).

    I try to use following line :

    ffmpeg -i background.m2v -vf "movie=a.m2v [a]; movie=b.m2v [b]; [in][a] overlay=0:366, [b] overlay=592:41" combined.m2v

    The error is now, that the overlay area (0,366) – (720,942) is not within the main area (0,0) – (720, 210). But if I use only one overlay file alone it works.

    The sizes of the videos :

    • background : 720x576
    • a.m2v : 72x48
    • b.m2v : 720x210

    In the result I want the a.m2v video in the top left corner (the logo) and the b.m2v as a lower third.