
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (99)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
L’agrémenter visuellement
10 avril 2011MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.
Sur d’autres sites (12957)
-
How to combine multiple images horizontally and vertically using ffmpeg [duplicate]
7 février 2020, par user3625087I’m attempting to create a script that can stitch together images side by side. These images are basically letters that I want to create words with (think of those ransom letters in Hollywood movies with randomly cut out letters from magazines). I need to specifically use these images, so I don’t want ffmpeg to type out some words into images itself. I’ve seen some similar answers using
hstack
andtile
filter complexes but those didn’t work for me. Here is what I’ve tried so far :ffmpeg -pattern_type glob -i h.png -i e.png -i l.png -i l.png -i o.png -filter_complex tile=5x1 test.png
For this one, -pattern_type didn’t exist as an option (I’m using ffmpeg 4.2 on Windows), so I removed it and the result was 1 letter and black space for the rest.
ffmpeg -y -i h.png -i e.png -i l.png -i l.png -i o.png -filter_complex hstack test.png
For this one, the result was 2 letters side by side, and then black space for the rest.
All of my images are of the same height and variable width. Is there a command that can achieve this ?
-
Using ffmpeg to extract images
21 septembre 2014, par Yalamanchili HariI am new to use ffmpeg.I am trying to extract images from video at particular possession but failing. could any one help me in solving this problem.
it is compiling with out any exceptions. Insted of video = "web url" if i am using video = "D :\movies\The Wow.mp4" ;it is giving frame.jpeg which is blank.insted of frame i need.
my c# code is :protected void Button1_Click(object sender, EventArgs e)
{
// preview frame
Process ffmpeg; // creating process
string video;
string thumb;
//video = Page.MapPath("first.3gp"); // setting video input name with path
video = "http://www.w3schools.com/html/mov_bbb.mp4/";
thumb = "C:\\Users\\Public\\Videos\\Sample Videos\\" + "\\frame.jpg"; // thumb name with path !
ffmpeg = new Process();
ffmpeg.StartInfo.Arguments = " -i \"" + video + "\" -s 480*360 -vframes 1 -f image2 -vcodec mjpeg \"" + thumb + "\""; // arguments !
ffmpeg.StartInfo.FileName = "C:\\ffmpeg\\bin\\ffmpeg.exe";
ffmpeg.Start(); // start !
}I cant find any frame.jpg file in output path..
-
ffmpeg transparent HVEC video from alpha matte and color video
16 janvier 2023, par JamesI have an alpha.mp4 (alpha matte video) and a color.mp4 (color video). How do I use ffmpeg to make a transparent HVEC (.mov) video ?


I can combine with ffmpeg to make a .webm file following the instruction here :
https://www.unscreen.com/api under "Convert unpacked Pro Bundle to WEBM video with transparency"


I have a newer mac and should be able to use HVEC_videotoolbox from either these 2 videos or the .webm file created.


The closest I found was this which seems to generate a corrupt video that cannot be viewed in safari. Use FFmpeg to generate a movie with alpha channel from separate video and fill movies ? but