Recherche avancée

Médias (91)

Autres articles (101)

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

  • 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

Sur d’autres sites (11017)

  • avdevice/lavfi : Use dedicated pointer to access st->codecpar

    2 décembre 2021, par Andreas Rheinhardt
    avdevice/lavfi : Use dedicated pointer to access st->codecpar
    

    Reviewed-by : Nicolas George <george@nsup.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavdevice/lavfi.c
  • libavdevice/v4l2 : fix invalid access to struct v4l2_buffer

    20 septembre 2017, par Jaroslav Beran
    libavdevice/v4l2 : fix invalid access to struct v4l2_buffer
    

    In case we are short of queued buffers, at first v4l2_buffer was enqueued to kernel so it's not owned by
    user-space anymore. After that it's timestamp field was read, but it might be overwritten by driver at
    that moment. It resulted in invalid timestamp sometimes.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavdevice/v4l2.c
  • FFmpeg dxva2 H264 decoder reinitialize codec - access violation

    18 janvier 2023, par Spuriga

    I have a small project which decodes h264 I frame (SPS+PPS in extradata).&#xA;It uses "dxva2" hw acceleration and works fine until I reinitialize the codec. This can be occured when an rtsp stream change the format. Fe. : h264 to h264H. and the extradata must be changed.

    &#xA;

    The extradata modifying code is :

    &#xA;

        ...&#xA;&#xA;    ret = decode_write(decoder_ctx, packet);          //GOOD    &#xA;    ret = decode_write(decoder_ctx, NULL);&#xA;&#xA;    if (avcodec_close(decoder_ctx) &lt; 0)&#xA;        return -2;&#xA;&#xA;    if (hw_decoder_init(decoder_ctx, type) &lt; 0)&#xA;        return -1;&#xA;&#xA;    if ((ret = avcodec_open2(decoder_ctx, decoder, NULL)) &lt; 0) {&#xA;        fprintf(stderr, "Failed to open codec for stream.\n");&#xA;        return -1;&#xA;    }&#xA;&#xA;    ret = decode_write(decoder_ctx, packet);         //ACCESS VIOLATION&#xA;    ret = decode_write(decoder_ctx, NULL);&#xA;

    &#xA;

    The next avcodec_send_packet goes access violation exception.&#xA;When I switch off the HW acceleration and fallback to CPU this change is works fine.

    &#xA;

    So the only problem when I use dxva2 and reinitialize the codec.

    &#xA;

    The extradata change code is not in this small example, because the error reason is the reinitialize.

    &#xA;