Recherche avancée

Médias (91)

Autres articles (50)

  • List of compatible distributions

    26 avril 2011, par

    The 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 2013

    Puis-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, par

    Pour 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 Zern

    Changed Paths :
     Modify /test/external_frame_buffer_test.cc



    external_frame_buffer_test : quiet static analysis warnings

    add 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 user16948

    I 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 Varshavsky

    I'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.