
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 (36)
-
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...) -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Déploiements possibles
31 janvier 2010, parDeux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
Version mono serveur
La version mono serveur consiste à n’utiliser qu’une (...)
Sur d’autres sites (7902)
-
Which value exactly tells the video stream bit rate in ffmpeg output ?
8 septembre 2011, par userffmpegI have a basic doubt. In the following ffmpeg output, which of the bit rate values (in bold) tells us the video bit rate ?
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'MVI_0135.MOV' :
Metadata :
major_brand : qt
minor_version : 537331968
compatible_brands : qt CAEP
creation_time : 2011-04-25 14:59:29
Duration : 00:00:33.03, start : 0.000000, bitrate : 20588 kb/s
Stream #0.0(eng) : Video : h264 (Constrained Baseline), yuvj420p, 1280x720, 19028 kb/s, 23.98 fps, 23.98 tbr, 24k tbn, 48k tbc
Metadata :
creation_time : 2011-04-25 14:59:29
Stream #0.1(eng) : Audio : pcm_s16le, 48000 Hz, 2 channels, s16, 1536 kb/s
Metadata :
creation_time : 2011-04-25 14:59:29Its a very basic question, but I would appreciate if anyone could tell me...
-
Which value exactly tells the video stream bit rate in ffmpeg output ?
24 octobre 2020, par userffmpegI have a basic doubt. In the following ffmpeg output, which of the bit rate values (in bold) tells us the video bit rate ?


Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'MVI_0135.MOV':
 Metadata:
 major_brand : qt
 minor_version : 537331968
 compatible_brands: qt CAEP
 creation_time : 2011-04-25 14:59:29
 Duration: 00:00:33.03, start: 0.000000, bitrate: **20588 kb/s**
 Stream #0.0(eng): Video: h264 (Constrained Baseline), yuvj420p, 1280x720, **19028 kb/s**, 23.98 fps, 23.98 tbr, 24k tbn, 48k tbc
 Metadata:
 creation_time : 2011-04-25 14:59:29
 Stream #0.1(eng): Audio: pcm_s16le, 48000 Hz, 2 channels, s16, 1536 kb/s
 Metadata:
 creation_time : 2011-04-25 14:59:29



Its a very basic question, but I would appreciate if anyone could tell me...


-
How do I stop FFMPEG-Python from continuing to run in the background after execution ? [closed]
3 juin 2023, par Alvar GómezI'm using the ffmpeg wrapper for python 'Ffmpeg-python'.


I'm doing a basic program that concatenate different short videos.


I process each video separately to later concatenate them all together. I do it to make sure all the videos have the same resolution and frame rate.


I'm using a basic tkinter interface to modify some parameters.


My problem is that, for any reason, after executing the different ffmpeg commands, some of them keep running in the background(doing nothing, not even using CPU) so I can't open some of the videos in case i want to check something. In the moment i close the python script, those processes dissapear.


This is my first post here, so i don't really know if this is the way I should do the posts. Thanks in advance.


End those ffmpeg processes that keep running in the background without having to close the python script.