Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (7958)

  • Error when compiling FAAC for iOS

    6 novembre 2014, par 谢小进

    I want to compile FAAC for iOS, including i386, x86_64, armv7, armv7s, arm64. I am using this shell script and when I run it, only i386 and x86_64 are built. The current code is like this :

    #!/bin/sh

    # OS X Mavericks, Xcode 5.1

    set -ex

    VERSION="1.28"
    CURRPATH=`pwd`
    SOURCE="faac-$VERSION"
    DSTDIR="libfaac"
    SDKVERSION="7.1"
    ARCHS="i386 x86_64 armv7 armv7s arm64"
    DEVELOPER="/Applications/Xcode.app/Contents/Developer"

    rm -rf $DSTDIR
    mkdir $DSTDIR

    tar jxf $SOURCE.tar.gz
    cd $SOURCE

    for ARCH in $ARCHS; do
       mkdir -p $CURRPATH/$DSTDIR/$ARCH

       if [ $ARCH == "i386" -o $ARCH == "x86_64" ]; then
           PLATFORM="iPhoneSimulator"
           if [ $ARCH = "i386" ]; then
               HOST="--host=i386-apple-darwin"
           fi
       else
           PLATFORM="iPhoneOS"
           HOST="--host=arm-apple-darwin"
       fi

       SDK="$DEVELOPER/Platforms/$PLATFORM.platform/Developer/SDKs/$PLATFORM$SDKVERSION.sdk"
       IOSMV="-miphoneos-version-min=7.0"
       export CC="$DEVELOPER/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang"
       export CFLAGS="$IOSMV -arch $ARCH"
       export LDFLAGS="$IOSMV -arch $ARCH -isysroot $SDK"
       export LIBS="-L$SDK/usr/lib"
       export CXXFLAGS="$IOSMV -arch $ARCH -I$SDK/usr/include"

       ./configure \
       $HOST \
       --prefix=$CURRPATH/$DSTDIR/$ARCH

       make && make install && make clean
    done

    cd ..
    mkdir -p $DSTDIR/lib

    lipo -create `find $DSTDIR -name libfdk-aac.a` -output $DSTDIR/lib/libfdk-aac.a

    cp -rf $DSTDIR/$ARCH/include $DSTDIR

    for ARCH in $ARCHS; do
       rm -rf $DSTDIR/$ARCH
    done

    Can somebody tell me why armv7, armv7s, arm64 are not built correct ? If needed, where can I change them ? Maybe it could be like -host= value. but I have used -host=armv7-apple-darwin, -host=armv7s-apple-darwin, and -host=arm64-apple-darwin, it’s not correct either.

  • FFMPEG "listfile.txt : Invalid data found when processing input" concat error

    18 juillet 2019, par Léandre

    I have a txt file, where I have all my mp4 file to concat with ffmpeg. I saw the documentation of FFMPEG but I don’t see where I did something wrong.

    Here is my txt file :

    file '/home/leandre/PycharmProjects/video_test/1.mp4'
    file '/home/leandre/PycharmProjects/video_test/2.mp4'
    file '/home/leandre/PycharmProjects/video_test/3.mp4'
    file '/home/leandre/PycharmProjects/video_test/4.mp4'
    file '/home/leandre/PycharmProjects/video_test/5.mp4'
    file '/home/leandre/PycharmProjects/video_test/6.mp4'
    file '/home/leandre/PycharmProjects/video_test/7.mp4'
    file '/home/leandre/PycharmProjects/video_test/8.mp4'
    file '/home/leandre/PycharmProjects/video_test/9.mp4'
    file '/home/leandre/PycharmProjects/video_test/10.mp4'

    And this is my ffmpeg command : ffmpeg -f concat -safe 0 -i listfile.txt -c copy out_concat.mp4

    And my error listfile.txt: Invalid data found when processing input

  • Error installing ffmpeg on ubuntu : opus not found using pkg-config

    15 août 2019, par fangda

    When I try to install ffmpeg on my ubuntu 14.10 machine, I keep getting this :

    ERROR : opus not found using pkg-config

    at this step :

    PATH="$HOME/bin:$PATH" PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" ./configure \
     --prefix="$HOME/ffmpeg_build" \
     --extra-cflags="-I$HOME/ffmpeg_build/include" \
     --extra-ldflags="-L$HOME/ffmpeg_build/lib" \
     --bindir="$HOME/bin" \
     --enable-gpl \
     --enable-libass \
     --enable-libfdk-aac \
     --enable-libfreetype \
     --enable-libmp3lame \
     --enable-libopus \
     --enable-libtheora \
     --enable-libvorbis \
     --enable-libvpx \
     --enable-libx264 \
     --enable-nonfree

    I’ve followed all the previous installation steps and it went all successful. I’m really new to Ubuntu. Could anybody give me a hint ?