Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (73)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (11725)

  • Fixed a API method name typo in the docs

    28 octobre 2014, par JamesMGreene
    Fixed a API method name typo in the docs
    

    Fixes #508

  • Meaning of TOOLCHAIN=$NDK/toolchains/arm-linux-androideabi-4.8/prebuilt/windows

    6 janvier 2016, par Nicholas Muir

    I am trying to compile Ffmpeg on Android using Cygwin and windows 7. I came across these two options for the lines below when using some tutorials to make a .sh file for the compile. I am new to this process and am trying to understand what exactly to do. Is the prebuilt/windows referring to the package to the download packages as in the options in the image below or is it referring to the operating system I am using.

    This was the first option I found :

    TOOLCHAIN=$NDK/toolchains/arm-linux-androideabi-4.8/prebuilt/windows-x86_64

    This is the second option I found :

    TOOLCHAIN=$NDK/toolchains/arm-linux-androideabi-4.8/prebuilt/linux-x86_64

    This is the images of the package download options available on the Ffmpeg.org site that I thought it may be reffering to.

    enter image description here

    Thanks for your help.

  • Why pkg-config overrides 'prefix' with another default one ?

    12 janvier, par SteveH

    I have an issue in using pkg-config to link some libraries to a program. The problem is 'prefix' variable in each library pkg-config files (*.pc) are overridden with an unwanted directory leading to building the program could not find the library's header and lib files.

    



    Here, one of '*.pc' files, x264.pc :

    



    prefix=/e/x264/x64-windows-rel  
exec_prefix=${prefix}   
libdir=${exec_prefix}/lib   
includedir=${prefix}/include    
...


    



    I run this from MSYS2 terminal :

    



    pkg-config --cflags --debug x264


    



    This is some of the output it traced out :

    



    ...
 Parsing package file 'D:/msys64/usr/local/lib/pkgconfig\x264.pc'
 line>prefix=/e/x264/x64-windows-rel
 Variable declaration, 'prefix' overridden with 'D:/msys64/usr/local'
...


    



    Note that MSYS2 and pkg-config are updated to newest versions.

    



    Could anybody tell me why it happens and how to solve the issue without renaming 'prefix' to something else.?
Thanks.