Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (14)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

Sur d’autres sites (5909)

  • vdpau : add helper for surface chroma type and size

    19 décembre 2014, par Rémi Denis-Courmont
    vdpau : add helper for surface chroma type and size
    

    Since the VDPAU pixel format does not distinguish between different
    VDPAU video surface chroma types, we need another way to pass this
    data to the application.

    Originally VDPAU in libavcodec only supported decoding to 8-bits YUV
    with 4:2:0 chroma sampling. Correspondingly, applications assumed that
    libavcodec expected VDP_CHROMA_TYPE_420 video surfaces for output.
    However some of the new HEVC profiles proposed for addition to VDPAU
    would require different depth and/or sampling :
    http://lists.freedesktop.org/archives/vdpau/2014-July/000167.html
    ...as would lossless AVC profiles :
    http://lists.freedesktop.org/archives/vdpau/2014-November/000241.html

    To preserve backward binary compatibility with existing applications,
    a new av_vdpau_bind_context() flag is introduced in a further change.

    Signed-off-by : Rémi Denis-Courmont <remi@remlab.net>
    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DBH] doc/APIchanges
    • [DBH] libavcodec/vdpau.c
    • [DBH] libavcodec/vdpau.h
    • [DBH] libavcodec/version.h
  • Fluent-ffmpeg "not a suitable output format"

    5 septembre 2015, par J4G

    I’m using the fluent-ffmpeg module for Node.js to convert audio files. I have a .mp3 file that I’d like to convert to .wma

    Here’s what that looks like :

    var proc = new ffmpeg({
      source: 'file.mp3',
      nolog: false
    }).toFormat('wma')                                                
     .saveToFile('file.wma', function(stdout, stderr)
    {                                                
       console.log(stderr);
    });

    Unfortunately, I get the error :

    Requested output format 'wma' is not a suitable output format

    This is the entire error log :

    ffmpeg version 0.8.9-4:0.8.9-0ubuntu0.12.04.1, Copyright (c) 2000-2013 the Libav developers
     built on Nov  9 2013 19:25:10 with gcc 4.6.3
    *** THIS PROGRAM IS DEPRECATED ***
    This program is only provided for compatibility and will be removed in a future release. Please use avconv instead.
    Input #0, mp3, from 'song_downloads/You Suffer.mp3':
     Metadata:
       title           : You Suffer
       artist          : Napalm Death
       album           : Scum
       genre           : Death Metal
       track           : 12
       date            : 1987
     Duration: 00:00:04.98, start: 0.000000, bitrate: 381 kb/s
       Stream #0.0: Audio: mp3, 44100 Hz, stereo, s16, 193 kb/s
    Requested output format 'wma' is not a suitable output format

    I know this isn’t an ffmpeg issue because

    ffmpeg -i file.mp3 file.wma

    Works fine. Any ideas ?

  • Anomalie #3748 (Fermé) : La fonction recuperer_lapage est obsolète ; à remplacer par recuperer_url

    10 mars 2016

    Après la release de 3.1.1, en local et chez OVH, la détection de version de SPIP affichée en pied du backoffice ne fonctionnait plus.
    Je n’avais pas l’annonce "La mise à jour 3.1.1 de SPIP est disponible" même après lancement du genie mise_a_jour.

    En local mon /tmp/cache/xml/archives.xml restait vide

    Apparement le problème vient de :
    genie/mise_a_jour.php
    $res = recuperer_lapage($url, false, ’GET’, _COPIE_LOCALE_MAX_SIZE, ’’, false, $a) ;
    qui ne renvoie rien
    en remplacant par la fonction non obsolète
    $res = recuperer_url($url) ;
    on récupère bien l’archive et résout le bug