Recherche avancée

Médias (0)

Mot : - Tags -/flash

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

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.

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

Sur d’autres sites (7917)

  • How to set referer header in FFPLAY ?

    14 janvier 2020, par Marzelo

    I worked with this line :

    ffplay -headers "Referer : https://pels.com/id=13" -i "https://pels.com/ondemand/movie.mp4"

  • Overlaying multiple videos with ffmpeg [closed]

    21 juin 2015, par xZise

    I’m trying to overlay multiple videos into one video with ffmpeg. There is already a question with only one overlay, but I want to add multiple videos at the same time (to avoid multiple encodings).

    I try to use following line :

    ffmpeg -i background.m2v -vf "movie=a.m2v [a]; movie=b.m2v [b]; [in][a] overlay=0:366, [b] overlay=592:41" combined.m2v

    The error is now, that the overlay area (0,366) – (720,942) is not within the main area (0,0) – (720, 210). But if I use only one overlay file alone it works.

    The sizes of the videos :

    • background : 720x576
    • a.m2v : 72x48
    • b.m2v : 720x210

    In the result I want the a.m2v video in the top left corner (the logo) and the b.m2v as a lower third.

  • Get screenshots of video with subtitles

    2 mars 2023, par rkjles

    I'm trying to get a single frame from a video at every 50 seconds with ffmpeg including the subtitles

    


    The code I know of that will output a frame every 50 seconds is

    


    ffmpeg -i “movie.mkv” -vf fps=1/50 img%03d.bmp

    


    and the only code I know of that will take a snapshot of the frame with the subtitles is

    


    ffmpeg -ss 00:09:18 -copyts -i “movie.mkv” -vf subtitles=subtitles.srt -vframes 1 001.png

    


    But I dont know how to incorporate them together so it will take a snapshot with the subtitles at every 50 seconds or if this is even possible

    


    I am new to all of this so if anyone could help me, that would be amazing, thank you