
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (101)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 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, parMultilang 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 2013Puis-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 (11466)
-
avdevice/lavfi : Use dedicated pointer to access st->codecpar
2 décembre 2021, par Andreas Rheinhardt -
libavdevice/v4l2 : fix invalid access to struct v4l2_buffer
20 septembre 2017, par Jaroslav Beranlibavdevice/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>
-
FFmpeg dxva2 H264 decoder reinitialize codec - access violation
18 janvier 2023, par SpurigaI have a small project which decodes h264 I frame (SPS+PPS in extradata).
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.


The extradata modifying code is :


...

 ret = decode_write(decoder_ctx, packet); //GOOD 
 ret = decode_write(decoder_ctx, NULL);

 if (avcodec_close(decoder_ctx) < 0)
 return -2;

 if (hw_decoder_init(decoder_ctx, type) < 0)
 return -1;

 if ((ret = avcodec_open2(decoder_ctx, decoder, NULL)) < 0) {
 fprintf(stderr, "Failed to open codec for stream.\n");
 return -1;
 }

 ret = decode_write(decoder_ctx, packet); //ACCESS VIOLATION
 ret = decode_write(decoder_ctx, NULL);



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

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


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