Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (56)

  • 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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (6931)

  • Undefined symbol : _avformat_alloc_context [on hold]

    12 septembre 2019, par Ahtazaz khan

    I’m trying to integrate FFmpeg library in my Xcode project, And following this Stackoverflow Question. As I have integrated successfully by following every step from that Question, But at the end got this compiler error.

    Undefined symbols for architecture arm64:
     "_avformat_alloc_context", referenced from:
         SwiftFFmeg.AppDelegate.application(_: __C.UIApplication, didFinishLaunchingWithOptions: [__C.UIApplicationLaunchOptionsKey : Any]?) -> Swift.Bool in AppDelegate.o
    ld: symbol(s) not found for architecture arm64
    clang: error: linker command failed with exit code 1 (use -v to see invocation)

    Here is a screenshot of Compiler Error.
    enter image description here

    Any Help will be highly appreciated. Thanks

  • Android FFMPEG build for arm64 failed with error ?

    26 août 2019, par bharat aghera

    I have made ffmpeg build with following build script.
    https://github.com/Free-Syj/ffmpeg-build-script/blob/master/build-android-ffmpeg.sh

    It worked for armv7.
    when I tried to make for arm64 architecture, it gave me following error.

    NDK/toolchains/aarch64-linux-android-4.9/prebuilt/darwin-x86_64/bin/aarch64-linux-android-gcc is unable to create an executable file.

    Edited : -

    Following build script has been used to make the build.

    NDK=/Users/tapansodha/Documents/Softwares/AndroidStudio/adt-bundle-mac-x86_64-20140702/android-ndk-r10e
    function build_one
    {
    ./configure --target-os=linux \
    --prefix=$PREFIX \
    --enable-cross-compile \
    --extra-libs="-lgcc" \
    --arch=arm \
    --cc=$CC \
    --cross-prefix=$PREBUILT/bin/aarch64-linux-android- \
    --nm=$NM \
    --sysroot=$PLATFORM \
    --extra-cflags=" -O3 -fpic -DANDROID -DHAVE_SYS_UIO_H=1 -Dipv6mr_interface=ipv6mr_ifindex -fasm -Wno-psabi -fno-short-enums -fno-strict-aliasing -finline-limit=300 $OPTIMIZE_CFLAGS " \
    --enable-shared \
    --disable-static \
    --extra-ldflags="-Wl,-rpath-link=$PLATFORM/usr/lib -L$PLATFORM/usr/lib -nostdlib -lc -lm -ldl -llog" \
    --disable-everything \
    --disable-debug \
    --disable-programs \
    --disable-doc \
    --enable-decoder=h264 \
    --enable-decoder=mjpeg \
    --enable-decoder=mpeg4 \
    --enable-decoder=mxpeg \
    --enable-decoder=aac \
    $ADDITIONAL_CONFIGURE_FLAG

    make clean
    make  -j4 install
    }

    #arm arm64-v8a
    PLATFORM=$NDK/platforms/android-21/arch-arm64/
    PREBUILT=$NDK/toolchains/aarch64-linux-android-4.9/prebuilt/darwin-x86_64
    CC=$PREBUILT/bin/aarch64-linux-android-gcc
    NM=$PREBUILT/bin/aarch64-linux-android-nm
    CPU=arm64
    PREFIX=./android_arm64n/$CPU
    ADDITIONAL_CONFIGURE_FLAG=
    build_one
  • FFMPEG : How to output image2 format into a tcp/udp socket ?

    5 août 2019, par Sagi Mann

    I’ve got ffmpeg to read some RTSP stream and output image2 format to stdout like so :

    ffmpeg -rtsp_transport tcp -i  "rtsp:xxxxx" -f image2 -update 1 -

    But stdout is not good enough for me.. I am trying to pass it to "push" it to some other process that I cannot "pipe" to ffmpeg due to some architecture constraints. I am running on Linux so I was hoping to simulate some tcp/udp socket via the file system e.g. /dev/somthing or similar. Alternatively, maybe it’s possible to get ffmpeg to send the image directly to a given tcp/udp address ? This didn’t work though (ffmpeg expects a file output) :

    ffmpeg -rtsp_transport tcp -i  "rtsp:xxxxx" -f image2 -update 1 "udp://localhost:3333"

    Any ideas ?
    Thanks