Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (87)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (10298)

  • avformat/hls : ignore http_persistent for segments requring crypto

    30 décembre 2017, par Aman Gupta
    avformat/hls : ignore http_persistent for segments requring crypto
    

    Encrypted HLS segments have regular http:// urls, but open_input()
    actually prefixes them with crypto+ before calling open_url(), so
    they end up using the crypto protocol and not the http protocol.

    This means invoking ff_http_do_new_request will fail, so we avoid
    calling it in the first place. After the earlier http.c commit,
    the failure results in a warning printed to the user. In earlier
    versions, the failure would cause a segfault.

    Signed-off-by : Aman Gupta <aman@tmm1.net>

    • [DH] libavformat/hls.c
  • ffmpeg : Ignore SIGPIPE

    19 janvier 2018, par Mark Thompson
    ffmpeg : Ignore SIGPIPE
    

    On systems which deliver SIGPIPE (Unices), a broken pipe will currently
    result in the immediate termination of the ffmpeg process (the default
    disposition as required by POSIX). This is undesirable, because while
    the broken pipe is likely fatal to useful cleanup of whatever component
    is writing to it, there might be other components which can do useful
    cleanup - for example, a muxer on another stream may still need to write
    indexes to complete a file. Therefore, set the signal disposition for
    SIGPIPE to ignore the signal - the call which caused the signal will
    fail with EPIPE and the error will be propagated upwards like any other
    I/O failure on a single stream.

    • [DH] fftools/ffmpeg.c
  • avformat/matroskadec : ignore CodecPrivate if the stream is VP9

    13 janvier 2018, par James Almer
    avformat/matroskadec : ignore CodecPrivate if the stream is VP9
    

    Defined in a recent revision of https://www.webmproject.org/docs/container/

    This prevents storing the contents of CodecPrivate into extradata for
    a codec that doesn't need nor expect any. It will among other things
    prevent matroska specific binary data from being dumped onto other
    formats during remuxing.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/matroskadec.c