Recherche avancée

Médias (91)

Autres articles (112)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (14845)

  • FFmpeg : How to convert vertical video with black sides, to video 16:9, replacing the black sides with an image

    15 juin 2016, par John Dakota

    The question is similar to this question, only that instead of replacing the black sides with a blurred image, how can I use a specific image ?

  • lavfi/selectivecolor : fix picking black as neutral when alpha is present

    24 juillet 2016, par Clément Bœsch
    lavfi/selectivecolor : fix picking black as neutral when alpha is present
    
    • [DH] libavfilter/vf_selectivecolor.c
  • FFMPEG : Add black frames at start and end of video

    7 novembre 2014, par user3729198

    Im trying to add 10 second of black frames to the beginning of my clip and 30 seconds of black frames at end of clip. This is what I got so far.


    ffmpeg -i XX.mp4 -vf "
    color=c=black:s=720x576:d=10 [pre] ;
    color=c=black:s=720x576:d=30 [post] ;
    [pre] [in] [post] concat=n=3" -an -vcodec mpeg2video -pix_fmt yuv422p -s 720v576 -aspect 16:9 -r 25 -minrate 30000k -maxrate 30000k -b 30000k output.mpg

    It works in some cases. But Only on specific material with right "SAR" values. But most of the time I get this error.


    Input link in1:v0 parameters (size 720x576, SAR 35:24) do not match the corresponding output link in0:v0 parameters (720x576, SAR 1:1)
    [Parsed_concat_2 @ 0x7f9853d048c0] Failed to configure output pad on Parsed_concat_2

    Is there a way to complement my code or another way to do this ?