
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (50)
-
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 (...) -
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 -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (12989)
-
Revision b373301e1f : external_frame_buffer_test : quiet static analysis warnings add explicit returns
18 mars 2015, par James ZernChanged Paths :
Modify /test/external_frame_buffer_test.cc
external_frame_buffer_test : quiet static analysis warningsadd explicit returns in cases where ASSERT_* can’t be used due to the
function returning a value ; retain the EXPECT_* for reporting purposes.Change-Id : I1f514728537fee42a99277d3aba538e832d3b65b
-
PHPVideoToolkit getFFmpegInfo() returns an array with empty codecs
11 novembre 2012, par user16948I have install ffmpeg and
ffmpeg -codecs
returns a huge list of codecs. But output of the following code :$ffmpeg = $toolkit->getFFmpegInfo(FALSE);
print_r($ffmpeg);is this :
...
[codecs] => Array
(
[video] => Array
(
)
[audio] => Array
(
)
[subtitle] => Array
(
)
)It doesn't find any codec. Any suggestion ? (I have installed ffmpeg from source)
-
FMMPEG command to create subtitles isn't using the right font (python)
25 juillet 2023, par Anton VarshavskyI'm trying to use python to run an
ffmpeg
command using subprocess to add subtitles onto a video, using an srt file.

I tried the following :


command = ["ffmpeg", "-y", "-i", "output.mp4", "-vf", "subtitles=testsrt.srt:force_style='Fontname=saveur-sans-bold.ttf,FontSize=24,PrimaryColour=&H03fcff,Alignment=10, Bold=5'","raw_output2.mp4"]

subprocess.run(command, check=True)



While it creates the subtitles, it doesn't use the correct fon't (neither does it make it bold but that's less of an issue). What should I change to get the right font working ? Please keep in mind that this is python code so syntax may be slightly different from the usual
ffmpeg
commands. Thank you in advance.