
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (77)
-
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 ;
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (7880)
-
how to seek mp3 in ffmpeg
25 décembre 2013, par user2361120can any one know how to seek mp3 using ffmpeg.I already wasted one week on it.
JNIEXPORT void JNICALL Java_com_music_MainActivity_seek (JNIEnv *env, jobject obj, jint value,jint flag)
{
int seek_target=(int64_t)(value) *(int64_t)AV_TIME_BASE;
//int seek_target=value;
seek_target= av_rescale_q(seek_target, AV_TIME_BASE_Q, fmt_ctx- >streams[audio_stream_index]->time_base);
// LOGS("seek_target=%lld-------value = %d",seek_target,value);
// LOGS("Stage %d",fmt_ctx->streams[audio_stream_index]->time_base);
if(flag>0)
{
av_seek_frame(fmt_ctx, audio_stream_index, seek_target, AVSEEK_FLAG_BACKWARD);
avcodec_flush_buffers(dec_ctx);
}
else
{
av_seek_frame(fmt_ctx, audio_stream_index, seek_target,AVSEEK_FLAG_ANY);
avcodec_flush_buffers(dec_ctx);
}}
can any one know how to seek mp3 using ffmpeg.I already wasted one week on it.
-
Append video files of different width, height
28 novembre 2013, par JatinI am building an application where user can record a screencast. Integral part of application is that, one can pause recording and resume it later any time (the session is maintained on server side).
So say when user starts recording the screen, the width and height is :1024*768. Using xuggler (java wrapper for ffmpeg), I am able to generate a video. But say later he is on a different system and wishes to resume screen cast, then resolution changes to 1080 * 720. At this stage, I record it seperately and then try merging two files. But because the width & height are not same, I get the below exception :
16:38:03.916 [main] WARN com.xuggle.xuggler - Got error : picture is
not of the same width as this Coder
(../../../../../../../csrc/com/xuggle/xuggler/StreamCoder.cpp:1430)
Exception in thread "main" java.lang.RuntimeException : failed to
encode videoWhat is the best way to solve this Issue. The user can be on screen with different width and height. How do I merge (or any other alternatives, probably append) video files of different width and height ?
-
Revision f78d6aa772 : add range_check for fdct in vp10 Unify the style of fdct4() fdct8() fdct16() Ad
29 août 2015, par Angie ChiangChanged Paths :
Modify /test/test.mk
Add /test/vp10_dct_test.cc
Modify /vp10/encoder/dct.c
add range_check for fdct in vp10Unify the style of fdct4() fdct8() fdct16()
Add fdct32()
Add range_check() at each stage
Add unit test at ../../test/vp10_dct_test.ccChange-Id : I9e912b2c5683862e65c5a21abc3e1c260cca4576