
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (72)
-
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 -
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (10910)
-
avfilter : add ’.’ at and of long filter description where it is missing
25 novembre 2015, par Paul B Maholavfilter : add ’.’ at and of long filter description where it is missing
Signed-off-by : Paul B Mahol <onemda@gmail.com>
- [DH] libavfilter/af_asyncts.c
- [DH] libavfilter/f_realtime.c
- [DH] libavfilter/vf_codecview.c
- [DH] libavfilter/vf_cover_rect.c
- [DH] libavfilter/vf_fftfilt.c
- [DH] libavfilter/vf_find_rect.c
- [DH] libavfilter/vf_neighbor.c
- [DH] libavfilter/vf_showpalette.c
- [DH] libavfilter/vf_shuffleframes.c
- [DH] libavfilter/vf_shuffleplanes.c
-
Pause/resume ffmpeg transcoding process
27 janvier 2014, par XXXIn my Android application I use Ffmpeg library written in C++. I use ffmpeg command
ffmpeg -y -i in.mp4 -s 320x240 -c:a copy out.mp4
to reduce the size of media files on Android. Everything works well. But if the file is too large, then the smartphone's battery heats up. And I have a question : is it possible to stop a ffmpeg process, and then continue it later on ? When I am converting a large file, I would like to be able to start from where I left off. Or is there any way to avoid heating the battery. May be this way : cut the file into pieces, reduce each separately and paste together ?UPDATE
I found this Pause any process you want in Linux. So I decided to try to apply it on Android.
public static void pause()
{
try
{
Process sh = Runtime.getRuntime().exec("su", null,null);
OutputStream os = sh.getOutputStream();
os.write(("sudo -kill -STOP (pidof Thread-10)").getBytes("ASCII"));
Log.e("!!", "process stopped!");
os.flush();
os.close();
sh.waitFor();
}
catch(Throwable t){t.printStackTrace();}
}But the process doesn't stop.
Thread-10
it's the name of ffmpeg transcoding process. Whats wrong ? -
Possible to apply renice on a single process in fluent-ffmpeg ?
12 novembre 2015, par pkeuterIn the readme of fluent-ffmpeg I see it’s possible to renice ffmpeg. Since I am using multiple instances, I was wondering if it’s possible to renice a single instance of ffmpeg, using fluent ffmpeg.
renice([niceness=0]) : change ffmpeg process priority
This method alters the niceness (priority) value of any running ffmpeg
process (if any) and any process spawned in the future. The niceness
parameter may range from -20 (highest priority) to 20 (lowest
priority) and defaults to 0 (which is the default process niceness on
most *nix systems).Does anybody have an idea on how to do this ?