
Recherche avancée
Médias (2)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (26)
-
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)
Sur d’autres sites (8421)
-
Using FFMPEG in Java (developing on Mac)
1er mai 2012, par Luuk D. JansenI am trying to evoke FFMPEG directly in my Java code (running under the Playframework !).
The final product will run on a Linux/Debian distro, but I first need to test on my Mac (I don't know if it works on Debian yet).I try to execute the simple code :
Process pr = Runtime.getRuntime().exec(new String[]{"bash","-c", "ffmpeg"});
or simpler :
Process pr = Runtime.getRuntime().exec("ffmpeg")
or using ProcessBuilder :
Process pr = new ProcessBuilder("/opt/local/bin/ffmpeg").start();
What I get is an error code 133, but I cannot find what this means.
In the terminal the command gives the normal output. I can also replace 'ffmpeg' with e.g. 'ls -la' and get the directory listing. But I don't know what the problem is that ffmpeg does not work.Anybody any clues ?
Thanks !UPDATE :
I looked at the error stream. These are the errors I get. How is it that it works in the terminal, but not in using Java ?14:43:19,619 DEBUG ~ FFMPEG: dyld: Library not loaded: /opt/local/lib/libogg.0.dylib
14:43:19,619 DEBUG ~ FFMPEG: Referenced from: /opt/local/bin/ffmpeg
14:43:19,619 DEBUG ~ FFMPEG: Reason: Incompatible library version: ffmpeg requires version 9.0.0 or later, but libogg.0.dylib provides version 6.0.0 -
Revision 644bd87e8e : In frame Q adjustment experiment. The idea here is to allow "in frame" adjustme
22 novembre 2013, par Paul WilkinsChanged Paths :
Modify /vp9/common/vp9_onyx.h
Modify /vp9/encoder/vp9_encodeframe.c
Modify /vp9/encoder/vp9_onyx_if.c
Modify /vp9/encoder/vp9_onyx_int.h
Modify /vp9/encoder/vp9_ratectrl.c
Modify /vpxenc.c
In frame Q adjustment experiment.The idea here is to allow "in frame" adjustment of the final Q
value used to encode each SB64, using segmentation.There is also adjustment of the rd mult in regions of overspend.
Activated using aq_mode=2
Change-Id : I2f140cd898c9f877c32cd6d2e667f5e11ada4b1c
-
FFmpeg X264 multithread decoding
16 novembre 2013, par Xin HeI want to do H264 multithread decoding using FFmpeg.
First I use X264 to encode yuv420 to file.x264
./x264 -o file.x264 —slices 4 —input-res 1280x720 —fps 25 file_560x420.yuvThe slices count is 4.
However, when I use FFmpeg to decode,
./ffmpeg -y -threads 4 -thread_type slice -i file.x264 final.yuvFFmpeg calls func"execute_decode_slices" four times, not in a multithread way.
I also found that in *execute_decode_slices(h, context_count)*, the context_count is 1.
FFmpeg call this 4 times.Could someone help to solve this problem ?
Thanks very much !