Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (62)

  • 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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (8949)

  • imc : Use correct position for flcoeffs2 calculation

    10 juillet 2015, par Andreas Cadhalpun
    imc : Use correct position for flcoeffs2 calculation
    

    flcoeffs2[pos] should be the log2 of flcoeffs1[pos].
    flcoeffs1[0] can be 0 here, thus flcoeffs2[pos] gets set to -inf,
    causing problems further down.

    This seems to have been copied from imc_decode_level_coefficients in
    commit 4eb4bb3 without updating the position.

    Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libavcodec/imc.c
  • FFMPEG Extract subtitles at webvtt format while keep position on the screen

    30 septembre 2020, par Maxou

    i'm working on a project where I need to extract subtitles from video files and convert it to WEBVTT format. But when I extract and convert it with FFMPEG my webvtt files doesn't keep the position.

    &#xA;

    What I want

    &#xA;

    00:00:11.000 --> 00:00:13.000 align:start&#xA;

    &#xA;

    What I get

    &#xA;

    00:00:11.000 --> 00:00:13.000&#xA;

    &#xA;

    While when I test to extract at .ass files the position of the subtitles is keep.

    &#xA;

    To extract I use this command

    &#xA;

    ffmpeg -i {filename} -map 0:s:0 -muxdelay 0 -f webvtt subtitles.vtt&#xA;

    &#xA;

    Thanks in advance

    &#xA;

  • FFMPEG video Zoom to a Position X Y

    24 mai 2020, par Pilonas

    I want during zoom, zoom position is constantly changing as the video below

    &#xA;&#xA;

    https://youtu.be/hdFlP7ir07g

    &#xA;&#xA;

    This is the code I tried. &#xA;But it does not work continuously but only works for the first 3 seconds

    &#xA;&#xA;

    Thank you for taking time for me

    &#xA;&#xA;

     ffmpeg -y -i 1.mp4 -vf "scale=iw*4:ih*4,zoompan=z=&#x27;if(lte(mod(on,125),50),zoom&#x2B;0.5,zoom-0.5)&#x27;:x=&#x27;iw/2-iw*(1/2-88/100)*on/150-iw/zoom/3&#x27;:y=&#x27;ih/2-ih*(1/2-94/100)*on/150-ih/zoom/3&#x27;:d=0"  -c:v libx264  -s "1280x720" out.mp4&#xA;

    &#xA;