Recherche avancée

Médias (1)

Mot : - Tags -/berlin

Autres articles (96)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 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 (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (10389)

  • Add multiple subtitles to video with ffmpeg-python

    26 mars 2021, par ScottBot10

    I am trying to add multiple subtitles (not burned) to a video file with ffmpeg-python. I have this ffmpeg command :

    


    ffmpeg -i input.mp4 -f srt \
-i "subs/en/en_srt_sub.srt" \
-i "subs/fr/fr_srt_sub" \
-map 0:0 -map 0:1 -map 1:0 -map 2:0 \
-c:v copy -c:a copy \
-c:s srt -c:s srt \
-metadata:s:s:0 language=en -metadata:s:s:0 title=English \
-metadata:s:s:1 language=fr -metadata:s:s:1 title=French \
output.mkv


    


    Is there a way to do this with the ffmpeg-python module or do I just have to use string formatting and subprocess.

    


  • FFmpeg vaapi_transcode example executing error

    17 novembre 2019, par Ilia Noozdrachev-Savitzky

    (Sorry for my English)
    I started to learn ffmpeg.
    When I compiled and started vaapi_transcode.c a had a error Failed to create a "VAAPI device. Error code: Cannot allocate memory

    I took this example from https://github.com/FFmpeg/FFmpeg/blob/master/doc/examples/vaapi_transcode.c

  • FFMPEG + laravel5.2.* ?

    3 mai 2016, par andrey boichenko

    First of all, sorry for my english. Please help me to solve my problem.

    How can I use FFMPEG in Laravel5 if this package don’t have laravel5 wrapper. I tried to use linkthrow/ffmpeg but that didn’t work. I get the following error :

    Unable to load FFProbe

    I’m using openserver on windows 7, path to ffmpeg C:\ffmpeg\bin. And ffmpeg.php in config directory looks like :

    'ffmpeg'        => 'C:\ffmpeg\bin\ffmpeg.exe',
    'ffprobe'        => 'C:\ffmpeg\bin\ffprobe.exe'

    So my question is, how can I use linkthrow/ffmpeg or how to use original ffmpeg without laravel wrapper ? I tried to google it for over an hour, but still didn’t get the result. Thanks for any help !