Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (75)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • 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

Sur d’autres sites (11399)

  • Can I reduce two ffmpeg commands to one ?

    23 mai 2022, par plztrial4me

    I want to find black at the bottom of the video and take that frame as an origianl full size image.

    


    Currently, it is done with two commands.

    


    1. ffmpeg -i input.mp4 -an -filter_complex "crop=y=in_h/2:h=in_h/2,blackdetect=d=0.03:pic_th=0.99" -f null null
// output
// [blackdetect @ 00000253dd5d4880] black_start:40.5405 black_end:40.5739 black_duration:0.0333667

2. ffmpeg -ss 40.5405 -i input.mp4 -vframes 1 -vsync vfr img.png


    


    If black is found in multiple frames at 1st command, I repeat 2nd command many times.

    


    Can I reduce two commands to one ?

    


  • FFMPEG creating video which have blinking opacity overlay

    13 juillet 2020, par Nikhil Solanki

    I am creating video which has an overlay of black color which is continuously changing opacity from 0.0 to 1.0(which means blinking). So, I am setting color as input and set it with blend=all_mode='overlay':all_opacity=0.5 full command :

    


    ffmpeg -i combine2.mp4 -loop 1 -i image1.png -i song.mp3 -f lavfi -i "color=black:s=540x960" -t 20 -filter_complex "[0]split=2[color][alpha]; [color]crop=iw/2:ih:0:0[color]; 
[alpha]crop=iw/2:ih:iw/2:ih[alpha]; [color][alpha]alphamerge[v1];
[1]scale=540:960, setsar=1[v2];
[3]scale=540:960, format=yuv420p, loop=-1:size=2048, fade=t=out:st=1:d=1[b];
[v2][b]blend=all_mode='overlay':all_opacity=0.5[out];
[2]showfreqs=s=540x50:mode=line:ascale=log:colors=red:win_size=540[v3];
[out][v3] overlay=main_w-overlay_w:main_h-overlay_h-10, trim=0:20[v4];
[v4][v1] overlay=1" output_video2.mp4 -y


    


    Using this command I am trying looping opacity but, its not work. Also fade=t=out is useless here ! So, what to do for blinking the layer black with opacity ?

    


  • FFMPEG : How do I set the transparency color of an animated GIF for overlaying on a video ?

    8 novembre 2017, par Jonathan Leger

    I have a video clip that I’ve converted to an animated GIF with ffmpeg. I would like to overlay that animated GIF onto a video clip. The problem is I can’t figure out how to set the transparency color of the GIF. I want the solid black background of the GIF to be transparent.

    ffmpeg -i video.mp4 output.gif

    That’s what I’m doing to created the animated GIF. Again, looks great. I just need to add black (#000000) as the transparent color of the GIF.

    Thanks !