Recherche avancée

Médias (0)

Mot : - Tags -/médias

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

Autres articles (85)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 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 (...)

Sur d’autres sites (10234)

  • tests/fate/opus : change test to use the official reference samples

    25 mai 2014, par Michael Niedermayer
    tests/fate/opus : change test to use the official reference samples
    

    The official samples are 50% smaller
    Avoid having reference samples which are strongly linked to the used resampler
    implementation. (which for example would require new samples to be used if this
    implementation changes)
    Also its more correct to use the official samples instead of the current
    decoder output

    also enable tests
    The tests also fully pass as well with the previous samples.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] tests/fate/opus.mak
  • doc/nut : Clarify what/where is the official nut specification

    14 octobre 2012, par Michael Niedermayer

    doc/nut : Clarify what/where is the official nut specification

  • ffmpeg masks more than one overlay, how can I mask only one ?

    6 juin 2020, par Jonathan Winger-Lang

    I am trying to use an alpha mask to mask the corners of a video, it works. But then I try to add another image on top of them and it is also masked.

    &#xA;&#xA;

    How can I mask only the one video, not subsequent layers ?

    &#xA;&#xA;

    alpha

    &#xA;&#xA;

    Here you can see that the phone frame is also masked, since it does not goo beyond the (x-axis) edges of the phone.

    &#xA;&#xA;

    My script :

    &#xA;&#xA;

    ffmpeg -i input.mp4 \&#xA;   -loop 1 -i mask.png \&#xA;   -i background.png \&#xA;   -loop 1 -i frame2.png \&#xA;-filter_complex \&#xA;   "[0][1]             alphamerge                                         [masked_video];    \&#xA;    [masked_video][3]  overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2  [phone];           \&#xA;    [phone]            scale=(iw*0.5):(ih*0.5)                            [scaled_phone];    \&#xA;    [2][scaled_phone]  overlay=100:100" \&#xA;-shortest out.mp4&#xA;

    &#xA;&#xA;

    Thank you

    &#xA;