Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (103)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • 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 ;

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

Sur d’autres sites (12133)

  • fftools/ffmpeg : propagate frame durations to packets when encoding

    14 avril 2023, par Anton Khirnov
    fftools/ffmpeg : propagate frame durations to packets when encoding
    

    Remove now-obsolete code setting packet durations pre-muxing for CFR
    encoded video.

    Changes output in the following FATE tests :
    * numerous adpcm tests
    * ffmpeg-filter_complex_audio
    * lavf-asf
    * lavf-mkv
    * lavf-mkv_attachment
    * matroska-encoding-delay
    All of these change due to the fact that the output duration is now
    the actual input data duration and does not include padding added by
    the encoder.

    * apng-osample : less wrong packet durations are now passed to the muxer.
    They are not entirely correct, because the first frame duration should
    be 3 rather than 2. This is caused by the vsync code and should be
    addressed later, but this change is a step in the right direction.
    * tscc2-mov : last output frame has a duration of 11 rather than 1 - this
    corresponds to the duration actually returned by the demuxer.
    * film-cvid : video frame durations are now 2 rather than 1 - this
    corresponds to durations actually returned by the demuxer and matches
    the timestamps.
    * mpeg2-ticket6677 : durations of some video frames are now 2 rather than
    1 - this matches the timestamps.

    • [DH] fftools/ffmpeg_enc.c
    • [DH] fftools/ffmpeg_mux.c
    • [DH] tests/ref/acodec/adpcm-ima_wav
    • [DH] tests/ref/acodec/adpcm-ima_wav-trellis
    • [DH] tests/ref/acodec/adpcm-ms
    • [DH] tests/ref/acodec/adpcm-ms-trellis
    • [DH] tests/ref/acodec/adpcm-swf
    • [DH] tests/ref/acodec/adpcm-swf-trellis
    • [DH] tests/ref/acodec/adpcm-swf-wav
    • [DH] tests/ref/acodec/adpcm-yamaha
    • [DH] tests/ref/acodec/adpcm-yamaha-trellis
    • [DH] tests/ref/fate/apng-osample
    • [DH] tests/ref/fate/autorotate
    • [DH] tests/ref/fate/ffmpeg-filter_complex_audio
    • [DH] tests/ref/fate/film-cvid
    • [DH] tests/ref/fate/matroska-encoding-delay
    • [DH] tests/ref/fate/mpeg2-ticket6677
    • [DH] tests/ref/fate/tscc2-mov
    • [DH] tests/ref/lavf/asf
    • [DH] tests/ref/lavf/mkv
    • [DH] tests/ref/lavf/mkv_attachment
  • How to use hardware acceleration for ffmpeg [closed]

    11 mars 2024, par Kevin Gilbert

    I am try to get hardware acceleration going on my Dell Inspiron AMD laptop. It appears that vaapi is installed but how to I use it in ffmpeg ?

    


    For testing, all I want is to accelerate

    


    ffmpeg -i input.ts output.mp4


    


    Currently, the unaccelerated command I am currently using is

    


    ffmpeg -y -i input.ts -c:v libx264 -preset slower -tune film -filter_complex scale=1080:608 -sws_flags lanczos output.mp4


    


    BTW : Environment is fully up-to-date Fedora 39 with stock ffmpeg.

    


  • how can i add watermark and compress a batch of video with ffmpeg

    27 mai 2021, par The Funsters

    i am using ffmpeg for video editing

    


    i am adding watermark to a bulk of videos with

    


    for %%a in ("*.mp4") do ffmpeg -i "%%a" -i watermark.jpg -filter_complex "overlay=1000:10" -preset slow -codec:a copy "newfiles%% na.mp4"

    


    now i want to merge

    


    for %%a in ("*.mp4") do ffmpeg -i "%%a" -vcodec libx264 -crf 28 -preset faster -tune film "newfiles%% na.mp4"

    


    so it will add watermark and compress the size of the videos

    


    is there any way to merge them ?????