
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 (67)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...) -
Submit enhancements and plugins
13 avril 2011If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.
Sur d’autres sites (4513)
-
Does stream seek order matter for ffmpeg av_seek_frame() ?
2 janvier 2019, par necrosatoI am attempting to seek both audio and video streams for an mp4 using the ffmpeg
av_seek_frame
method.I have encountered an issue when seeking that I have remedied by changing my seek order, but would like to make sure my fix is actually a fix and not some coincidental hack that works.
I am attempting to seek both the audio and video stream to the first packet. For video, the first packet has a pts of 0. For audio, the first packet has a pts of -1024. The video stream has an index of 0 and the audio stream has an index of 1. This has all been verified using ffprobe on the media file to view the packets and streams.
The following code does not work, it seeks both the audio and video streams to packets with pts of 0 :
for (int i = format_context->nb_streams - 1; i >= 0; --i) {
AVStream* stream = format_context->streams[i];
av_seek_frame(format_context, i, stream->first_dts, flags);
}But this properly seeks the video stream to pts 0 and audio stream to pts -1024 :
for (int i = 0; i < format_context->nb_streams; ++i) {
AVStream* stream = format_context->streams[i];
av_seek_frame(format_context, i, stream->first_dts, flags);
}Note that in the first example, audio is seeked before video, and in the second example video is seeked before audio.
Does the order of the av_seek_frame calls actually matter, or is there a bug somewhere else in my code that this just so happens to cover up ?
-
checkasm/lls : increase epsilon value for the update_lls test
19 juillet 2024, par James Almer -
Revision fa0f418523 : Added row based extend borders Required for frame-based multithreading Change-
21 août 2012, par Scott LaVarnwayChanged Paths : Modify /vp8/decoder/decodframe.c Added row based extend borders Required for frame-based multithreading Change-Id : I361ec468b5bda7836116c5f0bf3a83f60c214a73