Recherche avancée

Médias (0)

Mot : - Tags -/flash

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (46)

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

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

Sur d’autres sites (6863)

  • New builds for PHP 5.4 and PHP 5.3

    29 novembre 2012, par Mikko Koppanen — Imagick

    It’s been a while since I last updated this blog (September 2009 to be exact). Time flies ! Anyway, here comes the actual content : updated imagick binaries for PHP 5.3 and PHP 5.4. The download package also includes ImageMagick 6.8.0 binaries compiled with VC9 (Visual Studio 2008). I noticed that the official ImageMagick builds are now Visual Studio 2010 and that wouldn’t work well with PHP compiled with 2008.

    I am not sure if I am violating any license in distributing ImageMagick binaries but if I do, please let me know and I will remove them. The binaries are just stock ImageMagick 6.8.0, which you can download from http://imagemagick.org/.

    In order to get things running you should add the ImageMagick DLL directory into PATH, add the imagick extension to php.ini and things should be running. At least hopefully.

    The download link for the binaries is here : imagick-php54-php53.tgz.

  • prores : Extend the padding check to 16bit

    25 février 2015, par Luca Barbato
    prores : Extend the padding check to 16bit
    

    Some files produced by the official encoder have up to 16bit of
    padding instead of the expected padding to the byte.

    Use a self-explanatory macro instead of a simple number.

    CC : libav-stable@libav.org

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libavcodec/proresdec.c
  • Outputting file details using ffprobe in ffmpeg AWS Lambda layer

    17 février 2021, par Gracie

    I am trying to output the details of an audio file with ffmpeg using the ffprobe option. But it is just returning 'null' at the moment ? I have added the ffmpeg layer in Lambda. can anyone spot why this is not working ?

    &#xA;&#xA;

    const { spawnSync } = require("child_process");&#xA;const { readFileSync, writeFileSync, unlinkSync } = require("fs");&#xA;const util = require(&#x27;util&#x27;);&#xA;var fs = require(&#x27;fs&#x27;);&#xA;let path = require("path");&#xA;&#xA;exports.handler = (event, context, callback) => {&#xA;&#xA;    spawnSync(&#xA;        "/opt/bin/ffprobe",&#xA;        [&#xA;            `var/task/myaudio.flac`&#xA;        ],&#xA;        { stdio: "inherit" }&#xA;        );&#xA;};&#xA;

    &#xA;&#xA;

    This is the official AWS Lambda layer I am using, it is a great prooject but a little lacking in documentation.

    &#xA;&#xA;

    https://github.com/serverlesspub/ffmpeg-aws-lambda-layer

    &#xA;