
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 (21)
-
Liste des distributions compatibles
26 avril 2011, parLe tableau ci-dessous correspond à la liste des distributions Linux compatible avec le script d’installation automatique de MediaSPIP. Nom de la distributionNom de la versionNuméro de version Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
Si vous souhaitez nous aider à améliorer cette liste, vous pouvez nous fournir un accès à une machine dont la distribution n’est pas citée ci-dessus ou nous envoyer le (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
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 (4967)
-
dict.c : empty dictionaries should be a NULL pointer.
29 juillet 2014, par Reimar Döffinger -
ffmpeg-python : mp3 + jpg = mp4
15 janvier 2020, par MartinI’m trying to make a python program using ffmpeg-python that will combine an audio file and image into a music video mp4 file. I’ve done this in a working ffmpeg bash command before, but now I’m trying to do it in a pure python3 program, I’ve ran some of the example ffmpeg python applications to ensure it works, but haven’t found any examples related to my case. So far I have this :
import ffmpeg
print('test')
audioInput = ffmpeg.input('fighter.mp3')
imageInput = ffmpeg.input('front.jpg')
(
ffmpeg
.filter([audioInput, imageInput], 'overlay', 10, 10)
.output('out.mp4')
.run()
)But that just leads to an error saying
Stream specifier '' in filtergraph description [0][1]overlay=10:10[s0] matches no streams.
. Can anyone with experience using this ffmpeg-python library help ? -
avcodec/proresdec : Don't use LONG_BITSTREAM_READER
23 février, par Andreas Rheinhardtavcodec/proresdec : Don't use LONG_BITSTREAM_READER
Using LONG_BITSTREAM_READER means that every get_bits() call
uses an AV_RB64() to ensure that cache always contains 32 valid bits
(as opposed to the ordinary 25 guaranteed by reading 32 bits) ;
yet this is unnecessary when unpacking alpha. So only use these
64bit reads where necessary.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>