Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (22)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • 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

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (6528)

  • Use FFmpeg (or sox) to reduce stereo

    24 juin 2019, par Joschua

    The ffmpeg wiki has this method to mix stereo to stereo :

    enter image description here

    ffmpeg -i input.mp3 -af "pan=stereo|c0code>

    How could I do this but reduce the volume of the right part mixed into the left and the left part mixed into the right (diagonal arrows) by 60%, while leaving the volume of both channels as is (downward arrows) ?

    (If this could be done with sox, it be great too.)

  • avutil/channel_layout : AV_CH_LAYOUT_6POINT1_BACK not reachable in parsing

    1er décembre 2015, par Martin Cracauer
    avutil/channel_layout : AV_CH_LAYOUT_6POINT1_BACK not reachable in parsing
    

    Trying to make heads and tails out of DTS 6.1 I can across this typo.

    I also noticed that this wiki page is incorrect or misleading, the
    channel order for 6.1 given does not match the source code. At the
    least it should be clarified that the layout given does not apply to
    DTS. https://trac.ffmpeg.org/wiki/AudioChannelManipulation

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavutil/channel_layout.c
  • Révision 21389 : Report de r21363 : Amelioration de la gestion du Proxy : gestion des echecs, et ...

    7 juin 2014, par cedric -

    Quand la requête necessite un proxy et qu’elle echoue, il ne faut pas essayer de la relancer en direct via fopen() ou via file_get_contents() car cela produit un timeout sur le firewall éventuel

    Pour faire une requête https à travers un proxy il faut en général passer par un CONNECT initial (https://en.wikipedia.org/wiki/HTTP_tunnel) ce qui n’était pas géré ici. On implémente donc ce dialogue.
    Par soucis de compatibilité il ne sera pris en charge qu’en cas de
    ```define(’_PROXY_HTTPS_VIA_CONNECT’,true) ;```
    dans le fichier mes_options.php. A voir si il faut rendre cette fonctionnalité activable par l’interface et/ou si elle doit être celle active par défaut.