Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (57)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

Sur d’autres sites (5074)

  • vf_drawtext : add basetime argument to allow specifying the wall clock time of PTS=0

    30 août 2011, par Michael Niedermayer

    vf_drawtext : add basetime argument to allow specifying the wall clock time of PTS=0

  • FFMPEG overlay dark frame

    21 septembre 2016, par Pavel Chursin

    I have problem with FFMPEG overlaying. It adds black frame around objects with transparent border.
    For example, take the yellow rectangle 100x100. Then generates video from it :

    ./ffmpeg -loop 1 -i yellow.png -t 5 -vcodec qtrle yellow.mov

    Then take a transparent PNG 100x100, within the green rectangle inside 75x75.

    Overlay it on the first video :

    ./ffmpeg -i yellow.mov -i green.png -filter_complex 'overlay' -vcodec qtrle yg.mov

    In the final video green rectangle has got dark frame.

    Result

    How can I remove this frame ?

    EXAMPLE

  • How to let ffmpeg download partial m3u8 video without download the full ones ?

    15 octobre 2018, par 3142 maple

    I want to get a video from a m3u8 stream from range : 21:24 22:54.
    I found a answer at https://superuser.com/questions/758943/ffmpeg-cut-for-time-range , and it said I can use -ss 00:21:24.00 -t 90 to cut it.

    But I found that ffmpeg is actually download the whole video until 00:21:24.00 rather that just download 21:24 22:54 .
    How can I let it just download the 90 seconds I want ?

    The command I came up :

    ffmpeg -i "M3U8URL" -acodec copy -vcodec copy -ss 00:21:24.00 -t 90 output.mp4