Recherche avancée

Médias (0)

Mot : - Tags -/upload

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

Autres articles (101)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • 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

  • Participer à sa documentation

    10 avril 2011

    La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
    Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
    Pour ce faire, vous pouvez vous inscrire sur (...)

Sur d’autres sites (4727)

  • Rtp -http streaming method

    2 avril 2014, par user3410545

    I am working on a project that requires a live feed of the mic from the pi ,
    so we started of with this aoss ffmpeg -f oss -i /dev/dsp -acodec mp2 -ab 32k -ar 10000 -r 800 -ac 1 -re -f rtp rtp ://234.5.5.5:2345
    which worked with streaming locally over vlc
    but how can one forward this port to the www, ps, my router has forwarding, and we tried directly passing it , but it didnt work.
    or is there any other or better method/protocol that can be used for www access to this Pi's feed
    hopefully without ssh(cause it is on limited platforms) and without ffserver(delay, duh !)
    any help will be appreciated..
    thanks :D

  • http: restructure http_connect error handling path

    21 mars 2014, par wm4
    http: restructure http_connect error handling path
    

    The authstr memory allocations make it annoying to error in the middle
    of the header setup code, so apply the usual C error handling idiom to
    make it easier to error at any point.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/http.c
  • http: never send ’Cookie : (null)’ to the server

    21 mars 2014, par wm4
    http: never send ’Cookie : (null)’ to the server
    

    If a domain has some cookies set, but matching the cookie fails due to
    the port being different, get_cookies() succeeds, but sets cookies to
    NULL. The caller of get_cookies() didn’t check for the NULL value.

    This also avoids passing NULL to libc string functions, which is
    undefined behavior

    Fixes Ticket2180

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/http.c