Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (84)

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

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

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (6929)

  • How to build libx264 64bit library for android

    19 juillet 2016, par Pri1985

    I am unable to build libx264 code for android arm-64 bit architecture.
    Below is the command i tried.

    ./configure \
    --cross-prefix=arm-linux-androideabi- \
    --sysroot="$HOME/NDK/android-ndk-r10d/platforms/android-21/arch-arm64/" \
    --host=arm-linux \
    --enable-pic \
    --enable-static \
    --disable-cli

    Please advice.
    Thanks in advance.

  • How to build libx264 64bit library for android

    19 juillet 2016, par Pri1985

    I am unable to build libx264 code for android arm-64 bit architecture.
    Below is the command i tried.

    ./configure \
    --cross-prefix=arm-linux-androideabi- \
    --sysroot="$HOME/NDK/android-ndk-r10d/platforms/android-21/arch-arm64/" \
    --host=arm-linux \
    --enable-pic \
    --enable-static \
    --disable-cli

    Please advice.
    Thanks in advance.

  • Compiling ffmpeg with NVDIA GPU enabled for windows

    12 octobre 2017, par Guru

    I am working on decoding video using ffmpeg with NVDIA GPU enabled on windows platform.

    Followed below steps as per the document provided by ffmpeg to compile ffmpeg software

    1. Install msys2 from www.msys2.org.
    2. Clone FFMPEG’s public GIT repository. git clone https://git.ffmpeg.org/ffmpeg.git
    3. Create a folder named nv_sdk in the parent directory of FFMPEG and copy all the libraries from C :\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v8.0\include to and C :\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v8.0\lib\x64 to nv_sdk folder.
    4. Launch the Visual Studio x64 Native Tools Command Prompt.
    5. From the Visual Studio x64 Native Tools Command Prompt, launch the MinGW64 environment by running mingw64.exe from the msys2 installation folder.
    6. In the MinGW64 environment, install the necessary packages. pacman -S diffutil make pkg-config yasm
    7. Add the following paths by running the commands. export PATH="/c/Program Files (x86)/Microsoft Visual Studio 12.0/VC/BIN/amd64/" :$PATH export PATH="/c/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v8.0/bin/" :$PATH
    8. Go to the FFMPEG installation folder and run the following command. ./configure —enable-nonfree —enable-nvenc —enable-cuda —enable-cuvid —enable-libnpp —extra-cflags=-Ilocal/include —extra-cflags=-I../nv_sdk —extra-ldflags=-L../nv_sdk
    9. Compile the code by executing the following command. make -j 8

    But In the 8th step I am getting below error, please let me know what could be the possible solution for the issue.

    admin@ADMIN-PC MINGW64 /c/ffmpeg
    $ ./configure —enable-nonfree —enable-nvenc —enable-cuda —enable-cuvid —ena ble-libnpp —extra-cflags=-Ilocal/include —extra-cflags=-I../nv_sdk —extra-ldf lags=-L../nv_sdk
    gcc is unable to create an executable file.
    If gcc is a cross-compiler, use the —enable-cross-compile option.
    Only do this if you know what cross compiling means.
    C compiler test failed.

    If you think configure made a mistake, make sure you are using the latest
    version from Git. If the latest version fails, report the problem to the
    ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on irc.freenode.net.
    Include the log file "ffbuild/config.log" produced by configure as this will hel p
    solve the problem.