
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 (54)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
L’utiliser, en parler, le critiquer
10 avril 2011La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
Une liste de discussion est disponible pour tout échange entre utilisateurs. -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (10864)
-
avcodec/mpeg12enc : Don't initialize unused parts of RLTable
22 octobre 2022, par Andreas Rheinhardtavcodec/mpeg12enc : Don't initialize unused parts of RLTable
ff_rl_init() initializes RLTable.(max_level|max_run|index_run) ;
max_run is unused by the MPEG-1/2 encoders (as well as SpeedHQ).
Furthermore, it initializes these things twice (for two passes),
but the second half of this is never used.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
avcodec/speedhqenc : Don't initialize unused parts of RLTable
22 octobre 2022, par Andreas Rheinhardtavcodec/speedhqenc : Don't initialize unused parts of RLTable
ff_rl_init() initializes RLTable.(max_level|max_run|index_run) ;
max_run is unused by the SpeedHQ encoder (as well as MPEG-1/2).
Furthermore, it initializes these things twice (for two passes),
but the second half of this is never used.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
fluent ffmpeg => how to trim and concate parts of video into one output file without writing many output files. Make a most efficient solution
30 avril 2024, par Shreyansh GuptaI'm currently working on a online video website and i need to make a quick preview of videos using random timestamps and duration of the video.


Suppose the video is of 15 min then i want to cut out some parts like ->


1. from 00:00:40 take out next 2s 
2. from 00:01:20 take out next 2s 
3. ... and so on until the new video becomes 15s



How can i do this with fluent-ffmpeg in the nodejs project


Can i get the most efficient way of doing this without writing many output files and then concating them separately and removing then later


Only concating the trimmed videos in one output file and save when it is done.


I also came through a solution that uses complex filters but i don't know how to use it


ffmpeg("video.mp4")
 .complexFilter([
 ....// some filters here

 ])
 .on('end', function () {
 console.log('files have been merged and saved.')
 })
 .on('error',function (err){
 console.log(err)
 }
 .saveToFile("output.mp4")```