Recherche avancée

Médias (91)

Autres articles (9)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (2180)

  • avformat/oggparsevorbis : Use AV_DICT_DONT_STRDUP_VAL to avoid av_strdup

    11 novembre 2019, par Andreas Rheinhardt
    avformat/oggparsevorbis : Use AV_DICT_DONT_STRDUP_VAL to avoid av_strdup
    

    This will likely also fix CID 1452427, a false positive resulting from
    Coverity thinking that av_dict_set() automatically frees its key and
    value parameters (even without the AV_DICT_DONT_STRDUP_* flags).

    (AV_DICT_APPEND and AV_DICT_DONT_STRDUP_VAL are compatible with each
    other since a8c5b455, so we can reset this flag here. It has originally
    been removed in 0dc66553 when appending was added.)

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/oggparsevorbis.c
  • avcodec/decode : stop trying to initialize palette values in avcodec_default_get_buffer2()

    2 mai 2021, par James Almer
    avcodec/decode : stop trying to initialize palette values in avcodec_default_get_buffer2()
    

    avpriv_set_systematic_pal2() is meant to fill fixed vales for formats that
    until recently were tagged as "pseudo pal". This is no longer the case, so
    this call is a no-op when used on real PAL formats.

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

    • [DH] libavcodec/decode.c
  • how to convert RTPDUMP video file to mp4

    2 mars 2017, par Asain Kujovic

    Viber recently got "instant video message" option, called also "video push-to-talk" (vptt).

    Inside viber data in directory ".vptt" there are files with vptt extension. Envelope format is classic ZIP file, when extracted gives jpg-thumbnail and ’video’ file.

    Video file says "# !rtpplay1.0" inside first line, so it should be format of rtp-tools, used by wireshark too, and somehow related to actual WebRTC trends...

    So if video content inside this rtpdump file is not encrypted ( ? ), "how to save viber instant message push to talk video" boils down to just : "how to convert rtpdump video to mp4".

    rtpplay can send it to some port, but ffmpeg/ffplay/vlc needs correct sdp file.

    does someone knows something further about this ?