Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (96)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

Sur d’autres sites (6170)

  • avcodec/hevcdec : further constrain some slice header field values

    20 avril 2023, par James Almer
    avcodec/hevcdec : further constrain some slice header field values
    

    num_ref_idx_l0_active_minus1, num_ref_idx_l1_active_minus1,
    num_ref_idx_l0_default_active_minus1, and num_ref_idx_l1_default_active_minus1
    are all in the range 0 to 14, inclusive.

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

    • [DH] libavcodec/hevc_ps.c
    • [DH] libavcodec/hevcdec.c
  • avfilter/vf_libplacebo : remove deprecated field

    13 mars 2023, par Niklas Haas
    avfilter/vf_libplacebo : remove deprecated field
    

    This has not been functional since a year ago, including in our current
    minimum dependency of libplacebo (v4.192.0). It also causes build errors
    against libplacebo v6, so it needs to be removed from the code. We can
    keep the option around for now, but it should also be removed soon.

    Signed-off-by : Niklas Haas <git@haasn.dev>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] doc/filters.texi
    • [DH] libavfilter/vf_libplacebo.c
  • How to make use of data field from ffprobe's show_packets show_data

    25 janvier 2023, par Cee Wee

    I have this ffprobe command reading from rtsp feed. My aim is to extract video frame and audio frame from the feed along with their associated pts_time. My rtsp feed has h265 video format and aac audio format.

    &#xA;

    I need to pass the video data to OpenCV for processing. OpenCV takes bgr24 format. I used to rely on ffmpeg -i rtsp :// -c copy -f rawvideo -pix_fmt bgr24 -pipe : where its stdout produces video frame in bytes. I am not so sure if this is similar to the "data" in ffprobe packets or not. Doing so has limitation when I need to work on audio and synchronizing audio and video. It seems ffprobe provide both audio and video data naturally in one simple command along with pts_time reference.

    &#xA;

    I have been trying find reference for show_data and its use of data. It would be appreciated if anyone provide guidance on this.

    &#xA;

    ffprobe -hide_banner -loglevel fatal -i rtsp ://... -show_packets -show_data -print_format json

    &#xA;

    &#xA;

    "codec_type" : "video",

    &#xA;

    "stream_index" : 0,

    &#xA;

    "pts" : 28128,

    &#xA;

    "pts_time" : "0.312533",

    &#xA;

    "dts" : 28128,

    &#xA;

    "dts_time" : "0.312533",

    &#xA;

    "duration" : 3600,

    &#xA;

    "duration_time" : "0.040000",

    &#xA;

    "size" : "7937",

    &#xA;

    "flags" : "__",

    &#xA;

    "data" : "\n00000000 : 0000 0102 01d0 02b9 7420 4bfb 5df1 637e ........t K.].c \n00000010 : 0000 0302 2067 e2e9 48f8 6197 3952 8432 .... g..H.a.9R.2\n00000020 : a689 afb5 69ec 0ca>

    &#xA;

    ,

    &#xA;

    &#xA;

    "codec_type" : "audio",

    &#xA;

    "stream_index" : 1,

    &#xA;

    "pts" : 6280,

    &#xA;

    "pts_time" : "0.392500",

    &#xA;

    "dts" : 6280,

    &#xA;

    "dts_time" : "0.392500",

    &#xA;

    "duration" : 1024,

    &#xA;

    "duration_time" : "0.064000",

    &#xA;

    "size" : "258",

    &#xA;

    "flags" : "K_",

    &#xA;

    "data" : "\n00000000 : 0102 9ffe 0b24 2ad1 2962 a5ca a569 0275 .....$*.)b...i.u\n00000010 : 15a0 f442 2f92 95ee abca 7892 00f6 aac8 ...B/.....x.....\n00000020 : ff8d f8b7 f368 5fb>

    &#xA;

    ,

    &#xA;