Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (54)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

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

  • Anomalie #4050 (Nouveau) : Minifier ne fonctionne pas sur les fichier générés par #PRODUIRE

    25 novembre 2017, par phe nix

    Hello,

    Soit le code suivant :

    $js = ’<script async src='http://core.spip.org/projects/spip/'.minifier(produire_fond_statique('javascript/spip.foundation.js'), 'js').'' type="text/javascript"></script>’ ;
    

    Il ne sera pas minifier, car produire créer un chemin local/cache-js/jsdyn-javascript_spip_foundation_js-caab56e4.js ?1511547016

    Or, l’expression régulière dans compresseur_fonctions, ligne 52 n’accepte pas les querystrings :

    preg_match(’,\.’ . $format . ’$,i’, $source, $r)
    

    Du coup impossible de minifier :)

  • movenc : Write durations based on pts into mvhd/mdhd/tkhd/elst

    14 décembre 2019, par Martin Storsjö
    movenc : Write durations based on pts into mvhd/mdhd/tkhd/elst
    

    Keep all the existing data fields as they are (there's lots and
    lots of nontrivial calculation and heuristics based on them in
    their current form), but derive the duration as the difference
    between the pts of the first packet to the maximum pts+duration
    (not necessarily the last packet) ; use this duration in any box
    where the actual presentation duration is supposed to be.

    Fixes : 8420

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavformat/movenc.c
  • ffmpeg : png overlay (Alpha multiply/unmulitply) [migrated]

    8 juin 2016, par jb_alvarado

    When I overlay png images in ffmpeg it looks like, that it post-multiplay the alpha channel. For some images it is ok, but I also have images, where I get truth this a dark boarder around the color.

    Is it possible to overlay images without a post-multiplied alpha operation in ffmpeg.

    Here are my syntax :

    ffmpeg -i "video.mp4" -i "image.png" -filter_complex \
    "[0:v][1:v]overlay[out]" -map '[out]' -f opengl "test"

    I think the correct expression would be :

    r/a, g/a, b/a, a

    But until now I have not found out how to apply this.