
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (76)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (11403)
-
ffmpeg first key frame pts negative
16 juin 2020, par KeithFirst start the following rtsp sink :



ffprobe -loglevel error -skip_frame nokey -select_streams v:0 -show_entries frame=pkt_pts_time -of csv=print_section=0 -rtsp_transport tcp -rtsp_flags listen -i rtsp://localhost:1554




Then in another window, start the rtsp source :



ffmpeg -hide_banner -f lavfi -i color -f rtsp rtsp://localhost:1554




Result :



-0.005000
0.475000






How do I get the first key frame to start at 0 ? Isn't that what it should be ?





I have tried things like



-copyts -start_at_zero
 setpts=PTS-STARTPTS
 -avoid_negative_ts make_zero




This sink :



ffprobe -loglevel error -show_streams -rtsp_transport tcp -rtsp_flags listen -i rtsp://localhost:1554




displays :
 start_pts=-540

 start_time=-0.006000

-
Negative or 0 second duration
3 mars 2023, par NifI recently came across plenty of weird videos with negative durations


firstly 0 seconds :
https://cdn.discordapp.com/attachments/397056507243528203/739081902278836234/short_video.webm


And negative duration :
https://cdn.discordapp.com/attachments/397056507243528203/739081962211377152/CorruptFile.webm


I tought it was a trick with webms but there also is a mp4 :
https://cdn.discordapp.com/attachments/397056507243528203/739081981643718687/video0-21.mp4


I would love to know how I can make videos like these


-
ffmpeg crop with negative offset
12 août 2020, par AjouveI have a nodejs application which is cropping videos using ffmpeg


From time to time I have an error because I am trying to crop out of the video, see attached image where the black is the video and in red the crop zone. My final video has to be a square.




If I am replacing the negative offset with 0 the final result will not be a square.


I just need to add a black background on the non-existing part


This is my actual code


const cropVideo = (buffer, width, height, x, y) => {

 const inputFile = tmp.fileSync();
 const outputFile = tmp.fileSync();

 fs.writeFileSync(inputFile.name, buffer);

 return new Promise((resolve, reject) => {
 ffmpeg(inputFile.name)
 .videoFilters(`crop=${width}:${height}:${x}:${y}`)
 .format('mp4')
 .on('error', reject)
 .on('end', () => resolve(fs.readFileSync(outputFile.name)))
 .save(outputFile.name);
 })
}