Recherche avancée

Médias (0)

Mot : - Tags -/latitude

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (94)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains 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, par

    Par 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, par

    Pré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
    lavc/bink : Remove the dead code block
    

    Remove the dead code block

    Signed-off-by : Jun Zhao <barryjzhao@tencent.com>

    • [DH] libavcodec/bink.c
  • Glue 2 FLV movies with FFmpeg

    30 octobre 2013, par Rubytastic

    Im 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 Sxilderik

    I 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.

    &#xA;&#xA;

    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.

    &#xA;&#xA;

    If I run

    &#xA;&#xA;

    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"&#xA;

    &#xA;&#xA;

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

    &#xA;&#xA;

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

    &#xA;&#xA;

    Thanks.

    &#xA;