Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (99)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • 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

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

Sur d’autres sites (8239)

  • how to set effect on video in android programmatically ?

    12 mai 2016, par Mayank Sugandhi

    I have video which is save in sdcard, now i want to apply the effect like black and white and etc. it’s functionality like editing in video which is already in photo editor or video editor applications.

    now i want to that functionality in android programmatically ? when user choose black and white color in option then it should be response very quickly and change the effect of our video and save it sdcard.

    i have find some solution for this like,

    https://github.com/krazykira/VidEffects

    but it has not save functionality of video and if i go through in
    "FFMPEG" library then it is not responding very quickly ?

    how can i change the effect of video and save this video in sdcard ?

    Thank You

  • FFmpeg Drawtext Fade Out Performance

    16 août 2021, par Ben Boyle

    I am developing an application that makes system calls to FFmpeg.

    


    I found a way to get the drawtext filter isolated and fade out, but the render time increased about 5x.

    


    I just want to see if there is something obviously wrong with the command I came up with.

    


    ffmpeg -y -i input.mp4 -c:v libx264 -filter_complex "[0]scale=1920:1080,format=rgba, split[base][text];[text]drawtext=fontfile=font1.ttf:text='Text1':fontcolor= 'white':fontsize=34:box=1:boxcolor=mediumpurple:boxborderw=50:x=0:y=690,format=yuva444p,drawtext=fontfile=./resources/fonts/font2.ttf:text='Text2':fontcolor='white':fontsize=26:x=0:y=725,fade=t=out:st=12:d=0.2:alpha=1[title];[base][title]overlay" -force_key_frames "expr:gte(t,n_forced*0.05)" output.mp4


    


  • FFMPEG Encoding to prores 4444 with alpha doesn't retain original alpha [closed]

    19 mai 2023, par Nick Weeden

    I'm trying to convert an rgba png to prores 4444 with an alpha. When I run the following command it will create prores file with an alpha. But, the alpha is full white, it doesn't retain the values I put in.

    


    ffmpeg -start_number 1001 -r 24.000 - "pngWithAlpha_%06d.png" -c:v prores_ks -profile:v 4 -alpha_bits 16 -y "proresWithAlpha.mov"


    


    I've tried this with both FFMPEG 4.2.2 and 6.0.0 on a linux system, I'm not sure if I'm doing it wrong or if it is a bug.

    


    Looking at this post it seems it should be possible (they're complaining about quality not a fully missing transfer of the alpha).

    


    I would expect it to pass the alpha straight through but it doesn't. I used alpha_extract to copy the alpha in to the rgb to confirm I'm able to read the alpha from the png, which worked. But the alpha was still full white.