Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (61)

  • 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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

Sur d’autres sites (12348)

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

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

    


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