
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (45)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...)
Sur d’autres sites (5378)
-
How To Add Background In JPG, GIF Using FFMPEG In PHP ?
28 septembre 2019, par Muhammad AsifI’m working on a video site project. I have code for generating a Gif from a video but I want to create thumbnails like Youtube has. Here is an example of a Youtube still image : https://i.ytimg.com/vi/IcSb8XcSCWQ/0.jpg Size : 480x360
Here is my code for animated Gif generating from Video.Mp4
$ffmpeg = "libraries\\ffmpeg";
$InputvideoFile = $_FILES ["files"]["tmp_name"];
$Getgif_From_duration = 3.0;
$Duration_of_gif = 2.5;
$filter = "\"[0:v] fps=12,scale=480:360,split [a][b];[a] palettegen [p];[b][p] paletteuse\"";
$outimageFileG = "".$video_id.".gif";
$background = "bg_480x360.png";
$cmd = "$ffmpeg -ss $Getgif_From_duration -t $Duration_of_gif -i $InputvideoFile -i $background -filter_complex $filter $outimageFileG";
shell_exec($cmd);Working fine for generating good quality Gif but I want to add background under the Gif. How to do that ? I want same size (480x360) for every gif of still image.
-
ffmpeg running as a background task [duplicate]
18 mars 2021, par Colby QuinnI am trying to get ffmpeg to run as a background task in linux, I have been trying to do it like this


ffmpeg -i input.mkv -loglevel panic output.mp4 &



But whenever I run the program it halts in the beginning until I put it as a foreground task
fg $1
and then I can leave the task and it runs in the background just fine, how can I make it run from the beginning as a background task without having to put it as a foreground task temporarily ?
I have also tried this and it didn't work

ffmpeg -i input.mkv -loglevel panic output.mp4 2> /dev/null &



-
Python remove and change video background [closed]
21 juillet 2022, par Billi AltI have a video with a human in the foreground and a white wall in the background. I would like to remove the white wall and to add several background videos. So one video would be from second 0-5 the next from 5-20 and so on. And the end video should still have the initial audio. Do you have any idea how to do that in python ?