
Recherche avancée
Médias (3)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (80)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
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 (...) -
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 ;
Sur d’autres sites (8144)
-
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.
-
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.
-
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