Recherche avancée

Médias (0)

Mot : - Tags -/serveur

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (23)

  • 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

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (4923)

  • ftp: fix interrupt callback misuse

    16 juillet 2013, par Lukasz Marek
    ftp: fix interrupt callback misuse
    

    FTP protocol used interrupt callback to simulate nonblock
    operation which is a misuse of this callback.

    This commit make FTP protocol fully blocking and removes
    invalid usage of interrutp callback

    Also adds support for multiline responses delimited with dashes

    • [DH] libavformat/ftp.c
  • tls_gnutls : Readd support for nonblocking operation

    19 juin 2017, par Martin Storsjö
    tls_gnutls : Readd support for nonblocking operation
    

    The rtmp protocol uses nonblocking reads, to poll for incoming
    messages from the server while publishing a stream.

    Prior to 94599a6de3822b13c94096d764868128f388ba28 and
    d13b124eaf452b267480074b2e6946538ed03a6e, the tls protocol
    handled the nonblocking flag, mostly as a side effect from not
    using custom IO callbacks for reading from the socket. When custom
    IO callbacks were taken into use in
    d15eec4d6bdfa3bd4c4b5b7dd2dbd699ba253d02, the handling of a nonblocking
    socket wasn’t necessary for the default blocking mode any longer.

    The code was simplified, since it was overlooked that other code
    within libavformat actually used the tls protocol in nonblocking mode.

    This fixes publishing over rtmps, with the gnutls backend.

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

    • [DBH] libavformat/tls_gnutls.c
  • tls_openssl : Readd support for nonblocking operation

    19 juin 2017, par Martin Storsjö
    tls_openssl : Readd support for nonblocking operation
    

    The rtmp protocol uses nonblocking reads, to poll for incoming
    messages from the server while publishing a stream.

    Prior to 94599a6de3822b13c94096d764868128f388ba28 and
    d13b124eaf452b267480074b2e6946538ed03a6e, the tls protocol
    handled the nonblocking flag, mostly as a side effect from not
    using custom IO callbacks for reading from the socket. When custom
    IO callbacks were taken into use in
    d15eec4d6bdfa3bd4c4b5b7dd2dbd699ba253d02, the handling of a nonblocking
    socket wasn’t necessary for the default blocking mode any longer.

    The code was simplified, since it was overlooked that other code
    within libavformat actually used the tls protocol in nonblocking mode.

    This fixes publishing over rtmps, with the openssl backend.

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

    • [DBH] libavformat/tls_openssl.c