Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (46)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (7648)

  • Vitamio build librtmp for android

    15 avril 2014, par David

    I read in the GitHub of this project FFmpeg-vitamio comes with rtmp compilled but seems Not.

    Here in the next link to the ffmpeg build, as you can see exists an .sh for android with librtmp

    https://github.com/yixia/FFmpeg-Vitamio

    When I try to execute it I get a syntax error from windows and ubuntu.

    And I don´t have idea about what Must I do once compiled (If it´s possible) where to place the libs, etc, Can someone help me please ? I can´t find information about that.

    Greetens

    DAvid

  • avcodec/x86/Makefile : Don't build empty files

    12 septembre 2022, par Andreas Rheinhardt
    avcodec/x86/Makefile : Don't build empty files
    

    simple_idct.asm is 32 bit-only since
    bfb28b5ce89f3e950214b67ea95b45e3355c2caf,
    whereas simple_idct10.asm is x64-only. So don't build
    the ultimately unneeded and empty files, as some linkers
    complain about this : "ranlib : file :
    libavcodec/libavcodec.a(simple_idct.o) has no symbols"
    (this is from an Xcode toolchain as reported by Ronald S. Bultje).

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/x86/Makefile
  • Build ffmpeg for Windows CE/Mobile

    12 juin 2012, par Harish

    After having many unsuccessful attempts to build ffmpeg for Android on Windows (through cygwin and MiNGW) I finally installed Ubuntu and tried the same, and it built successfully straight away.

    Now I want to build ffmpeg for Windows CE/Mobile, whats my best choice ? Should I proceed on Ubuntu or through MiNGW since the targwt is WindowsCE. Just a note that I could build ffmpeg for Windows desktop on Windows through MinGW.

    I tried with mingw32ce cross compiler on Ubuntu but I dont get any of the output lib/dll files. I used the below Makefile for Android and it works.

    NDK=/media/windows/android-ndk-r8  
    PLATFORM=$NDK/platforms/android-8/arch-arm/  
    PREBUILT=$NDK/toolchains/arm-linux-androideabi-4.4.3/prebuilt/linux-x86  
    $PREBUILT/bin/arm-linux-androideabi-ar d libavcodec/libavcodec.a inverse.o  
    $PREBUILT/bin/arm-linux-androideabi-ld -rpath-link=$PLATFORM/usr/lib -L$PLATFORM/usr/lib  -soname libffmpeg.so -shared -nostdlib  -z,noexecstack -Bsymbolic --whole-archive --no-undefined -o $PREFIX/libffmpeg.so libavcodec/libavcodec.a libavformat/libavformat.a libavutil/libavutil.a libswscale/libswscale.a -lc -lm -lz -ldl -llog  --warn-once  --dynamic-linker=/system/bin/linker $PREBUILT/lib/gcc/arm-linux-androideabi/4.4.3/libgcc.a

    Can anyone please let me know how I can specify the same for Windows CE ?

    PLATFORM=/opt/mingw32ce/arm-mingw32ce  
    PREBUILT=/opt/mingw32ce  
    ???