
Recherche avancée
Autres articles (64)
-
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 -
Emballe Médias : Mettre en ligne simplement des documents
29 octobre 2010, parLe plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...) -
MediaSPIP Init et Diogène : types de publications de MediaSPIP
11 novembre 2010, parÀ l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...)
Sur d’autres sites (10107)
-
Revision 6ff4f19269 : Remove a unused sub-pixel search The original iterative search was replaced by
19 décembre 2013, par Yunqing WangChanged Paths :
Modify /vp9/encoder/vp9_mcomp.c
Modify /vp9/encoder/vp9_mcomp.h
Modify /vp9/encoder/vp9_onyx_if.c
Modify /vp9/encoder/vp9_onyx_int.h
Remove a unused sub-pixel searchThe original iterative search was replaced by subpel_tree search,
and was not used anymore.Change-Id : I998b38e1cb0ee359a08b2410d0766dbf183ab071
-
How to convert MKV movies 5.1 audio tracks to 2.0 (Stereo) but keep the original ones
9 avril 2018, par aur0nTo solve a problem I had where 5.1 movies had really quite dialogues, I’m using FFMPEG to convert every audio track of my MKV movies to an 2.0 track with audio normalization, leaving video and subtitles intact.
Here’s what the command looks like :
for /r %%i in (*.mkv) do (
@ffmpeg.exe -hide_banner -v 32 -stats -y -i "%%i" -map 0:v -map 0:a -map 0:s? -c:s copy -c:v copy -acodec ac3 -ac 2 -ar 48000 -ab 640k -af %aproc2% -f matroska "%%~ni [Stereo].mkv"
)What I’d like to do now is having these converted audio track added to the MKV among the 5.1 tracks, and not replacing the originals, which I may want in future.
I’m not really an expert of FFMPEG, so I’m looking for some help.
-
Revision 183b77d5ab : vp9/decoder : add thread worker vp9/decoder/vp9_thread.[hc] Original source : ht
31 juillet 2013, par James ZernChanged Paths :
Modify /test/test.mk
Add /test/vp9_thread_test.cc
Add /vp9/decoder/vp9_thread.c
Add /vp9/decoder/vp9_thread.h
Modify /vp9/vp9dx.mk
vp9/decoder : add thread workervp9/decoder/vp9_thread.[hc]
Original source :
http://git.chromium.org/webm/libwebp.git
100644 blob b1615d0fb8d311666b2fa4561076c62d72c2e3ff src/utils/thread.c
100644 blob 13a61a4c84194c3374080cbf03d881d3cd6af40d src/utils/thread.hLocal modifications :
- s/WebP/VP9/g
- camelcase functions -> lower with _'sChange-Id : Ib6932640ee34f8b4782c6fbd15864a59d5d4c5fe