Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (60)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • 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

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (11963)

  • doc/developer.texi : extend the argument for submitting patches

    9 novembre 2022, par Anton Khirnov
    doc/developer.texi : extend the argument for submitting patches
    

    Stop talking about commercial programs, since this applies to any
    downstream user.

    • [DH] doc/developer.texi
  • avutil/utf8 : put under #ifdef TEST

    22 novembre 2013, par Michael Niedermayer
    avutil/utf8 : put under #ifdef TEST
    

    All other test programs are under #ifdef TEST too
    with the implementation and test code being generally in the same file

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

    • [DH] libavutil/utf8.c
  • How do I crossfade between scenes in ffmpeg using a complex filter ?

    15 mars 2014, par scubed

    I have ffmpeg 2.1.4 and an input movie in.mkv.
    There are effectively 2 different scenes inside of in.mkv. I want to be able to crossfade between the scenes, preferably with just using a complex filter instead of external programs. Essentially, I want to have something like an overlay but with the alpha changing at a specific time.

    Consider if in.mkv looked like this :

    00:00 - 00:05 scene 1
    00:05 - 00:10 junk
    00:10 - 00:15 scene 2

    So, I would want an output that had :

    00:00 - 00:04 scene 1 (0-4)
    00:04 - 00:05 alpha fading between scene 1 (4-5) and 2 (10-11)
    00:05 - 00:09 scene 2 (11-15)

    I see that there's a filter for : overlay, alphamerge, and color, but it's not clear how exactly to do this.

    In general, it seems hard to work with pieces of a movie file in ffmpeg. Is there a way to say that I am taking various pieces of the same input file and putting them together without rendering them as separate movies first ?