Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (72)

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

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (7642)

  • FFmpeg : Reading the source code, how do I understand the impact of a given configuring option ?

    25 février 2016, par Antonio

    I was trying to investigate the impact of the --enable-gray configuring option on the ffmpeg code. However, if I download the source and grep the entire project for enable-gray, the only entry I find is in the configure file, in the help section. Is this option used at all ? If it is used, how do I find the section of code which are activated by using this option ?

    Even using a regex search with enable.*gray doesn’t bring any additional results.

  • Confirm HLS server is working only with Windows PC

    29 novembre 2013, par user2357117

    I'm going to set up HTTP Live Streaming server.
    In development environment, only Windows PC is available for the server's client due to network restriction and other regulations.

    How can I confirm that

    • server is publishing HLS movie and
    • real-time movie's delay by viewing it

    only with Windows software ?

    This page shows that browser available on Windows does not support HLS.
    I'm prefer solution with free software, so JW Player may not be a best solution.

    I'm not sure that I can check delay on-the-fly with hls-client or ffmpeg.

  • Shell script not working on a different server

    11 novembre 2013, par Alex Blundell

    I've just migrated a shell script to another server with similar specs (same CentOS version) but the following command seems to fail :

    find /home/removed/captures -name '*.avi' -exec ffmpeg -y -i {} -ab 1280 -b 1024000 {}.mp4 \;

    The following message gets returned :

    find: `ffmpeg': No such file or directory

    I have installed ffmpeg, and made sure it runs from the command line. I've also tried passing in the full path to ffmpeg instead of just 'ffmpeg'. Both ffmpeg versions are the same on each server. I was thinking it was something to do with syntax of the find program changing between versions, but they're both the same version too. This runs via the root crontab.

    The script does run by itself though if I call it directly. Could this be an issue with permissions ? It runs on a cPanel server.

    Thanks :)