Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (72)

  • 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 ;

  • 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

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

  • lavf/http: fix cookie parsing.

    17 août 2014, par Nicolas George
    lavf/http: fix cookie parsing.
    

    The current code would use any unknown attribute-value pair
    as the cookie value.
    RFC 6265 states that the first key-value pair is the actual
    cookie, and the attribute-value pairs only start after.

    With the current code :
    Set-Cookie : test=good_value ; path=/ ; dummy=42
    gives this :
    Cookie : dummy=42
    instead of this with the new code :
    Cookie : test=good_value

    • [DH] libavformat/http.c
  • lavc/hevc_cabac : fix cbf_cb and cbf_cr for transform depth 4

    11 décembre 2019, par Linjie Fu
    lavc/hevc_cabac : fix cbf_cb and cbf_cr for transform depth 4
    

    The max transform depth is 5(from 0 to 4), so we need 5 cabac states for
    cbf_cb and cbf_cr.

    See Table 9-4 for details.

    Signed-off-by : Xu Guangxin <guangxin.xu@intel.com>
    Signed-off-by : Linjie Fu <linjie.fu@intel.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/hevc_cabac.c
  • FFMPEG interactive Mode help options

    7 février 2018, par Pliny Ida Plisetsky

    While streaming a simple command like below

    ffmpeg -i "Alien.mkv" -f webm tcp://localhost:8080/listen.webm

    if I press ’ ?’ ffmpeg seems to have an interactive mode with the below options

      ?      show this help

      +      increase verbosity

      -      decrease verbosity

      c      Send command to first matching filter supporting it

      C      Send/Queue command to all matching filters

      D      cycle through available debug modes

      h      dump packets/hex press to cycle through the 3 states

      q      quit

      s      Show QP histogram

    I was curious about option ’c’

    Does this mean that I can execute further commands on the running stream ? Say for instance seeking a new position in a running stream ? (I realise you wouldn’t normally do this)

    I don’t really know anything about these and couldn’t find much in the ffmpeg documentation or else where. If I press ’c’ it suggests the syntax I should use is :

    Enter command: <target>|all <time>|-1 <command>[ <argument>]
    </argument></command></time></target>

    but I still don’t really understand how to execute a command. Would someone please give a few examples ? I suspect that this isn’t used much.