
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (61)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...) -
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)
Sur d’autres sites (5562)
-
Imagemagick convert -fill does not change edges from a particular palette area
30 décembre 2017, par Amit PatilWhen I am trying to remove
Green (#09f80c)
color from this image using below commandmagick convert images/img001.png - fill transparent -opaque #09f80c images/tp.png
I am getting below image :
This image I get as an output for above command. This image still has some green dots at the edges. How to remove them completely ?
I want converted image not to have those extra pixels.
Your help would be highly appreciated.
-
libdc1394 : Fill in packet data directly
13 juillet 2016, par Vittorio Giovara -
ffmpeg combine images with audio and fill gaps with silence or last image (from ffconcat file..)
27 mai 2020, par inselmenschffmpeg -i image_list.ffconcat -i track.mp3 -y -b:a 256k -ar 48000 -ac 2 -vcodec libx264 -r 25 -filter:v scale=w=1920:h=1080 output.mp4




i'm currently trying to create videos out of an sequence of images and add an audio track to those images/this video.
everything seemed to work fine but now i figured out that the last picture will only be shown within my player since there is no new image for displaying.



my problem is now : i try to combine two of those videos but if there are some gaps (not enough images or not enough audio)... ffmpeg just ignores the gaps and lets start the second video immediately after finishing the first one ... even if the first track is still playing... which gets the audio off..



is there anybody who can might help me with it ? :-)



i think, what i need is :



- 

- if the audio track is longer than the image sequence i need to fill the gap with the last image
- if the image sequence is longer than the audio track i need to fill the remaining space with silence







or is there some kind of option which tells ffmpeg to only chain both videos after each other without ignoring the possible gaps ?



if found this one but that's just for the audio part i guess and i will try to implement that.



but how do i work around the missing images issue ?!