
Recherche avancée
Médias (3)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (108)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
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 (16123)
-
Anomalie #4500 : L’attribut meta de paquet.xml n’est pas traité correctement
7 juin 2020, par nicod _==
égalité avec transtypage (plus tolérante)===
égalité stricte (même type)Un test avec === évite souvent des erreurs difficiles à repérer ou à anticiper.
https://www.php.net/manual/fr/language.operators.comparison.php
-
Disable default subtitle track with ffmpeg
23 février 2023, par anonymousI'm creating an MKV container with 4 different files :


- 

- video.mp4
- audio_en.mp4
- audio_es.mp4
- subtitles.ass










For that I'm using the following
ffmpeg
script :

ffmpeg -i video.mp4 -i audio_es.mp4 -i audio_en.mp4 -i subtitles.ass \
-map 0:v -map 1:a -map 2:a -map 3:s \
-metadata:s:a:0 language=spa \
-metadata:s:a:1 language=eng \
-metadata:s:s:0 language=spa -disposition:s:0 -default \
-default -c:v copy -c:a copy -c:a copy -c:s copy result.mkv



The
result.mkv
looks awesome, everything works as expected except for one thing : subtitles are still set as the default track, so players like VLC shows them automatically. I've already tried plenty of different ways to avoid that to happen with thedisposition
flag but I cannot make it work.

How should I modify the script so that the MKV does not have the subtitles track marked as
default
?

Thanks in advance !


-
ffmpeg convert mkv to mp4 with subtitles
18 février 2021, par Frederiki try to convert a mkv file to mp4. but I having trouble getting the subtitles copied.Thats the command I used :
ffmpeg -i input.mkv -c copy -c:s mov_text output.mp4
. The problem is the subtitles r in two different languages. The original has just one language. After copying the subtitles look like this :eng
original language
. Does anyone know how to fix that