Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (58)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (9609)

  • Android FFMPEG for Green Background of a Video

    18 janvier 2019, par Sampath Kumar

    How to change the video background From android application using FFMPEG.

    I have tried below but no luck. I want to have plain color or image as background instead of default video background

    -i /storage/emulated/0/Android/data/files/1547626302112.mp4 -f gdigrab -framerate 25 -i title=MyWindow -filter_complex [1]split[m][a];[a]format=yuv444p,geq='if(gt(lum(X,Y),0),255,0)',hue=s=0[al];[m][al]alphamerge[ovr];[0][ovr]overlay=(main_w-overlay_w):main_h-overlay_h[v] -map [v] -c:v libx264 -r 25 /storage/emulated/0/Android/data/files/1547626302111.mp4
    -i /storage/emulated/0/Android/data/files/1547626302112.mp4 -vf colorkey=green /storage/emulated/0/Android/data/files/1547626302110.mp4
  • Making a green screen background in ffmpeg

    1er mai 2016, par Paul Tomblin

    I’m trying to make a green screen background that I can use to overlay other stuff on top of. I’m using information from this answer and using the following command :

    ffmpeg -f lavfi -i color=color=green -s 1920x1080 -t 3600 -r 60 small_green.mp4

    However, when I open it up in Quicktime, the inspector window seems to be saying that it’s actually 1440x1080 instead of 1920x1080.

    enter image description here

    And when I bring it into VLC, it seems to be saying that it’s 1920x1090
    enter image description here

    But ffprobe seems to be saying it’s 1920x1080 :

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'small_green.mp4':   Metadata:
       major_brand     : isom
       minor_version   : 512
       compatible_brands: isomiso2avc1mp41
       encoder         : Lavf56.36.100   Duration: 01:00:00.00, start: 0.000000, bitrate: 40 kb/s
       Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 1920x1080 [SAR 3:4 DAR 4:3], 34 kb/s, 60 fps, 60 tbr, 15360 tbn, 120 tbc (default)
       Metadata:
         handler_name    : VideoHandler

    And when I bring it into Garmin VIRB Edit, it reports that it’s 1440x1080. So how do I make ffmpeg spit out a video that really is HD 1920x1080 resolution ?

  • Why does my H.264 video have a green overlay after video filter is applied ?

    11 juin 2019, par d1che

    When executing the following code :

    



    ffmpeg -i input.mov -c:v libx264 -preset veryslow -pix_fmt yuv420p -filter_complex "drawtext=fontfile=font.ttf:fontcolor=white@1:fontsize=h/6:x=(w-text_w)/2:y=(h-text_h)/2:text='Henk de Vries'[watermark];[0][watermark]blend=all_mode=difference:all_opacity=1" output.mp4

    



    The output file has a green overlay. When using other blend modes, results vary with some modes displaying correct colors and others green and pink.

    



    I know that the input file has yuv420p colorspacing. I think the blend filter only supports rgba modes but I am not sure.

    



    How can I avoid the green overlay and get the original colors ? (e.i. what the original input video looks like)