Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (45)

  • 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

  • Création définitive du canal

    12 mars 2010, par

    Lorsque 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 (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (6582)

  • How to build libx264 64bit library for android

    19 juillet 2016, par Pri1985

    I am unable to build libx264 code for android arm-64 bit architecture.
    Below is the command i tried.

    ./configure \
    --cross-prefix=arm-linux-androideabi- \
    --sysroot="$HOME/NDK/android-ndk-r10d/platforms/android-21/arch-arm64/" \
    --host=arm-linux \
    --enable-pic \
    --enable-static \
    --disable-cli

    Please advice.
    Thanks in advance.

  • How to build libx264 64bit library for android

    19 juillet 2016, par Pri1985

    I am unable to build libx264 code for android arm-64 bit architecture.
    Below is the command i tried.

    ./configure \
    --cross-prefix=arm-linux-androideabi- \
    --sysroot="$HOME/NDK/android-ndk-r10d/platforms/android-21/arch-arm64/" \
    --host=arm-linux \
    --enable-pic \
    --enable-static \
    --disable-cli

    Please advice.
    Thanks in advance.

  • Problems compiling ffmpeg for iOS

    19 août 2012, par marchinram

    I seen a few posts similar to this one but the problem I'm having is slightly different, I downloaded the ffmpeg source and ran configure like below :

    ./configure --disable-doc --disable-ffmpeg --disable-ffplay --disable-ffserver \
    --enable-cross-compile --arch=arm --target-os=darwin \
    --cc=/applications/xcode.app/contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc --as='gas-preprocessor/gas-preprocessor.pl /applications/xcode.app/contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc' \
    --sysroot=/applications/xcode.app/contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.1.sdk \
    --cpu=cortex-a8 --extra-cflags='-arch armv7' --extra-ldflags='-arch armv7 \
    -isysroot /applications/xcode.app/contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.1.sdk' --enable-pic

    The configure appears to work right, it ends with this

    License: LGPL version 2.1 or later
    Creating config.mak and config.h...

    WARNING: Compiler does not indicate floating-point ABI, guessing soft.

    But when I then run make I get this

    AS  libavcodec/arm/ac3dsp_armv6.o
    ./libavutil/arm/asm.S:178:garbage following instruction -- `ldr r4,.Lpicoff\'
    ./libavutil/arm/asm.S:179:Unknown pseudo-op: .Lpic
    ./libavutil/arm/asm.S:179:Rest of line ignored. 1st junk character valued 92 (\).
    ./libavutil/arm/asm.S:181:Unknown pseudo-op: .altmacro
    ./libavutil/arm/asm.S:182:Unknown pseudo-op: .noaltmacro
    ./libavutil/arm/asm.S:185:Unknown pseudo-op: .Lpic
    ./libavutil/arm/asm.S:185:Rest of line ignored. 1st junk character valued 92 (\).
    ./libavutil/arm/asm.S:178:garbage following instruction -- `ldr lr,.Lpicoff\'
    ./libavutil/arm/asm.S:179:Unknown pseudo-op: .Lpic
    ./libavutil/arm/asm.S:179:Rest of line ignored. 1st junk character valued 92 (\).
    ./libavutil/arm/asm.S:181:Unknown pseudo-op: .altmacro
    ./libavutil/arm/asm.S:182:Unknown pseudo-op: .noaltmacro
    ./libavutil/arm/asm.S:185:Unknown pseudo-op: .Lpic
    ./libavutil/arm/asm.S:185:Rest of line ignored. 1st junk character valued 92 (\).
    make: *** [libavcodec/arm/ac3dsp_armv6.o] Error 1

    Any help would be greatly appreciated