Recherche avancée

Médias (1)

Mot : - Tags -/punk

Autres articles (85)

  • 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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (11299)

  • How do I generate a color screen for the duration of an MP3 in ffmpeg ?

    25 février 2019, par yaggelee

    I have successfully generated a blue screen to add to an mp3. But, I have always needed to include the length of the clip to match the mp3. When I don’t include a timecode it continues to generate footage until I cancel the command.

    ffmpeg -f lavfi -i color=blue:s=1920x1080 -i input.mp3 -t 00:02:08 output.mp4

    How do I specify that I only want color generated during the length of the mp3 that I am adding ?

    ffmpeg -i <.jpg> -i <.mp3>

    This worked too but I don’t want to rely on a jpeg file.

  • avcodec/vvc/filter : skip deblocking filter for palette

    14 mai, par Wu Jianhua
    avcodec/vvc/filter : skip deblocking filter for palette
    

    Signed-off-by : Wu Jianhua <toqsxw@outlook.com>

    • [DH] libavcodec/vvc/filter.c
  • ffmpeg showwaves - Change color of waveform on top of an image

    15 août 2020, par Grant SYNKOP

    I need help with ffmpeg.

    &#xA;&#xA;

    I wrote this code :

    &#xA;&#xA;

    @echo off  &#xA;for %%F in (*.opus *.ogg) do &#xA;(  &#xA;  ffmpeg -y -i "%%F" -loop 1 -i "default.jpg" -filter_complex " &#xA; [0:a]showwaves=s=2560x1440:mode=cline:r=30,colorkey=0x000000:0.01:0.1,format=yuva420p[v];&#xA;[1:v][v]overlay[outv]" -map "[outv]" -pix_fmt yuv420p -map 0:a -vcodec libvpx-vp9 -lossless 1 -speed 8 -acodec copy -shortest "%%~nF.webm" &#xA;)&#xA;

    &#xA;&#xA;

    What it does is that for each .opus or .ogg audio file, it'll output a video with a default.jpg background image (which is completely white) and a waveform on top of it, with the audio playing.&#xA;Problem is, I would change the color of the waveform to black, but I don't understand how colorkey works even after reading the documentation...

    &#xA;&#xA;

    Basically, I want to obtain something like this (but the waveform being in black) : https://www.youtube.com/watch?v=k9arneFijG8

    &#xA;&#xA;

    Thanks in advance.

    &#xA;