Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (63)

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

  • Problems cropping videos with ffmpeg -ss -t

    8 décembre 2016, par Alex Bollbach

    I have been trying to figure out how to precisely crop out sub-sections of a video final.mp4, for example a cropped video with range [0.2, 0.28] or [9.1, 10.2]. So I’ve been using ffmpeg with -ss and -t options. The following command (or some similar form) is what I’ve seen prescribed :

    ffmpeg -y -i final.mp4 -ss 00:00:01 -t 00:00:01.5 -acodec copy -vcodec copy crop1.mp4

    What I expect is a cropped video of length 1.5 starting at time 1.0, but I get a broken video that doesn’t play. Or I’ll try :

    ffmpeg -y -i final.mp4 -ss 1 -c copy -t 1.5 crop1.mp4

    and get a video with the audio cropped to 1.5 seconds but the video lasting much longer freeze framed.

    The point is this should be a relatively straightforward operation but I’m running into problems at every turn. What is wrong with these commands ? My original video is a 7 minute youtube ripped mp4 which I trimmed down to 10 seconds (this seemed to work). But now further finer-grain trimming of that video is showing confusing behavior. Perhaps my video file is somehow in a bad state from the first trimming ?

  • ffmpeg scale filter takes too long

    17 juin 2020, par Prashant_Sarin

    I am using below command to scale and blur a video but it is very slow. Can anyone please help if i can improve the speed somehow.

    



    "ffmpeg -i $inputPath -lavfi [0:v]split=2[original][copy];[copy]scale=ih*16/9:-1,crop=h=iw*9/16,boxblur=luma_radius=50:chroma_radius=25:luma_power=2[blurred];[blurred][original]overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2[final] -map [final] -map a:0 -g 2 -preset ultrafast $outputPath -y"


    


  • FFMPEG - Instructional video combining letters to a background to form a word

    6 juin 2020, par Knide

    I'm trying to help with coding a FREE site for instructional video for kids on how to write in australian. To help with the current pandemic that we are experiencing right now.

    



    Anyway, I'm new to ffmpeg and would like to do the letter combinations programatically using it.

    



    So basically I have a form where teachers or parents can enter a word, and I have video instructions for each letter, and would combine them to form the word.

    



    Example : Dog

    



    This is the background :
https://drive.google.com/file/d/1Ds1sRKQ98c5d31dI6qkqTrp1U9f89nv2/view?usp=sharing

    



    These are the letters :

    



    D - https://drive.google.com/file/d/1DHa1sZ7mklY1p3lquD8h5kTbXaZmtB_z/view?usp=sharing

    



    o - https://drive.google.com/file/d/1Ytwq_3l7x0vRDMEpZpmFjT9QNICYWH_D/view?usp=sharing

    



    g - https://drive.google.com/file/d/16jcOsrSbMSbsk2vsqeMXv9Cc4Uss7qtj/view?usp=sharing

    



    And the output would become :
https://drive.google.com/file/d/1RT38IOwXsL9kW9mj41KrxwfI_kdZy45j/view?usp=sharing

    



    If you could help with supplying what ffmpeg code we could use to have the output video, that would be great.