
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (17)
-
Création définitive du canal
12 mars 2010, parLorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
A la validation, vous recevez un email vous invitant donc à créer votre canal.
Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)
Sur d’autres sites (3651)
-
Revision 195061feda : Fix rectangular partition check in speed 1 Make encoder skip rectangular partit
30 septembre 2013, par Jingning HanChanged Paths :
Modify /vp9/encoder/vp9_encodeframe.c
Fix rectangular partition check in speed 1Make encoder skip rectangular partition check in speed 1 and above,
when early termination was triggered in partition split.
Thanks Guillaume (gmartres@) for catching this issue.This change makes bus_cif at 2000kbps speed 1 runtime goes down from
25612ms to 23438ms (about 9% speed-up), at the expense of -0.235%
performance down.Change-Id : I98613fad081a261d30d5fa206f934ca70601c180
-
how to speed up video and add watermark using ffmpeg
30 octobre 2017, par 1234567How can we speed up video and add watermark using ffmpeg
for speed up video we have this command
ffmpeg -i input.mp4 -filter_complex "[0:v]setpts=0.5*PTS[v];[0:a]atempo=2.0[a]" -map "[v]" -map "[a]" output.mp4
for water mark we use
"-y", "-i", j, "-i", image1, "-i", image2, "-i", image3, "-filter_complex",
"[0:v][1:v] overlay=0:0:enable='between(t,1,2)'[tmp];" +
"[tmp][2:v] overlay=0:0:enable='between(t,5,7)'[tmp];"+
"[tmp][3:v] overlay=0:0:enable='between(t,9,11)'",
"-c:v","libx264", "-preset", "ultrafast", out;how can we merge bot commands I have various commands
like this""-y", "-i", j, "-i", image2, "-i", image2, "-i", image2, "-filter_complex",
"[0:v]setpts=0.5*PTS[v];[0:a]atempo=2.0[a]" +
"[1:v] overlay=0:0:enable='between(t,1,2)'[tmp];" +
"[tmp][2:v] overlay=0:0:enable='between(t,5,7)'[tmp];"+
"[tmp][3:v] overlay=0:0:enable='between(t,9,11)'",
"-map", "[v]", "-map", "[a]", "-b:v", "2097k", "-r", "60", "-vcodec", "mpeg4",
"-preset", "ultrafast", out"how can we speed video and add watermark
the error that i get is
[AVFilterGraph @ 0xac59c530] No output pad can be associated to link label '1:v'.
Error initializing complex filters. -
Revision f60a1178c6 : Cleanup motion search speed features. * Replace max_step_search_steps with cons
1er juillet 2014, par Alex ConverseChanged Paths :
Modify /vp9/encoder/vp9_mbgraph.c
Modify /vp9/encoder/vp9_mcomp.c
Modify /vp9/encoder/vp9_speed_features.c
Modify /vp9/encoder/vp9_speed_features.h
Modify /vp9/encoder/vp9_temporal_filter.c
Cleanup motion search speed features.* Replace max_step_search_steps with constant MAX_MVSEARCH_STEPS
* Fold (reduce_first_step_size + speed > 5) into reduce_first_step_size
replacing uses of reduce_first_step_size that don’t add the speed
check with zero.Change-Id : Iae46395dbf3eaca138bf4d18b838a9e364b5a198