
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (32)
-
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
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 -
Taille des images et des logos définissables
9 février 2011, parDans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)
Sur d’autres sites (6966)
-
vf_hwmap : Add reverse mapping for hardware frames
4 mars 2017, par Mark Thompsonvf_hwmap : Add reverse mapping for hardware frames
This is something of a hack. It allocates a new hwframe context for
the target format, then maps it back to the source link and overwrites
the input link hw_frames_ctx so that the previous filter will receive
the frames we want from ff_get_video_buffer(). It may fail if
the previous filter imposes any additional constraints on the frames
it wants to use as output. -
VP8 Misplaced Plane
16 octobre 2010, par Multimedia Mike — VP8So I’m stubbornly plugging away at my toy VP8 encoder and I managed to produce this gem. See if you can spot the subtle mistake :
The misplaced color plane resulted from using the luma plane stride where it was not appropriate. I fixed that and now chroma planes are wired to use to the same naive prediction algorithm as the luma plane.
Also, I fixed the entropy encoder so that end of block conditions are signaled correctly (instead of my original, suboptimal hack to just encode all zeros). I was disappointed to see that this did not result in a major compression improvement. Then again, I’m using the lowest possible quantization settings for this outing, so perhaps this is to be expected.
Sigh… 4×4 luma prediction is next. Wish me luck.
-
Is it possible to programmatically apply a filter to single frame via ffmpeg without specifying time base ?
13 mai 2023, par Dan M.I'm trying to apply a filter to a single
AVFrame
following the example in https://github.com/FFmpeg/FFmpeg/blob/master/doc/examples/decode_filter_video.c
however it involves setting up

const AVFilter *buffersrc = avfilter_get_by_name("buffer");
...
snprintf(args, sizeof(args),
 "video_size=%dx%d:pix_fmt=%d:time_base=%d/%d:pixel_aspect=%d/%d",
...



After waddling through obscure errors and debugging the ffmpeg I've found that it doesn't like if I drop the
time_base
parameter however I don't know what to specify it to (I don't have access to this information at the point I'm trying to apply the filter) and it doesn't seem relevant to the filter I'm trying to use. Indeed, if I specify something random there I see no difference, however that feels like a hack and I'd like to know if there is some proper way you are supposed to set your filter up without specifying the time base/framerate ?