Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (21)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (5435)

  • Merge commit ’e66fa35392cd45d0a80774cd057fb765d60def43’

    11 avril 2016, par Derek Buitenhuis
    Merge commit ’e66fa35392cd45d0a80774cd057fb765d60def43’
    

    * commit ’e66fa35392cd45d0a80774cd057fb765d60def43’ :
    vc1dec : Check group allocations separatedly

    Merged-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DH] libavcodec/vc1dec.c
  • Multi core theora encoding

    26 octobre 2012, par Jamie Taylor

    We convert uploaded video to MP4 and OGV, but while trying to speed up the process we've hit a wall. We found the bottleneck is the OGV encoding, While it might take 5 minutes to convert a 350mb AVI to MP4, it takes roughly 25-30 minutes to convert the same file to OGV.

    avconv supports multithreading/multiple cores but it seems that libtheora doesn't, does anyone have any way of encoding over multiple cores ? I found an old mail group which discussed a patch but I can't find much else about it, or if it even still works 5 years on.

    So. Is multi-core theora processing possible and what should I use to do it ?

    For Reference :

    avconv -y -i big_buck_bunny_720p_surround.avi -vcodec libtheora -qscale 10 -bufsize 20M -same_quant -acodec libvorbis -ac 2 -ar 44100 -ab 128k buck.ogv
  • AAC encoder : in IS, fix index of sf_idx, band_type

    8 janvier 2016, par Claudio Freire
    AAC encoder : in IS, fix index of sf_idx, band_type
    

    Correct addressing of sf_idx and band_type arrays in I/S code.

    Both arrays don’t guarantee valid values for subwindows at all
    times, depending on which coder is being used, which could result
    in reading of garbage values. Instead, only the first subwindow
    in the window group has to be used, ie : use w*16+g instead of
    (w+w2)*16+g

    • [DH] libavcodec/aacenc_is.c