Recherche avancée

Médias (0)

Mot : - Tags -/flash

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

Autres articles (85)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

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

  • Revision 832e4f3c6d : Merge "Silent -wextra warnings"

    14 juillet 2014, par Yaowu Xu

    Changed Paths :
     Modify /vpxenc.c



    Merge "Silent -wextra warnings"

  • vulkan_av1 : add workaround for NVIDIA drivers tested on broken CTS

    14 avril 2024, par Lynne
    vulkan_av1 : add workaround for NVIDIA drivers tested on broken CTS
    

    The first release of the CTS for AV1 decoding had incorrect
    offsets for the OrderHints values.
    The CTS will be fixed, and eventually, the drivers will be
    updated to the proper spec-conforming behaviour, but we still
    need to add a workaround as this will take months.

    Only NVIDIA use these values at all, so limit the workaround
    to only NVIDIA. Also, other vendors don't tend to provide accurate
    CTS information.

    • [DH] libavcodec/vulkan_av1.c
    • [DH] libavcodec/vulkan_decode.c
    • [DH] libavcodec/vulkan_decode.h
  • Input link in1:v0 parameters (size XXX, SAR XXX) do not match the corresponding output link in0:v0 parameters (XXX, SAR 1:1) [duplicate]

    1er mars 2020, par theapache64

    I’ve two files, a mp4 and a mp3 file. I want to add a 3 seconds intro screen with title Welcome and black background to the head of the video with the mp3 as background. So here’s what I wrote.

    ffmpeg \
       -i input.mp4 \
       -i bgm.mp3 \
       -f lavfi -i color=c=black:s="1280"x"544":d=3.0 \
       -filter_complex \
           "[2:v]
     drawtext=
       fontsize=30
       :fontcolor=white
       :x=(w-text_w)/2
       :y=(h-text_h)/2
       :text='WELCOME',
       geq=0:128:128
    [introVideo];

    [1:a]
       atrim=0.0:3.0
    [introAudio];

    [introVideo][introAudio][0:v][0:a]concat=n=2:v=1:a=1" -preset superfast output.mp4

    but am getting below error when I try to execute the command

    [Parsed_concat_3 @ 0x55c02756fa00] Input link in1:v0 parameters (size 1280x544, SAR 1299:1280) do not match the corresponding output link in0:v0 parameters (1280x544, SAR 1:1)
    [Parsed_concat_3 @ 0x55c02756fa00] Failed to configure output pad on Parsed_concat_3
    Error reinitializing filters!
    Failed to inject frame into filter network: Invalid argument
    Error while processing the decoded data for stream #0:1
    Conversion failed!

    Any help will be highly appreciated.

    PS : I am a beginner in video processing and ffmpeg.