
Recherche avancée
Autres articles (94)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (10444)
-
lavc/bink : Remove the dead code block
10 mai 2019, par Jun Zhao -
Glue 2 FLV movies with FFmpeg
30 octobre 2013, par RubytasticIm new to ffmpeg and the documentations are overwhelming.
Would like to "Glue" 2 FLV movies together (ascii art does not work here so)
[ 1 ] [ 2 ]
[1][2] <= create 1 new movie with the 2 video's playing next to each other
-
ffmpeg : how to extract 1st video, english audio and french subtitle from video file in one command line ?
15 mai 2020, par SxilderikI have read many posts related to extracting streams per language with ffmpeg, but it seems that the
-map 0:m:language:xxx
is global, and goes for all streams.


Let’s say I have a video file that contains hopefully one english audio stream and some french subtitle streams, among possibly many other streams. I want to get a smaller file with the first video track, the (first) english audio stream and all the french subtitle streams.



If I run



ffmpeg -i "$file" -map 0:v:0 -vcodec copy -map 0:m:language:eng -acodec copy -map 0:m:language:fre -scodec copy -f matroska "${file%.*}.mkv_out"




I get in
file.mkv_out
all audio and subtitle tracks which are either french or english.


Is there a way to achieve this, without having any prior knowledge of track numbers in the original file ?



Thanks.