Recherche avancée

Médias (91)

Autres articles (69)

  • 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

  • Installation en mode standalone

    4 février 2011, par

    L’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
    [mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
    Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...)

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

Sur d’autres sites (6484)

  • aarch64 : Add an offset parameter to the movrel macro

    14 novembre 2016, par Martin Storsjö
    aarch64 : Add an offset parameter to the movrel macro
    

    With apple tools, the linker fails with errors like these, if the
    offset is negative :

    ld : in section __TEXT,__text reloc 8 : symbol index out of range for architecture arm64

    This is cherry-picked from libav commit
    c44a8a3eabcd6acd2ba79f32ec8a432e6ebe552c.

    Signed-off-by : Ronald S. Bultje <rsbultje@gmail.com>

    • [DH] libavutil/aarch64/asm.S
  • FFmpeg iOS RTSP Player compile issue

    15 décembre 2016, par Julien

    I’m trying to compile a project which use FFmpeg libraries in iOS : https://github.com/hackacam/ios_rtsp_player

    This project successfully compile for armv7 architecture but I can’t compile it for arm64 cause FFmpegDecoder.framework has :

    "Undefined symbols for architecture arm64"

    So I tried to recompile the FFmpegDecoder.framework from this project : https://github.com/mooncatventures-group/ffmpegDecoder with the latest build of FFmpeg library : https://downloads.sourceforge.net/project/ffmpeg-ios/ffmpeg-ios-master.tar.bz2

    But I have some headers issues like you can see in my project : https://wetransfer.com/downloads/b1a3fc1438d2464ebeb86f38b08e1dff20161215093957/9b4211

    I don’t know if I use the good way to compile the framework.

    Can you help me to fix this issue ?

    Thanks in advance.

    My configuration :

    macOS 10.12.2
    Xcode 8.1
    FFmpeg 3.2.2
  • avformat/wavdec : Eliminate goto for clang -O0 DCE

    16 décembre 2016, par Mark Harris
    avformat/wavdec : Eliminate goto for clang -O0 DCE
    

    Clang is not able to eliminate the reference to ff_spdif_probe() when
    there is a goto target in the same block and optimization is disabled.

    This fixes the following build failure on OS X :
    ./configure —disable-everything —disable-doc \
    —enable-decoder=pcm_s16le —enable-demuxer=wav \
    —enable-protocol=file —disable-optimizations —cc=clang
    make
    ...
    Undefined symbols for architecture x86_64 :
    "_ff_spdif_probe", referenced from :
    _set_spdif in libavformat.a(wavdec.o)
    ld : symbol(s) not found for architecture x86_64

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/wavdec.c