Recherche avancée

Médias (91)

Autres articles (112)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Que fait exactement ce script ?

    18 janvier 2011, par

    Ce script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
    Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
    Installation de dépendances de MediaSPIP
    Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
    Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)

Sur d’autres sites (13181)

  • fatal error : libavcodec/avcodec.h : No such file or directory

    18 février 2014, par Piterwilson

    enter image description here

    The tooltip is over the line

    #include <libavcodec></libavcodec>avcodec.h>

    I'm new to JNI development. After managing to compile FFMPEG i fail to be able to use it on a project.

    On the screenshot you can see that the folder with the libs and includes is referenced under includes (via Project/properties/C/C++ general/paths and symbols)

    To me it looks like it should find it but i get the error.

    What extra place do i have to specify this folder for the build to work ?

    Edit : contents of Android.mk

    LOCAL_PATH := $(call my-dir)

    include $(CLEAR_VARS)

    LOCAL_MODULE    := FFMpegTest
    LOCAL_SRC_FILES := FFMpegTest.cpp
    LOCAL_LDLIBS := -llog

    LOCAL_SHARED_LIBRARIES := libavformat libavcodec libswscale libavutil

    include $(BUILD_SHARED_LIBRARY)
    include $(call all-subdir-makefiles)

    Thanks

  • Error while build ffmpeg for iOS

    30 avril 2014, par AntonD

    I’m trying to build fmmpeg for iOS with the following config :

    ./configure --prefix=build/armv7 --disable-ffmpeg --disable-ffplay --disable-ffprobe --disable-ffserver --enable-avutil --enable-avresample --enable-cross-compile --sysroot="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk" --target-os=darwin --cc=gcc  --extra-cflags="-arch armv7 -mfpu=neon -miphoneos-version-min=6.0" --extra-ldflags="-arch armv7 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk -miphoneos-version-min=6.0" --arch=arm --cpu=cortex-a9 --enable-pic

    when i try to make it i’m receiving the follow error :

    AS  libavcodec/arm/vc1dsp_neon.o
    libavcodec/arm/vc1dsp_neon.S:751:10: error: unexpected token in argument list
     ra .dn d28.i8
            ^
    libavcodec/arm/vc1dsp_neon.S:752:10: error: unexpected token in argument list
     rb .dn d29.i8
            ^
    libavcodec/arm/vc1dsp_neon.S:753:10: error: unexpected token in argument list
     rc .dn d30.i8
            ^
    libavcodec/arm/vc1dsp_neon.S:754:10: error: unexpected token in argument list
     rd .dn d31.i8
            ^
    libavcodec/arm/vc1dsp_neon.S:757:14: error: invalid operand for instruction
           vmov ra, #4
                ^
    libavcodec/arm/vc1dsp_neon.S:758:14: error: invalid operand for instruction
           vmov rb, #53
                ^
    libavcodec/arm/vc1dsp_neon.S:759:14: error: invalid operand for instruction
           vmov rc, #18
                ^
    libavcodec/arm/vc1dsp_neon.S:760:14: error: invalid operand for instruction
           vmov rd, #3
                ^
    libavcodec/arm/vc1dsp_neon.S:864:10: error: unexpected token in argument list
     ra .dn d28.i16
            ^
    libavcodec/arm/vc1dsp_neon.S:865:10: error: unexpected token in argument list
     rb .dn d29.i16
            ^

    what could be the error ?

  • Compile FFMpeg for Xcode 5 without GCC ?

    9 janvier 2014, par Joseph Toronto

    I'm trying to compile FFMpeg to add to my iOS app project in Xcode5, however since GCC is no longer included the ./configure script included with FFMpeg doesn't work. Unix/Linux is NOT my strong suit so I'm pretty much at a loss as to what to do next. I know I can install GCC manually, but if FFMpeg is compiled with GCC and the rest of my project is compiled with LLVC/Clang/whatever won't it cause problems. I did manage to install FFmpeg with Brew but I'm not sure what that even accomplished since it wasn't done using options flags like below :

    ./configure --prefix=armv7 --disable-ffmpeg --disable-ffplay --disable-ffprobe --disable-ffserver --enable-avresample --enable-cross-compile --sysroot="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk" --target-os=darwin --cc="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc" --extra-cflags="-arch armv7 -mfpu=neon -miphoneos-version-min=6.1" --extra-ldflags="-arch armv7 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk -miphoneos-version-min=6.1" --arch=arm --cpu=cortex-a9 --enable-pic

    None of the scripts/fixes I've tried work, even if they're advertised as working in IOS7/Xcode 5, because they all use GCC. What should I do ?