Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (77)

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

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

Sur d’autres sites (7749)

  • avcodec/h264_parser : Fix undefined left shift

    26 mai 2020, par Andreas Rheinhardt
    avcodec/h264_parser : Fix undefined left shift
    

    Use an uint32_t for the NAL unit size of an AVC H.264 NAL unit instead
    of an int as a left shift of a signed value is undefined behaviour
    if the result doesn't fit into the target type.

    Also make the log message never output negative lengths.

    Fixes : left shift of 16711968 by 8 places cannot be represented in type 'int'
    Fixes : 36601/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_H264_fuzzer-6581933285965824

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/h264_parser.c
  • Input raw audio 512 floating-point values into FFMPEG ?

    29 septembre 2021, par NTPHCM

    In ActionScript 3, I use SoundMixer.computeSpectrum() to takes a snapshot of the current sound wave playing on the stage and places it into the specified ByteArray object.

    &#xA;

    I want to write the ByteArray into FFMPEG (by std -i pipe:0), but the ByteArray object created is fixed to 512 floating-point values and FFMPEG seem doesn't support that value. The sound in the output is corrupted.

    &#xA;

    Here's a part of my code in AS3 :

    &#xA;

    stage.addEventListener(Event.ENTER_FRAME, update);&#xA;function update(e:Event):void{&#xA;    var soundBA:ByteArray = new ByteArray();&#xA;    SoundMixer.computeSpectrum(soundBA, false, 0);&#xA;    process.standardInput.writeBytes(soundBA);&#xA;}&#xA;

    &#xA;

  • How to salvage a gigantic, possibly corrupt, AIFF file ?

    9 novembre 2024, par Ross Duncan

    Due to a Sound Track Pro glitch, I have a problematic AIF file. It plays fine in QuickTime Player, and is about 1 hour 50 mins long. However :

    &#xA;&#xA;

      &#xA;
    • It's 3.81GB in size, whereas (I believe) AIF files are only supposed to be 2GB or smaller.
    • &#xA;

    • iTunes refuses to play it.
    • &#xA;

    • Logic Pro gives the error message "party-mix.aif is empty!" when I try to import it.
    • &#xA;

    • VLC will open and play the file, but it ends after an 1 hour (I guess this is the 2GB point).
    • &#xA;

    • Attempting to transcode using ffmpeg to Ogg gives the errors,

      &#xA;&#xA;

      &#xA;

      [aiff @ 0x102051000] max_analyze_duration 5000000 reached at 5001333

      &#xA; &#xA;

      ....

      &#xA; &#xA;

      [pcm_s16be @ 0x10205a200] invalid PCM packet

      &#xA;

      &#xA;&#xA;

      but the resulting file plays in VLC up till 1 hour, when it ends.

    • &#xA;

    • Attempting to transcode using ffmpeg to MP3 gives similar results as Ogg, except that the number of channels must reduced from 6 to 2. This is odd because it was a stereo project - where the extra 4 channels came from I have no idea.
    • &#xA;

    • There are a few places where the audio has been very noticeably sped up.
    • &#xA;

    &#xA;&#xA;

    My question : how can I transcode this frankenstein monster to MP3 without losing the second half ? I am running Mac OS 10.6.8.

    &#xA;