Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (61)

  • 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

  • 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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (12551)

  • ffmpeg - Sync Audio with image position (Audio Slideshow)

    2 octobre 2022, par dazzafact

    How can i start the audio Files at the same position as the pictures ? (This is for a Image slideShow with changing Audio)

    


     ffmpeg -loop 1 -t 19 -i  1.jpg -loop 1 -t 19 -i  2.jpg  -i  1.mp3  -i  2.mp3  
 -filter_complex "
[0:a]adelay=19s:all=1[1a];
[1:a]adelay=24s:all=1[2a];  

[0:v]scale=1280:720,pad=1280:720:(ow-iw)/2:(oh-ih)/2,setsar=1[0p];
[1:v]scale=1280:720,pad=1280:720:(ow-iw)/2:(oh-ih)/2,setsar=1[1p];

[0p][1p]xfade=transition=fade:duration=1:offset=19[1x];

-map [1x]  -c:v libx264 -c:a copy  -t 39 out.mp4


    


  • avformat/wavenc : skip writing incorrect peak-of-peaks position value

    29 septembre 2017, par Tobias Rapp
    avformat/wavenc : skip writing incorrect peak-of-peaks position value
    

    According to EBU tech 3285 supplement 3 the dwPosPeakOfPeaks field
    should contain the absolute position to the maximum audio sample value,
    but the current implementation writes the relative peak frame index
    instead.

    Fix the issue by writing the "unknown" value (-1) for now until the
    feature is implemented correctly.

    Previous version reviewed-by : Peter Bubestinger <p.bubestinger@av-rd.com>
    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Tobias Rapp <t.rapp@noa-archive.com>

    • [DH] libavformat/version.h
    • [DH] libavformat/wavenc.c
    • [DH] tests/ref/lavf/wav_peak
    • [DH] tests/ref/lavf/wav_peak_only
  • Is it possible to draw a box into a video with the position specified for every single frame ?

    1er juin 2022, par Steven Lu

    With this and this I know that it's possible to set filters that draw something on specific frames or with some simple function of the frame number, but what if I have a lookup table for x and y positions (and width and height) of a box I want to draw, one set for each frame ?

    &#xA;