Recherche avancée

Médias (2)

Mot : - Tags -/rotation

Autres articles (67)

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

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

Sur d’autres sites (9106)

  • Issues with ffmpeg2theora- Please port your application to avcodec_decode_audio4()

    8 août 2016, par sudheerpaturi

    I am using the latest versions of ffmpeg and ffmpeg2theora for windows. I try to convert an mp4 file(with audio) to an ogv file using this command on terminal

    ffmpeg2theora.exe -v 10 input_file_name.mp4

    Then its giving out this error.
    Image for the Output

    I am totally new to using this tool. From my investigation I found that this is because of the new versions. This problem doesn’t exist with the old versions.

    Is there any way to get rid of this issue ?

    Thanks in advance.

  • Build : Bump and merge JSHint/JSCS config

    27 mai 2014, par nschonni
    Build : Bump and merge JSHint/JSCS config
    

    Moved options depreciated in the latest JSHint to the JSCS version.

  • Why is "ffmpeg : command not found" in heroku, even with proper buildpack/config ?

    14 novembre 2022, par Jim

    In a node.js app hosted on heroku, ffmpeg is used by spawning processes, but is throwing errors anytime an ffmpeg command runs

    &#xA;

    the error ffmpeg: command not found is thrown both in cli test heroku run ffmpeg as well as production logs

    &#xA;

    Ive considered :

    &#xA;

      &#xA;
    • buildpack order
    • &#xA;

    • buildpack clearing/re-adding/redeploying
    • &#xA;

    • buildpack required env vars
    • &#xA;

    • heroku-stack-20 conflicts with buildpack#1 somehow ?
    • &#xA;

    &#xA;

    Buildpack order :

    &#xA;

      &#xA;
    1. https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git
    2. &#xA;

    3. https://github.com/heroku/heroku-buildpack-awscli.git
    4. &#xA;

    5. https://github.com/timanovsky/subdir-heroku-buildpack.git
    6. &#xA;

    7. heroku/nodejs
    8. &#xA;

    &#xA;

    Buildpack configs - from watching build logs, even though i havent set ffmpeg path, a default is found.

    &#xA;

    beginning build logs (completes successfully, runs successfully - minus ffmpeg) :

    &#xA;

    -----> Building on the Heroku-20 stack&#xA;-----> Using buildpacks:&#xA;       1. https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git&#xA;       2. https://github.com/xrisk/heroku-opus.git&#xA;       3. https://github.com/heroku/heroku-buildpack-awscli.git&#xA;       4. https://github.com/timanovsky/subdir-heroku-buildpack.git&#xA;       5. heroku/nodejs&#xA;-----> ffmpeg app detected&#xA;-----> Installing ffmpeg&#xA;       Variable FFMPEG_DOWNLOAD_URL isn&#x27;t set, using default value&#xA;       Downloading https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz&#xA;       Unpacking the archive&#xA;       Installation successful&#xA;-----> heroku-opus app detected&#xA;       exporting PATH and LIBRARY_PATH&#xA;-----> Building in /tmp/build_51b5ac83/opus&#xA;-----> Starting opus compilation&#xA;       Downloading opus-1.3.1.tar.gz&#xA;       Unpacking opus&#xA;       Running configure&#xA;       Running make install&#xA;-----> AWS CLI app detected&#xA;-----> Downloading AWS CLI&#xA;-----> Installing AWS CLI&#xA;       You can now run: /app/.awscli/bin/aws --version&#xA;       aws-cli/2.8.12 Python/3.9.11 Linux/4.4.0-1104-aws exe/x86_64.ubuntu.20 prompt/off&#xA;-----> Successfully installed AWS CLI&#xA;-----> Subdir buildpack app detected&#xA;-----> Subdir buildpack in server&#xA;       creating cache: /tmp/codon/tmp/cache&#xA;       created tmp dir: /tmp/codon/tmp/cache/subdirBuBFb&#xA;       moving working dir: server to /tmp/codon/tmp/cache/subdirBuBFb&#xA;       cleaning build dir /tmp/build_51b5ac83&#xA;       copying preserved work dir from cache /tmp/codon/tmp/cache/subdirBuBFb to build dir /tmp/build_51b5ac83&#xA;       cleaning tmp dir /tmp/codon/tmp/cache/subdirBuBFb&#xA;-----> Node.js app detected&#xA;

    &#xA;

    Any suggestions to further debug this ?

    &#xA;