Recherche avancée

Médias (91)

Autres articles (65)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

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

Sur d’autres sites (5489)

  • could be recording video & OS timestamp with ffmpeg ?

    2 septembre 2020, par sooyongchoi

    I'm newbie of Video, Image processing.

    


    I want to recording High resolution & frame video with FFmpeg. (1920 * 1080 * 60FPS)
and, I need to Timestamp data of OS(Windows or ubuntu) for each frames.
I hope to Timestamp data is formatted with text data.

    


    I searched any of using FFmpeg, but I couldn't find recording video with timestamp data.

    


    Is there any idea of recording video & timestamp data with ffmpeg ?

    


    Or, could you notice me with simple tip of making solution with ffmpeg ?

    


    Thanks ! :)

    


  • FFMPEG Downgrade Only If 4k Video and Keep Aspect Ratio

    30 août 2020, par Devin Dixon

    Is there a way to downgrade video resolutions if and only if they are above a certain resolution ?

    


    For example, right now I am doing to :

    


    ffmpeg -i 4k_VIdeo.MP4 -vf scale=1920:1080 -c:v libx264 -crf 35 1080-video-smaller.mp4


    


    But if the video is 720:600 or a smaller resolution, I don't want to expand to 1920, also if the video is not the aspect ratio of 1920:1080, I want to keep the same aspect ratio so it doesn't look distorted.

    


    Is there a way of doing this ?

    


  • Ffmpeg how to keep overlay video in loop (Android)

    20 août 2020, par Pandurang Bangar

    I am trying to use video as overlay on another video and keep overlay video in loop, for now overlay video playing only once. I don't know what is going wrong in above cmd. It should play infinite times.

    


    My CMD

    


    ["-y","-i","input_1.mp4","-stream_loop","-1","-i","input_2.mp4","-filter_complex","[0]scale=1080:-1[bg];[bg]crop=1080:1080[base0];[1]scale=550:550[scaled0];[scaled0]rotate=0*PI/180:c=none:ow=rotw(0.0):oh=roth(0.0)[rotated0];[base0][rotated0]overlay=265.0:265.0","-preset","ultrafast","-pix_fmt","yuv420p","-c:a","copy","overlay_video.mp4"]