
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (111)
-
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 (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...)
Sur d’autres sites (11725)
-
Quality problem when converting JPEG to GIF using FFmpeg
25 octobre 2018, par yymsI created a GIF using FFmpeg as shown below.
However, there is a problem with GIF quality. As you can see in the attachment, there are square particles on the GIF surface. I want to improve this.- Is it possible to solve this problem with the FFmpeg default option without using the palette option ?
Can I erase the repeating rectangle pattern shown in the GIF ?
- "-f", "image2", "-i", "load_path", "-vf", "scale=720x450", "-y", "save_path"
<img src="local/cache-vignettes/L300xH180/I2Stygif-c60c60e-d4d96.png?1541836614" width='300' height='180' />
-
How can I make a slideshow of images into a video with each image having a specific length of frames to be shown ?
24 novembre 2013, par jettRight now I am using something like this to create a video from a selection of images :
avconv -i input%05d.png -r 24 -vsync cfr -c:v libx264 output.mp4
But I want each picture to have a separate amount of time spent on it, so if I have 5 images I might want :
[10frames, 40frames, 5frames, 80frames, 10frames]
To be specified. The only thing I could find that may be a solution is to create five separate videos- set the length then merge them together, is this my only choice here ?
-
Creating a GIF with fluent-ffmpeg, overlay is not shown ?
5 mars 2021, par blablubla12I'm trying to create a GIF from an mp4 video, with an overlay on it. So there are two inputs,
video.mp4
andoverlay.png
, both of them are https urls.

The gif is created, ffmpeg shows no errors but the overlay doesn't appear in the gif. The code :


ffmpeg()
 .withOptions([
 '-i video.mp4'
 `-ss 1`,
 `-i overlay.png`,
 '-f gif',
 `-filter_complex [0:v]trim=duration=3,setpts=PTS-STARTPTS,scale=450:-1[trimmed];[trimmed]split[trimmed1][trimmed2];[trimmed2]reverse[rev];[trimmed1][rev]concat=n=2:v=1:a=0[v];[v][1:v]overlay=0:0:format=rgb[overlayed];[overlayed]split[a][b];[a]palettegen=stats_mode=diff[palette];[b][palette]paletteuse=bayer:bayer_scale=3.5`
 ])
 .on('start', cmdLine => {
 console.log(`Started FFMpeg`, cmdLine);
 })
 .on('end', () => {
 console.log(`Success!.`);
 resolve();
 })
 .on('error', (err: Error, stdout, stderr) => {
 console.log(` Error:`, err.message);
 console.error('stdout:', stdout);
 console.error('stderr:', stderr);
 reject();
 })
 .pipe(destinationStream, { end: true });



Note : I have to use a stream, instead of saving to file.