Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (41)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (5916)

  • encoding multipart mp4 files

    6 mars 2016, par Idris

    I am uploading a large mp4 files in chunks to the server. It is possible to encode these chunks using ffmpeg ? and combine into a single file.

    I tried this but getting moov atom not found/ Invalid data found when processing format.

    However the first part of the chunk encodes correctly

  • avcodec/bitstream : replace qsort with AV_QSORT

    18 octobre 2015, par Ganesh Ajjanagadde
    avcodec/bitstream : replace qsort with AV_QSORT
    

    Commit 3a0a2f33a6c955823fa4fb12c0b49cd29a496659 claims large performance
    advantages for AV_QSORT over libc’s qsort. The reason is that I suspect
    that libc’s qsort (at least on non LTO builds, like the typical FFmpeg config)
    can’t inline the comparison callback :
    https://stackoverflow.com/questions/5290695/is-there-any-way-a-c-c-compiler-can-inline-a-c-callback-function.
    AV_QSORT has two things going for it :
    1. The guaranteed inlining of qsort itself. This yields a negligible
    boost that may be ignored.
    2. The more serious possibility of potentially allowing the comparison
    function to be inlined - this is likely responsible for the large boosts
    reported.

    There is a comment explaining that this is a place that could use some
    performance improvement. Thus AV_QSORT is used to achieve that.

    Benchmarks deemed unnecessary due to existing claims about AV_QSORT.
    Tested with FATE.

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>

    • [DH] libavcodec/bitstream.c
  • Compressing mp3s that contain mostly silence

    2 mars 2019, par cjmaria

    I am looking for the optimal way to compress a large mp3 that contains >80% silence. It seems like mp3s consume nearly the same amount of space for a given duration independent of the content of the file. Are there any other compression formats that would do a better job of reducing the file size without significantly affecting quality of the non-silent parts ?