Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (98)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

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

  • ac3 : Clean up the error paths

    28 juillet 2013, par Luca Barbato
    ac3 : Clean up the error paths
    
    • [DH] libavcodec/ac3dec.c
  • avcodec/avpacket : Use av_free_packet() in error cleanups

    30 août 2013, par Michael Niedermayer
    avcodec/avpacket : Use av_free_packet() in error cleanups
    

    This prevents memleaks on errors
    reproduceable with fate when error pathes are forced

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/avpacket.c
  • avconv is killing me with an error I don't understand

    31 août 2013, par mikecole79

    I'm trying to script some testing of Wowza Media Server. Basically, I'm attempting to just beat the living bejeepers out of the thing. I have 5 slightly older computers, originally XP boxes, which I have installed Mint 15 on. I have a script that basically calls the file (or a symbolic link to the file) and takes it into avconv, then dumps it into null.

    The idea here is that with 5 of these computers all starting a new thread every second, up to the max they can handle without freezing, we'll get a decent idea of what our current implementation can handle. The script I have works great, but only on some machines. The systems are all the same hardware, and I installed the same software on them in the beginning, although some of them may have had additional packages installed for various tasks since then. The command I issue in script is :

    timeout 30m avconv -y -re -i http://ourDomainName:1935/path/to/file/mp4:FileName.mp4/playlist.m3u8 -strict experimental -f mp4 /dev/null &amp;

    It works fine on 2 machines, fails on three. I don't know why. The only thing I can think of is that there is a codec that's on those working two and not on the other 3, but I have not yet had any luck tracking that down (still trying even while asking for help).

    Does anyone know some magic here that would allow it to find the needed codec, or install a bunch of codecs, or something ? I have libavcodec-extra-53 installed.

    Thanks !