Recherche avancée

Médias (0)

Mot : - Tags -/flash

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

Autres articles (38)

  • 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

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (6377)

  • FFMPEG, How to concat mp4 files with different fps to create final video with different fps

    9 octobre 2019, par Newbie Engineer

    I am using following commands

    images to video

    ffmpeg.exe -r 5 -f image2 -s 960x720 -i D :/images%2d.PNG -vcodec libx264 -crf 25 -pix_fmt yuv420p D :/tester.mp4

    I created several mp4 with different fps(5, 10, 15, 20...), and created a list of mp4 files name with different FPS, then tried to concat using

    ffmpeg -f concat -i D :/mylist.txt -c copy final.mp4

    But this is not concatenating properly, last couple of mp4 files are not being joined properly and there is always two or three seconds gap between each joined mp4 files. Wondering if any one has dealt with this issue. I want to keep the FPS of each single mp4 files as it is, trying to get smooth final video with progressing fps like 5, 10, 15, 20.. FPS).

    FFMPEG version 4.2.1, (no audio involved)

  • Revision 59408 : Au final si... c’était nécessaire

    16 mars 2012, par kent1@… — Log

    Au final si... c’était nécessaire

  • ffmpeg command for create final video from two different videos and two different audios

    16 décembre 2020, par Kashyap Rathod

    I have two videos and two audios

    


    1 :-
video 1 - length :- 60 sec || audio 1 - length :- 15 sec

    


    2 :-
video - length :- 86 sec || audio 2 - length :- 18 sec

    


    Play video1 and audio1 together, if audio1 is ended then restart that audio till video1 end. this will final video 1.

    


    same way,

    


    play video2 and audio2 together, if audio2 is ended then restart that audio till video2 end. this will final video 2.

    


    after that concatenate those final video 1 and final video 2 and create single video as output.

    


    Thank you in advance.