
Recherche avancée
Autres articles (85)
-
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 (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)
Sur d’autres sites (8425)
-
avformat/hlsenc : Fix missing EXT-X-DISCONTINUITY tag in subtitle streams
26 septembre 2024, par Jonathan Baeckeravformat/hlsenc : Fix missing EXT-X-DISCONTINUITY tag in subtitle streams
The EXT-X-DISCONTINUITY tag was not being added to subtitle streams,
causing synchronization issues.i
This patch ensures that the tag is applied consistently across video and subtitle streams.Reviewed-by : Steven Liu <lq@chinaffmpeg.org>
-
FFMPEG library | C/C++ | unstable sample count in decoded audio
6 novembre 2024, par Arthur LlewI'm currently learning to use FFMPEG library for my small C++ project. One thing I've noticed while decoding
.mp3
,.ogg
is thatframe->nb_samples
(AVFrame *frame
) starts to flicker on the last several frames. For example, frame consistently had 1024 or 1152 samples but last 4-5 frames have 400-800 samples. This also depends of the file decoder is reading.

According to this thread this might some sort of padding. Is there a way to verify the frame actually contains useful data (other than checking
frame->nb_samples
with some fixed value) ?

-
Unstable sample count in FFmpeg-decoded audio ?
6 novembre 2024, par Arthur LlewI'm currently learning to use FFMPEG library for my small C++ project. One thing I've noticed while decoding
.mp3
,.ogg
is thatframe->nb_samples
(AVFrame *frame
) starts to flicker on the last several frames. For example, frame consistently had 1024 or 1152 samples but last 4-5 frames have 400-800 samples. This also depends of the file decoder is reading.

According to this thread this might some sort of padding. Is there a way to verify the frame actually contains useful data (other than checking
frame->nb_samples
with some fixed value) ?