Recherche avancée

Médias (91)

Autres articles (14)

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

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

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (4274)

  • Trying to flip a movie with ffmpeg hflip vplip fails

    7 août 2019, par S.T

    I am trying to flip a movie with
    hflip
    and
    vflip

    and it’s creating an empty movie in some of the movies i converted (some of them succeeded).

    i tried to convert all kind of movies and i don’t know if this is the reason but maybe it related if the movie is in landscape or portrait ?
    This is the command i use :

    ffmpeg -i INPUT -vf hflip -c:a copy OUTPUT

    expected to see the movie flipped as i wanted in my command.

    Thanks.

  • Changing the background color of the movie while using tpad and adelay

    1er août 2019, par S.T

    i want to change the background color of a movie while using tpad and adelay commands. it is now black ( until the movie starts).

    the command i tried listed below, and i don’t know how to change the color while the movie is in it’s delay ( probably something with the tpad that needs to be change).

    -filter_complex [0:v]scale=1920:1080,tpad=start_duration=5[v];
     [0:a]adelay=5s|s[a] -map [v] -map [a] -b 6000k

    the 5 seconds that the movie is in its "waiting mode" needs to be changed from default black to some other color. Thanks.

  • Need to create a movie size 720 :-1 with a delay in it's 2 first seconds

    21 août 2020, par S.T

    I want to use the scale filter and also add a delay in the first X seconds of a movie.

    



    I tried to use this command :

    



    ffmpeg -i new1.mp4 -filter_complex 
"scale=720:-1[scale];tpad=start_duration=2;adelay=2s|2s" -map "[scale]" 
scaled720.mp4


    



    What I want is a video with a specific size (720 :-1 - aspect ratio) that will also have a delay in the first 2 seconds.