Recherche avancée

Médias (0)

Mot : - Tags -/inscription3

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

Autres articles (61)

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

  • avfilter/vf_extractplanes : tag alpha plane as full range

    27 octobre 2023, par Niklas Haas
    avfilter/vf_extractplanes : tag alpha plane as full range
    

    Alpha planes are explicitly full range, even for limited range YUVA
    formats. Mark them as such.

    • [DH] libavfilter/vf_extractplanes.c
  • avfilter/vf_alphamerge : warn if input not full range

    27 octobre 2023, par Niklas Haas
    avfilter/vf_alphamerge : warn if input not full range
    

    Alpha planes must always be full range, so complain loudly if fed
    limited range grayscale input.

    • [DH] libavfilter/vf_alphamerge.c
  • How to stretch the WAV file to the same video length ?

    5 octobre 2016, par Michael Heuberger

    So yeah, having a tricky ffmpeg issue here.

    In my app I’m encoding a video based on image frames and add a WAV file for the sound from the same source but through a different web socket. It can happen that the WAV file doesn’t always have exactly the same length as the video based on those images + fps (plus minus few seconds).

    How can I tell ffmpeg to "stretch" the input WAV file to have it the same length as the video ?

    In short : images (i) + WAV (w) = final video (v)

    length(w) != length (v) ... which is causing problems.

    Here an example ffmpeg command I am currently using :

    ffmpeg -f image2 -thread_queue_size 512 -framerate 21.5 -i
    /frames/%d.webp -i videomail_preview.wav -y -acodec aac -strict
    experimental -ac 1 -vcodec libx264 -crf 16 -preset fast -profile:v
    baseline -pix_fmt yuv420p -loglevel warning -movflags +faststart
    videomail_good.mp4 -acodec libvorbis -ac 1 -vcodec libvpx -crf 8
    -deadline good -cpu-used 1 -pix_fmt yuv420p -loglevel warning -movflags +faststart videomail_good.webm

    Any suggestions/trick I am unaware of ?