
Recherche avancée
Médias (3)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
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 (16033)
-
avformat/hlsenc : process hls_time value too small sence
18 août 2020, par Steven Liuavformat/hlsenc : process hls_time value too small sence
The target duration will be a negative value when there are
some b frames after prevous frame, the pts after current packet
is large than the pts of current packet, so the target duration
will compute as 0.040000 - 0.080000, then the value of the target
duration will be -0.040000. so hls muxer should check the pts after
current packet minus the pts of current packet, hls muxer can split
the stream as a segment if the target duration is neither negative nor
zero, hls muxer cannot split the stream as a segment if the
target duration is either negative or zero then get the next packet
until the target duration is not negative or zero.Signed-off-by : Steven Liu <lq@chinaffmpeg.org>
Suggested-by : Zhili Zhao <quinkblack@foxmail.com>
Signed-off-by : liuqi05 <liuqi05@kuaishou.com> -
ffmpeg mov_text subtitle too small when converting mkv to mp4
16 octobre 2020, par Utkarsh SinghI want to remux a mkv file into mp4.
I used the following command.


ffmpeg -i "input.mkv" -c:v copy -c:a copy -map 0:0 -map 0:1 -map 0:2 -map 0:3 -c:s mov_text "output.mp4"



Problem : The subtitles in the
output.mp4
file are way too small.

Also, the subtitles of the mp4 file are unaffected when I try to make them bigger from vlc preferences.
I can turn them on/off but I think they are somewhat hardcoded.
I had to rencode subtitles while remuxing as otherwise it was showing error.


input.mkv
:



output.mp4
:





input.mkv
has the following streams,codecs :



I searched a lot, but couldn't find a way to make
mov_text
subtitles bigger. How can I make them bigger ?

Or Please suggest any other way to retain the subtitles while remuxing from mkv to mp4.


-
avfilter/vf_minterpolate : Reject too small dimensions
6 octobre 2020, par Andreas Rheinhardtavfilter/vf_minterpolate : Reject too small dimensions
The latter code relies upon the dimensions to be not too small ;
otherwise one will call av_clip() with min > max lateron which aborts
in case ASSERT_LEVEL is >= 2 or one will get a nonsense result that may
lead to a heap-buffer-overflow/underflow. The latter has happened in
ticket #8248 which this commit fixes.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>