Recherche avancée

Médias (91)

Autres articles (79)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (7434)

  • rtmpproto : Print the error code string if there’s no description

    3 octobre 2013, par Martin Storsjö
    rtmpproto : Print the error code string if there’s no description
    

    On (certain streams/setups at least on) Red5, the description string
    actually is present, but empty. Therefore, first try loading the
    description, but if not found or empty, load the code string instead.
    The code string is quite understandable in most cases anyway (like
    "NetStream.Play.StreamNotFound").

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/rtmpproto.c
  • avformat/segment : Fix leak of string on error

    5 septembre 2020, par Andreas Rheinhardt
    avformat/segment : Fix leak of string on error
    

    A string containing the segment's filename that the segment muxer
    allocates got only freed in its write_trailer function. This implies
    that it leaks if write_trailer is never called, e.g. if initializing
    the child muxer fails. This commit fixes this by freeing the string
    in the deinit function instead.

    Reviewed-by : Ridley Combs <rcombs@rcombs.me>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/segment.c
  • avfilter/af_headphone : Avoid duplicating string needlessly

    24 août 2020, par Andreas Rheinhardt
    avfilter/af_headphone : Avoid duplicating string needlessly
    

    The string given by an AVOption that contains the channel assignment
    is used only once ; ergo it doesn't matter that parsing the string via
    av_strtok() is destructive. There is no need to make a copy.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavfilter/af_headphone.c