Recherche avancée

Médias (91)

Autres articles (111)

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

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (4964)

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

  • Playing videos one after another

    29 septembre 2023, par AAB

    I can play the videos in grid one by one, but I want to get the playing video become bigger in size in the grid when playing, is it achievable via ffmpeg ?