Recherche avancée

Médias (91)

Autres articles (66)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

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

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (8770)

  • ffmpeg Split And Zoom

    4 décembre 2019, par megaimd mega
    ffmpeg -i video.mp4 -c:v libx264 -crf 22 -map 0 -segment_time 3 -reset_timestamps 1 -g 10 -sc_threshold 0 -force_key_frames “expr:gte(t,n_forced*3)” -f segment out/output%03d.mp4

    As you can see, it is saved :

      output1.mp4
      output2.mp4
      output3.mp4
      output4.mp4

    and so on, it split every 3 seconds.
    Ho can I make, for exemple

      output1.mp4 zoom 2X
      output2.mp4 Normal
      output3.mp4 zoom 2X
      output4.mp4 Normal

    for one movie to zoom in and for another to not zoom

  • ffmpeg drawtext filter with zoom in effect

    21 mai 2018, par testaccount wizorbit

    I am using draw text filter to display text on video.i need to add zoom in and zoom out filter on text. is there any command for zoom in and zoom out the text on video.

  • why zoom effects only applies to first image ?

    18 mai 2019, par Mathematics

    why zoom effects only applies to first image ?

    ffmpeg -i img%03d.jpeg -i 1.mp3 -vf
    zoompan=z=’zoom+0.002’:d=25*5:s=1280x800 -pix_fmt yuv420p -c:v libx264
    -t 01:05:00 out12345.mp4

    I have 3 images, 1 audio, and I am trying to create a video and expecting each image to have zoom effects.

    Here is what I am getting, First image shows zoom effect then 2nd image shows up for a split second and then last image stays without any effect.

    What am I doing wrong ?