Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (73)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

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

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (7642)

  • "ff_check_interrupt" is not adding in the ffmpeg build

    25 janvier 2021, par Mahfujur Rahman

    I have been trying to corss-compile ffmpeg with the following configuration.

    


    /* Automatically generated by configure - do not modify! */
#ifndef FFMPEG_CONFIG_H
#define FFMPEG_CONFIG_H
#define FFMPEG_CONFIGURATION "--cross-prefix=arm-linux-androideabi- --sysroot=/mnt/9A24115B24113BA7/Android/Sdk/ndk/21.3.6528147//toolchains/llvm/prebuilt/linux-x86_64/sysroot --prefix=/media/mahfuj/mobile-ffmpeg/prebuilt/android-arm/ffmpeg --pkg-config=/usr/bin/pkg-config --enable-version3 --arch=armv7-a --cpu=armv7-a --cc=armv7a-linux-androideabi16-clang --cxx=armv7a-linux-androideabi16-clang++ --extra-libs='-L/media/mahfuj/mobile-ffmpeg/prebuilt/android-arm/cpu-features/lib -lndk_compat' --target-os=android --disable-neon --enable-asm --enable-inline-asm --enable-cross-compile --enable-pic --enable-optimizations --enable-avdevice --enable-avcodec --enable-avformat --enable-avutil --enable-swresample --enable-postproc --enable-avfilter --enable-avresample --enable-swscale --enable-shared --enable-v4l2-m2m --disable-outdev=fbdev --disable-indev=fbdev --enable-small --disable-openssl --disable-xmm-clobber-test --disable-debug --enable-lto --disable-neon-clobber-test --disable-programs --disable-postproc --disable-doc --disable-htmlpages --disable-manpages --disable-podpages --disable-txtpages --disable-static --disable-sndio --disable-schannel --disable-securetransport --disable-xlib --disable-cuda --disable-cuvid --disable-nvenc --disable-vaapi --disable-vdpau --disable-videotoolbox --disable-audiotoolbox --disable-appkit --disable-alsa --disable-cuda --disable-cuvid --disable-nvenc --disable-vaapi --disable-vdpau --enable-libfreetype --enable-libfribidi --enable-libmp3lame --enable-iconv --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libxml2 --enable-libopencore-amrnb --enable-libshine --enable-libspeex --enable-libwavpack --enable-libkvazaar --enable-libx264 --enable-gpl --enable-libx265 --enable-gpl --enable-libilbc --enable-libopus --enable-libsnappy --enable-libsoxr --enable-libaom --enable-chromaprint --disable-sdl2 --enable-libvo-amrwbenc --enable-zlib"
#define FFMPEG_LICENSE "GPL version 3 or later"
#define CONFIG_THIS_YEAR 2020
#define FFMPEG_DATADIR "/media/mahfuj/mobile-ffmpeg/prebuilt/android-arm/ffmpeg/share/ffmpeg"
#define AVCONV_DATADIR "/media/mahfuj/mobile-ffmpeg/prebuilt/android-arm/ffmpeg/share/ffmpeg"
#define CC_IDENT "Android (6454773 based on r365631c2) clang version 9.0.8 (https://android.googlesource.com/toolchain/llvm-project 98c855489587874b2a325e7a516b99d838599c6f) (based on LLVM 9.0.8svn)"
....
....
....
#endif /* FFMPEG_CONFIG_H */


    


    But the generated libavformat.so file doesn't include the ff_check_interrupt method and results in

    


    


    undefined reference to 'ff_check_interrupt'

    


    


  • Compile x264 with Thread Support for Android Platform

    10 novembre 2013, par Stryker33

    I've been tryin' to compile x264 for Android with Thread Support...But with no success...

    I've managed to compile the same without thread support...The configure command is as follows :

    ./configure --prefix=$PREFIX \
    --enable-pic \
    --host=arm-linux \
    --disable-cli \
    --cross-prefix=$PREBUILT/bin/arm-linux-androideabi- \
    --sysroot=$PLATFORM

    where PREBUILT=$NDK/toolchains/arm-linux-androideabi-4.7/prebuilt/linux-x86 and
    PLATFORM=$NDK/platforms/android-14/arch-arm

    I've also tried with and without the option --enable-static and extra-ldflags="-lpthread", but when attempted make it ends with errors.

    Is there any way to accomplish the above said...?

  • Compile x264 with Thread Support for Android Platform

    10 novembre 2013, par Stryker33

    I’ve been tryin’ to compile x264 for Android with Thread Support...But with no success...

    I’ve managed to compile the same without thread support...The configure command is as follows :

    ./configure --prefix=$PREFIX \
    --enable-pic \
    --host=arm-linux \
    --disable-cli \
    --cross-prefix=$PREBUILT/bin/arm-linux-androideabi- \
    --sysroot=$PLATFORM

    where PREBUILT=$NDK/toolchains/arm-linux-androideabi-4.7/prebuilt/linux-x86 and
    PLATFORM=$NDK/platforms/android-14/arch-arm

    I’ve also tried with and without the option --enable-static and extra-ldflags="-lpthread", but when attempted make it ends with errors.

    Is there any way to accomplish the above said...?