Recherche avancée

Médias (1)

Mot : - Tags -/stallman

Autres articles (111)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • 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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (13887)

  • Hot to copy frame data from FFmpegSource2 (FFMS2) FFMS_Frame struct to OpenCV Mat ?

    4 octobre 2013, par Yashil

    I'm trying to read video file using FFmpegSource2 (FFMS2) and then process frames using OpenCV. What is the proper and efficient way to copy frame data from a FFMS_Frame struct returned by FFMS_GetFrame function to an OpenCV Mat ?

    Thank you very much in advance.

  • FFmpeg : How to change tempo dynamically

    25 octobre 2018, par Ankush

    I am working on an android project in which I need to change the tempo of an mp3 (50 seconds audio) file dynamically as shown :

         Time            |    Tempo
    ----------------------------------------------
         0-4             |     1.0    
                         |    
         4-8             | change form 1.0 to 0.5
                         |
         8-12            |     0.5
                         |
         12-16           | change from 0.5 to 1
                         |
         16-20           |     1
                         |
         20-24           | change from 1 to 1.5
                         |
         24-28           |     1.5
                         |
         28-32           | change from 1.5 to 1
                         |
         32-36           |     1
                         |
         36-40           | change from 1 to 1.5
                         |
         40-44           |     1.5
                         |
         44-48           | change from 1.5 to 1
                         |
         48-50           |     1

    I had searched and found that I can use atempo for this. But it changes the whole audio tempo. I think that I can split the audio and apply the effect but it also not work for this type of dynamic task. Please help me to find the solution. Thank you in advance :)

  • Scaling seems to crop edges of video

    7 septembre 2020, par Jao

    I'm doing some automation with FFmpeg and I need to be able to scale up and down videos. So I tried using the scale filter. No issue when I'm scaling up but when I'm scaling down I'm losing a few pixels from the bottom of the video and I must keep everything.

    


    Here is an example :

    


    $ ffmpeg.exe -i video.avi -vf scale=1536:644 video_resized.avi


    


    Here, video.avi is 2048x858.
I tried a lot of parameters, algorithms and flags but nothing seems to "fix" it. Maybe it is normal and I'm not understanding correctly how scaling works but I need to resize without loss of edges.
Thanks in advance