
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (64)
-
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 ) (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (12784)
-
Revision c4d1ab573a : Removing memset calls inside idct/iht functions. Making appropriate memset insi
2 octobre 2013, par Dmitry KovalevChanged Paths :
Modify /vp9/decoder/vp9_decodframe.c
Modify /vp9/decoder/vp9_idct_blk.c
Removing memset calls inside idct/iht functions.Making appropriate memset inside decode_block now.
Change-Id : I8e944194668c830de08271c8fb6e413251c201d8
-
Making use of -w option in pyinstaller does not start/create the subprocess in python
15 novembre 2018, par UserI am making use of python to invoke ffmpeg to start and stop video capturing. I do not want to the console window appear when my python exe starts. The code I have currently to start and stop video recording is below,
cmd = '\\ffmpeg\\bin\\ffmpeg.exe -loglevel quiet -f gdigrab -framerate 30 -i desktop -vcodec libx264 -pix_fmt yuv420p -preset slow -crf 0 -threads 0 ' + '"' + final_file_for_video_processing + '"'
def stop_screen_recording():
sub_process.stdin.write("q".encode())
stdOutput, stdError = sub_process.communicate()
def stop_screen_recording(cmd):
startupinfo = subprocess.STARTUPINFO()
startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW
global sub_process
sub_process = subprocess.Popen(cmd, startupinfo=startupinfo,
stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=None)
sub_process.wait()The challenge faced is, when I build the exe using
pyinstaller -w —onefile python_file_name.py the recording does not begin. Note : The -w is to not show the console window.If I were to make use of pyinstaller and build the exe in the following way,
pyinstaller —onefile python_file_name.py then recording of the video begins.
Note : Without the -w command it works perfectly fine.I want to make use of the -w command since I do not want to show the console window of my python exe. Any insights will help.
-
Android : What should I use when making a native video player ?
16 juillet 2012, par jtamCurrently I am doing research for a native video player project, initialy I tried to use ffmpeg as the decoder and return the Byte to java, then I use View::onDraw with Canvas to display frames. Unfortunately, the performance of this method is not good, so I am wondering whether there is anything else that I could use to display frames other then passing to java ?
Also, other than display the frames, how can I play sound using C/C++ with NDK ?
Thanks.