Recherche avancée

Médias (91)

Autres articles (82)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

Sur d’autres sites (4711)

  • http: do not print a warning message for expired cookies

    8 mars 2018, par wm4
    http: do not print a warning message for expired cookies
    

    libavformat prints a warning that the cookie couldn't be parsed (see
    callers of parse_cookie()). This is obviously not true - it could be
    parsed, but was simply ignored. Don't return an error to avoid the
    warning.

    • [DH] libavformat/http.c
  • ffprobe : use quotation marks in the xml header output

    14 juillet 2021, par James Almer
    ffprobe : use quotation marks in the xml header output
    

    xmllint (silently) replaces the ' with " when fixing and validating the output
    of ffprobe in fate-ffprobe_xsd.

    Reviewed-by : Tobias Rapp <t.rapp@noa-archive.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] fftools/ffprobe.c
  • Configuring install path : prefix=[PREFIX] not fully understood

    3 mai 2016, par whatshisface

    I think this is simply a general c++ question :

    I’m attempting to compile a local version of ffmpeg on Linux Fedora using the gnu c++ compiler. I have source code in a bunch of folders under :

    ~/<username>/Downloads/Code/ffmpeg_sources/
    </username>

    which is where I’m attempting to set the config flags to install the build to a target not under this tree but at a root level directory with local shared libraries :

    /usr/local/

    There is this following section near the beginning of the configuration file :

    Standard options:

    --prefix=PREFIX          install in PREFIX []
    --bindir=DIR             install binaries in DIR [PREFIX/bin]
    --datadir=DIR            install data files in DIR [PREFIX/share/ffmpeg]
    --docdir=DIR             install documentation in DIR [PREFIX/share/doc/ffmpeg]
    --libdir=DIR             install libs in DIR [PREFIX/lib]
    --shlibdir=DIR           install shared libs in DIR [PREFIX/lib]
    --incdir=DIR             install includes in DIR [PREFIX/include]
    --mandir=DIR             install man page in DIR [PREFIX/share/man]
    --enable-rpath           use rpath to allow installing libraries in paths
                             not part of the dynamic linker search path

    I may have completely misunderstood this, but I thought that setting a value like

    --prefix=/usr/local

    or

    --prefix=[/usr/local]

    might work, but it appears not to, as once the ./config, make&&make install is complete, it has done a bunch of stuff but there’s nothing installed at the target. There are a LOT of new executable files built in the source directory, so presumably the build is working but I’m simply specifying the paths incorrectly ? A part of the same problem is that it’s unclear whether, once I’ve set the

    --prefix=[PREFIX]

    correctly, I need to set all of the further

    --datadir, --libdir

    etc. or whether the first —prefix value is enough ?

    What is the above configuration syntax trying to show me ?