Recherche avancée

Médias (91)

Autres articles (103)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (10466)

  • How to scale video in front of image using ffmpeg ? [closed]

    29 juillet 2022, par Nigrimmist

    What i have :

    


    png picture dem.png (not transparent) and video cat.mp4

    


    Current result :

    


    enter image description here

    


    by executing :

    


    ffmpeg -i cat.mp4 -framerate 30 -i dem.png -filter_complex "[1][0]overlay=x=100:y=100" -c:a copy -movflags +faststart out2.mp4


    


    How can i scale mp4 in case i know paddings/required height/width of scaled mp4 here ?

    


    Very beginner in ffmpeg. I know, i need to use scale param, but can't understand how to do it with my current ffmpeg command.

    


    Maybe someone know how to do it ?

    


    Files are here if you need : https://drive.google.com/drive/folders/1gKJCyVU0IgJ8g3zWFhCA-L93lDOWyOS-?usp=sharing

    


  • avcodec/dca_core : Inline number of bits of scale factor VLCs

    6 septembre 2022, par Andreas Rheinhardt
    avcodec/dca_core : Inline number of bits of scale factor VLCs
    

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/dca_core.c
    • [DH] libavcodec/dcahuff.c
    • [DH] libavcodec/dcahuff.h
  • FFmpeg : Scale input image to be used in filter_complex

    26 septembre 2022, par peters675679

    I've got the following ffmpeg command used to find a specific frame within a specified video but I've found that if the resolutions differ ffmpeg won't compare them. So I'm looking to scale the input jpg before the filtering takes place.&#xA;The command :

    &#xA;

    ffmpeg -ss 0 -copyts -i "$video_input" -i "reference_frame.jpg" -filter_complex "[0]extractplanes=y[v];[1]extractplanes=y[i];[v][i]blend=difference,blackframe=0,metadata=select:key=lavfi.blackframe.pblack:value=93:function=greater,trim=duration=0.0001,metadata=print:file=-" -an -vsync 0 -f null -&#xA;

    &#xA;

    I tried introducing [1]scale=1280:720[w] at the beginning of the filter and assigning [w] to the second extractplanes but it extractplanes claims

    &#xA;

    &#xA;

    The following filters could not choose their formats : Parsed_extractplanes_2

    &#xA;

    &#xA;