
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (96)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 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, parMultilang 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, parThe 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 ScottBot10I 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 errorFailed 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 boichenkoFirst of all, sorry for my english. Please help me to solve my problem.
How can I use
FFMPEG
inLaravel5
if this package don’t havelaravel5 wrapper
. I tried to uselinkthrow/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
. Andffmpeg.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 originalffmpeg
withoutlaravel wrapper
? I tried to google it for over an hour, but still didn’t get the result. Thanks for any help !