
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 (105)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (16061)
-
avformat/matroskaenc : Check chapter ids for duplicates
15 mars 2021, par Andreas Rheinhardtavformat/matroskaenc : Check chapter ids for duplicates
Up until now, there has been no check that each chapter has a unique id ;
there was only a check for whether a chapter id is zero (this happens
often when the chapters originated from a format that lacks the concept
of chapter id and simply counts from zero) which is invalid in Matroska.
In this case the chapter ids are offset by 1 to make them nonnegative.
Yet offsetting won't fix duplicate ids, therefore this is changed to
simply create new chapter uids when the input chapter uids don't conform
to the requirements of Matroska (in which case it can be presumed that
they did not originate from Matroska, so that we don't need to bother
to preserve them).Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-
ffmpeg start end approximation for CHAPTER metadata differs from ffprobe output
17 mai 2021, par loretoparisiWhen printing the
ffmetadata
with theffmpeg
command

ffmpeg -i INPUT.mp4 -f ffmetadata FFMETADATAFILE



the approximation of the fields
start
andend
in the[CHAPTER]
object like :

[CHAPTER]
TIMEBASE=1/1000
START=533975
END=586975
title=Meltdown/Spectre patched



is slightly different (at some level of approximation) from the same metadata, obtained using the
JSON
output withffprobe
the command :

ffprobe -i INPUT.mp4 -show_chapters -print_format json



that is


{
 "id": 2,
 "time_base": "1/1000",
 "start": 534000,
 "start_time": "534.000000",
 "end": 587000,
 "end_time": "587.000000",
 "tags": {
 "title": "Meltdown/Spectre patched"
 }
 }



Any way to control the approximation in the
ffprobe
output ?

-
avformat/utils : keep chapter monotonicity on chapter updates
1er février 2022, par Michael Niedermayeravformat/utils : keep chapter monotonicity on chapter updates
Updating a chapter with the same id does not break monotonicity
Fixes : Timeout
Fixes : 43727/clusterfuzz-testcase-minimized-ffmpeg_dem_MOV_fuzzer-4960623367159808Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>