Recherche avancée

Médias (0)

Mot : - Tags -/alertes

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

Autres articles (82)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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 (5878)

  • avdevice/dshow : list_devices : show media type(s) per device

    21 décembre 2021, par Diederick Niehorster
    avdevice/dshow : list_devices : show media type(s) per device
    

    the list_devices option of dshow didn't indicate whether a specific
    device provides audio or video output. This patch iterates through all
    media formats of all pins exposed by the device to see what types it
    provides for capture, and prints this to the console for each device.
    Importantly, this now allows to find devices that provide both audio and
    video, and devices that provide neither.

    Signed-off-by : Diederick Niehorster <dcnieho@gmail.com>
    Reviewed-by : Roger Pack <rogerdpack2@gmail.com>

    • [DH] libavdevice/dshow.c
  • In ffmpeg command-line, how to show all filter settings and their parameters before encoding ?

    7 décembre 2023, par F.X.

    Is there a way to force the ffmpeg command-line to display a comprehensive list of all filters and their parameters, even those that are applied automatically like -vf scale ?

    &#xA;

    (EDIT : To clarify, I do not mean filter documentation, but rather displaying filters that are instantiated at runtime for a particular command-line, just before transcoding starts. The goal of this is mostly checking that ffmpeg is indeed doing the right thing and not inserting/changing filters when I do not intend it to.)

    &#xA;

    There are a few options available, but none are comprehensive enough. For example :

    &#xA;

      &#xA;
    • The lavfi module has a dumpgraph option (here) but only if you're using lavfi.
    • &#xA;

    • The -sws_flags print_info option (here) can be used to determine if -vf scale is applied automatically and shows a subset of its parameters, but not all of them.
    • &#xA;

    &#xA;

    Additionally, this question appears related the answer doesn't answer what I'm looking for.

    &#xA;

    Are there better ways to achieve that ?

    &#xA;

  • FFMPEG show an Image with specific duration in filter_complex chain

    26 juin 2021, par Digerkam

    I have trouble with showing images with a specific duration in filter_complex.

    &#xA;

    I have to use filter_complex, and getting error : "No such filter : 'duration'"

    &#xA;

    So which filter do I need to use ?

    &#xA;

    ffmpeg \&#xA;    -i "music.mp3" \&#xA;    -i "01.mp4" \&#xA;    -i "02.jpg" \&#xA;    -i "03.mp4" \&#xA;    -i "04.jpg" \&#xA;    -i "05.mp4" \&#xA;    -filter_complex " \&#xA;        [1:v]scale=300:400,trim=0:2,setpts=PTS-STARTPTS[v1]; \&#xA;        // Correct filter needed here: \&#xA;        [2:v]scale=300:400,duration=2,setpts=PTS-STARTPTS[v2]; \&#xA;        [3:v]scale=300:400,trim=4:6,setpts=PTS-STARTPTS[v3]; \&#xA;        // And here:&#xA;        [4:v]scale=300:400,duration=2,setpts=PTS-STARTPTS[v4]; \&#xA;        [5:v]scale=300:400,trim=8:10,setpts=PTS-STARTPTS[v5]; \&#xA;        [v1][v2][v3][v4][v5]concat=n=5:v=1:a=0[out] \&#xA;    " \&#xA;    -map "[out]" -map "0:a" -t "12" -c:v "libx264" -pix_fmt "yuv420p" -s "300x400" output.mp4&#xA;

    &#xA;