Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

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

Autres articles (111)

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

  • FFMPEG - speed up/slow down video, add jitter etc

    27 septembre 2019, par Darrell

    I’m trying to put together a Windows script that will process short videos in a folder.
    The videos will be shot at a high frame rate 60+ fps and be about 4-5 secs long.

    Basically I am looking to make various style clips, using fast/slow effects, back and forth etc.
    So, the script might process a video, make it start normal speed, then slow motion. Next video might be normal speed, slomo, normal speed slomo. Next video might be forwards,back, forwards back, slomo.

    See example : (this is a compliation, I’m looking at processing individual videos in a folder.)

    http://www.youtube.com/watch?v=K03IBQZu8SQ

    I’m guessing there is no way to do this, other than splitting a clip using FFMPEG, processing the bits, then merging back together ? I can’t seem to find a way to do it as one clip.

  • How to overlay two audio with ffmpeg ?

    20 février 2019, par Mai Lê Nhật Huy

    Im trying mix two audio with these codes :

    for %a in ("audio\*.mp3") do ffmpeg -y -i "%a" -i "background\back.mp3" -filter_complex "[0:0]volume=1[a];[1:0]volume=0.1[b];[a][b]amix=inputs=2:duration=first" "source\%~na.mp3"

    my "back.mp3" is short and i need it repeats until the first mp3 file ends.

    How can i do that ?

  • Double subtitles when hardcoding from .mkv container

    4 novembre 2022, par Goran Hinic

    I'm trying to hardcode subtitles into a file that's in .mkv container, using one of the subtitle strams from the container. I want subtitles to have a black background on them. I'm also trying to keep 10bit encoding and preserve high quiality. Result is ok, except that all subtitles are doubled. So there is a layer of good subtitles in white on black background, and also, half of the font size down, same subtitles in black. Can someone point out the issue with my command ?
Thank you.

    


    Ran this command :

    


    


    ffmpeg -i movie.mkv -vf "subtitles=movie.mkv:si=0:force_style='OutlineColour=&000000000,BorderStyle=3,Outline=3,Shadow=0,MarginV=20'" -c:v libx265 -crf 23 -preset slow -x265-params profile=main10 -c:a copy movie_subs.mkv

    


    


    Expected : White subtitles on black background
Actual : White subtitles on black background with black subtitles half font size down