
Recherche avancée
Médias (5)
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
Autres articles (101)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (11014)
-
Feed raw data to ffmpeg from python
27 octobre 2020, par eriI want to wrap h264 stream to mp4 container on fly. But ffmpeg exits after first buffer


ffmpeg = subprocess.Popen("ffmpeg -f h264 -i pipe: -c copy -f mp4 -movflags frag_keyframe+empty_moov+faststart pipe:".split(), stdout=subprocess.PIPE, stdin=subprocess.PIPE)

fd = ffmpeg.stdout.fileno()
fl = fcntl.fcntl(fd, fcntl.F_GETFL)
fcntl.fcntl(fd, fcntl.F_SETFL, fl | os.O_NONBLOCK)

while True:
 data = infile.read(32768)
 ffmpeg.stdin.write(data)
 data = ffmpeg.stdout.read()
 outfile.write(data)



-
Revision cc6dc0b7d9 : Nextgen branch cleanup : remove nonrd code Code cleanup. Change-Id : I4d8d7fa2fc
6 juillet 2015, par Yunqing WangChanged Paths :
Modify /vp9/encoder/vp9_aq_cyclicrefresh.c
Modify /vp9/encoder/vp9_encodeframe.c
Modify /vp9/encoder/vp9_encoder.c
Delete /vp9/encoder/vp9_pickmode.c
Delete /vp9/encoder/vp9_pickmode.h
Modify /vp9/encoder/vp9_ratectrl.c
Modify /vp9/encoder/vp9_rd.c
Modify /vp9/encoder/vp9_speed_features.c
Modify /vp9/encoder/vp9_speed_features.h
Modify /vp9/vp9cx.mk
Nextgen branch cleanup : remove nonrd codeCode cleanup.
Change-Id : I4d8d7fa2fc61a58b819c9a18bf25cda53e3fd88c
-
Revision dbf4942046 : Experimental removal of over quant code The over quant code was added in VP8 po
21 février 2013, par Paul WilkinsChanged Paths : Modify /vp9/encoder/vp9_onyx_if.c Modify /vp9/encoder/vp9_onyx_int.h Modify /vp9/encoder/vp9_quantize.c Modify /vp9/encoder/vp9_ratectrl.c Modify /vp9/encoder/vp9_rdopt.c Experimental removal of over quant code The over quant code was added in VP8 post bitstream freeze to (...)