
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (70)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (10016)
-
lavc/vorbisdsp : RISC-V V inverse_coupling
26 septembre 2022, par Rémi Denis-Courmontlavc/vorbisdsp : RISC-V V inverse_coupling
This uses the following vectorisation :
for (i = 0 ; i < blocksize ; i++)
ang[i] = mag[i] - copysignf(fmaxf(ang[i], 0.f), mag[i]) ;
mag[i] = mag[i] - copysignf(fminf(ang[i], 0.f), mag[i]) ;
-
ffmpeg setting chapters by framecount instead of milliseconds ?
28 septembre 2022, par BabaGI've just gone through a process of adding chapters to a file using ffmpeg. Works great but, the way I found to do it required converting the marker placements to milliseconds from the original timecode. Since my editing software will display my files with framecounts, it occurred to me that it might be possible to save some conversion effort by telling ffmpeg where to place the chapter markers using these framecounts.


Here's an example of a chapter marker I placed :


[CHAPTER]
TIMEBASE=1/1000
START=7000
END=291199
title=Chapter marker



I see that the TIMEBASE is set to 1/1000. That means that the START time for this chapter is 7 seconds (210 frames). To what extent will ffmpeg accept a formula as its TIMEBASE ? Can I put in something like :


[CHAPTER]
TIMEBASE=1/30
START=210
END=8736
title=Chapter marker



or


[CHAPTER]
TIMEBASE=100/2997
START=210
END=8736
title=Chapter marker



thanks.


-
avcodec/flvdec, intelh263dec : Remove redundant assignments
28 octobre 2022, par Andreas Rheinhardt