
Recherche avancée
Autres articles (104)
-
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 (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (...) -
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
Sur d’autres sites (9330)
-
Can't figure out stream mapping/commands
11 avril 2020, par Jessie WilsonHelp with stream mapping/commands



I'm fairly new to FFMPEG. I've always encoded with GUI's. However, I've been setting up batch files to make some things easier for me !



I'm taking a source file that is1080p video



dts 5.1 1500 kb stream



with english subs.



I'm wanting to copy the video and take the DTS track, convert to AAC 2.0 at 192k and make a secondary audio track ac3 5.1 640k.



This is the command i'm trying to use but no matter how many times I run it the audio channels and or bitrates get mixed up.



for %%a in ("*.mkv") do ffmpeg -i "%%a" ^
-map 0:0 -map 0:1 -map 0:1 -map 0:2 ^
-c:v:0 copy ^
-c:a:0 aac -ac:0 2 -b:a:0 192k ^
-c:a:1 ac3 -ac:1 6 -b:a:1 640k ^
-c:s:0 copy ^
"\TEST%%~na.mkv"
pause




Any help would be appreciated !


-
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