Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (65)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • 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

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

Sur d’autres sites (10307)

  • avcodec/ffv1 : Implement CRC with non zero initial and final value

    25 septembre 2024, par Michael Niedermayer
    avcodec/ffv1 : Implement CRC with non zero initial and final value
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/ffv1.h
    • [DH] libavcodec/ffv1dec.c
    • [DH] libavcodec/ffv1enc.c
  • avfilter/af_asubboost : make wet option apply to final output

    28 novembre 2020, par Paul B Mahol
    avfilter/af_asubboost : make wet option apply to final output
    

    Also changes some default values for options after this change.
    This makes distinction between feedback and wet option.
    Before they would produce same output if values were swapped.

    • [DH] doc/filters.texi
    • [DH] libavfilter/af_asubboost.c
  • FFmpeg command to apply multiple filters and limit the final file size

    16 mars 2016, par Konrad —

    I’m using command below to convert video to a format of the defined scale and in order to hardcode the subtitles

    Original syntax

    ffmpeg -i "Original File.mov"  -vf subtitles=Subtitles.srt -vf scale=1920:1080 \
          -crf 12 "Final File".mov

    Problem

    I would like to expand this command further and :

    • ensure that the produce file is under 2GB
    • I would like to include additional parameters with advanced subtitle options, like setting the canvas size and fixing the potential delay

    Side notes

    I reckon that in case of predefining the file size the -crf 12 paramater will be redundant ?