Recherche avancée

Médias (1)

Mot : - Tags -/publishing

Autres articles (106)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Qualité du média après traitement

    21 juin 2013, par

    Le bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
    Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...)

Sur d’autres sites (11252)

  • FFmpeg lagging issue in android

    5 septembre 2012, par Balwant Kumar Singh

    I'm using FFmpeg using dolphin player. I'm getting video lagging issue and also Audio/Video synch issue for big files.

    Is there any solution to get rid of it ? I'm pretty new in this and don't have the knowledge FFmpeg code.

    I've gone through this FFmpeg tutorial site, http://dranger.com/ffmpeg/ffmpeg.html.

    With this I can understand about a little about implementing internal audio/video clock.
    I'm not able to understand, in which part of FFmpeg I should do alteration for solving this problem.

    Kindly reply with a solution...

  • Building ffmpeg on windows for android [closed]

    5 septembre 2012, par Naseeb Sheoran

    can anybody please share new edited and working build.sh file to compile
    libogg or ffmpeg by using NDK-r8b on MAC OS x
    I saw many tutorial but no one is specific. I follow this
    tutorial http://www.roman10.net/how-to-build-ffmpeg-for-android/
    The bash script its not working for me ..
    so please share working Script for ndk-r8b and please specify what are the
    changes i need to make in that script file..
    also one more question that can i use compile ffmpeg source directly into
    my app ( on git you will find many project having compile ffmpeg source in
    JNi folder)
    thank you

  • Android jni "No Rule to make Target issue"

    19 juillet 2012, par RAJESH

    I am trying to compile the project which i got from below link .
    Github project fmpeg. But while compiling that to create .so files using andriod ndk version 5 i am getting the following issue . Please advice me to solve it .

    make: *** No rule to make target `/cygdrive/D/Shakthi/jhotovy/jhotovy-android-ffmpeg-fab1412/Project/jni/ffmpeg/ffmpeg.c', needed by `/cygdrive/D/Shakthi/jhotovy/jhotovy-android-ffmpeg-fab1412/Project/obj/local/armeabi/objs/ffmpeg/ffmpeg/ffmpeg.o'.  Stop.

    My Android.mk file code.

    LOCAL_PATH := $(call my-dir)

    include $(CLEAR_VARS)

    LOCAL_MODULE  := ffmpeg

    FFMPEG_LIBS := $(addprefix ffmpeg/, \
    libavdevice/libavdevice.a \
    libavformat/libavformat.a \
    libavcodec/libavcodec.a \
    libavfilter/libavfilter.a \
    libswscale/libswscale.a \
    libavutil/libavutil.a \
    libpostproc/libpostproc.a )

    OGG_LIBS := $(addprefix libogg/output/lib/, \
    libogg.a )

    VORBIS_LIBS := $(addprefix libvorbis/output/lib/, \
    libvorbis.a \
    libvorbisenc.a \
    libvorbisfile.a )

    THEORA_LIBS := $(addprefix libtheora/output/lib/, \
    libtheora.a \
    libtheoraenc.a \
    libtheoradec.a )

    LOCAL_CFLAGS += -g -Iffmpeg -Ivideokit -Wno-deprecated-declarations
    LOCAL_LDLIBS += -llog -lz $(FFMPEG_LIBS) $(THEORA_LIBS) $(OGG_LIBS) x264/libx264.a
    LOCAL_SRC_FILES := ffmpeg_android/ffmpeg_android.c ffmpeg/ffmpeg.c ffmpeg/cmdutils.c

    include $(BUILD_SHARED_LIBRARY)

    # Use to safely invoke ffmpeg multiple times from the same Activity
    include $(CLEAR_VARS)

    LOCAL_MODULE := ffmpeginvoke

    LOCAL_SRC_FILES := ffmpeg_invoke/ffmpeg_invoke.c
    LOCAL_LDLIBS    := -ldl

    include $(BUILD_SHARED_LIBRARY)