
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (106)
-
Soumettre bugs et patchs
10 avril 2011Un logiciel n’est malheureusement jamais parfait...
Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
Si vous pensez avoir résolu vous même le bug (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (8005)
-
Running ffmpeg silently on NodeJS (Windows)
5 janvier 2021, par Paulo BertottiI'm trying to run FFMPEG as a child process on NodeJS to extract a snapshot of an mp4 video on Windows. But even spawning the process with the "silent" option, it stills opening the command prompt for a short period. Any idea of what might be happening ?


The code looks something like this :


const snapshot = spawn(
 "ffmpeg",
 [
 "-ss",
 "00:00:07",
 "-i",
 `${this.directory}\\${file.name}`,
 "-vframes",
 "1",
 "-q:v",
 "2",
 `${this.directory}\\channel${this.channelNum}_snapshot.png`,
 ],
 { silent: true }
 );



-
fluent-ffmpeg processing is very slow in Cloud Run
18 août 2021, par Nazarii KahaniakI am trying to merge multiple short videos in the container in Cloud Run using the node.js fluent-ffmpeg package. It takes 20 seconds max to merge videos locally. When I am making a request to clour run to merge the videos it processes them very slowly and after 30 minutes just stops (I assume that's because 1800 seconds timeout is set).
I tried to allocate to 2 CPUs with 8GB each but that didn't help. Within 30 minutes the video is processed by about 30 % as I can see in the cloud run logs.
Any feedback is appreciated !


-
How to use concat-demuxer in ffmpeg-python ?
21 août 2024, par user12355248I want to merge 2 or more videos in short time.


I think that concat-demuxer is best, but it need TXT file.


In python, is it possible to use ffmpeg concat-demuxer without TXT file ?