
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (53)
-
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 (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (6823)
-
ffmpeg - on end function probably not working correctly ?
19 janvier 2020, par Jul Podgot this code to loop through some .mp4 files and create a screenshot of them :
files.forEach(file => {
console.log(file);
if(!fs.existsSync('img/' + file.replace('.mp4', '.png'))) {
ffmpeg({ source: 'movies/' + file})
.takeScreenshots({ timemarks: [ '50' ], size: '150x100' }, 'img/', function(err, filenames) {
})
.on('end', function() {
fs.rename('img/tn.png', 'img/' + file.replace('.mp4', '.png'), function(err) {if (err) console.log('Error: ' + err) });
sleep(1000);
})
}
});Now i got the problem that it seems like that .on(end) is sometimes not working, Error :
ENOENT : no such file or directory, renamei think it´s because the process of saving the tn.png is slower than the renaming...
-
FFmpeg memory leak in fragmented MP4
2 mai 2018, par Daniel Ben-HodaWhen using the FFmpeg console for saving an RTSP stream to a fragmented MP4 file I noticed there is a small memory leak.
It leaks approx 3-4 MB per hour (when each frame is a fragment and 30 fps).The following command was used :
ffmpeg.exe -i rtsp://10.50.1.16/media/video3 -vcodec copy -an -f mp4 -frag_duration 1000 -movflags empty_moov+default_base_moof+omit_tfhd_offset -loglevel quiet "c:\MemoryLeakTest.mp4"
you can see here a perfmon set over 5 days
This leak seems to be linear in time and related to the number of fragments written to the file.
It was also reproducible also with the FFmpeg libraries.
Has anyone encountered something like this ?
-
FFmpeg memory leak in fragmented MP4
20 avril 2017, par Daniel Ben-HodaWhen using the FFmpeg console for saving an RTSP stream to a fragmented MP4 file I noticed there is a small memory leak.
It leaks approx 3-4 MB per hour (when each frame is a fragment and 30 fps).The following command was used :
ffmpeg.exe -i rtsp://10.50.1.16/media/video3 -vcodec copy -an -f mp4 -frag_duration 1000 -movflags empty_moov+default_base_moof+omit_tfhd_offset -loglevel quiet "c:\MemoryLeakTest.mp4"
you can see here a perfmon set over 5 days
This leak seems to be linear in time and related to the number of fragments written to the file.
It was also reproducible also with the FFmpeg libraries.
Has anyone encountered something like this ?