Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

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

Autres articles (100)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • 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

Sur d’autres sites (13308)

  • Using python and ffmpeg to split .mp4 video into chunks of few seconds

    3 juin 2022, par Palm

    I would like to split videos into small chunks of two seconds while maintaining good quality and running fast.

    


    I've tried various techniques on StackOverflow such as

    


    


    But the result does not satisfy me. Some are too slow, and some do not give the short-length chunk.

    


  • vp9 : use superframe split BSF

    17 novembre 2017, par wm4
    vp9 : use superframe split BSF
    

    webm usually has invisible superframes merged with normal frames.
    (vpxenc muxes them in this form, which is evidence enough that this is
    the standard webm packet format. It's rather unclear whether ffmpeg is
    even allowed to remux them with split packets.)

    The vp9 decoder needs them to be in separate packets for multithreading
    to work. Add the BSF to the decoder, so the conversion happens
    automatically.

    This contains the important part of fa1749dd34c55fb9, which
    was apparently skipped in commit d417e95af76. This restores Libav API
    compatibility.

    • [DH] libavcodec/version.h
    • [DH] libavcodec/vp9.c
  • 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