Recherche avancée

Médias (91)

Autres articles (70)

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

  • 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

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (9764)

  • webp : fix capitalization of the word Exif

    14 janvier 2014, par James Almer
    webp : fix capitalization of the word Exif
    

    Also remove "webp :" from log messages. Using the AVCodecContext is enough.

    Signed-off-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] Changelog
    • [DH] libavcodec/webp.c
  • rtsp : Fix infinite loop in listen mode with UDP transport

    30 septembre 2020, par Martin Storsjö
    rtsp : Fix infinite loop in listen mode with UDP transport
    

    In listen mode with UDP transport, once the sender has sent
    the TEARDOWN and closed the connection, poll will indicate that
    one can read from the connection (indicating that the socket has
    reached EOF and should be closed by the receiver as well). In this
    case, parse_rtsp_message won't try to parse the command (because
    it's no longer in state STREAMING), but previously just returned
    zero.

    Prior to f6161fccf8c5720ceac1ed1df8ba60ff8fed69f5, this caused
    udp_read_packet to return zero, which is treated as EOF by
    read_packet. But after that commit, udp_read_packet would continue
    if parse_rtsp_message didn't return an explicit error code.

    To keep the original behaviour from before that commit, more
    explicitly return an error in parse_rtsp_message when in the wrong
    state.

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

    • [DH] libavformat/rtsp.c
  • FFmpeg drawbox with fill color

    24 septembre 2024, par CoXier

    From doc, I use below command to draw a box and fill it with color.

    &#xA;&#xA;

     ffmpeg -i output.mp4 -vf "drawbox=x=0:y=570:w=in_w:h=40:color=pink@0.5:t=fill" output_1.mp4&#xA;

    &#xA;&#xA;

    I got an error.

    &#xA;&#xA;

    &#xA;

    [Parsed_drawbox_0 @ 0x7fa5c6f05840] [Eval @ 0x7ffee6f23bc0] Undefined constant or missing '(' in 'fill'&#xA; Last message repeated 5 times&#xA; [Parsed_drawbox_0 @ 0x7fa5c6f05840] Error when evaluating the expression 'fill'.&#xA; [Parsed_drawbox_0 @ 0x7fa5c6f05840] Failed to configure input pad on Parsed_drawbox_0

    &#xA;

    &#xA;