Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (96)

  • 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 (...)

  • 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

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

Sur d’autres sites (12032)

  • Overlay images on video in android

    31 août 2016, par Basit Ali

    I have to overlay images on video on different positions and on different times.
    Currently I am using ffmpeg but it is overhead of doing this frame by frame.
    Also ffmpeg is very complex and takes very much time to process the task.
    Alternatively iOS have avfoundation which is very better and fast. Do we have anything like this in android ?

  • Steps of using ffmpeg in visual studio 2019 ? [closed]

    15 avril 2020, par taimoor1990

    I have to use ffmpeg libraries which I am new to. Currently I am trying to build a basic hello world application that uses ffmpeg. I have googled multiple times there are some answers, saying something like static include these libraries and such comments which I am not sure how. I am looking for a step by step guide to link ffmpeg with a basic hello world app.

    


  • In mp4/h264, why does duplicate a frame need intensive re-encoding with ffmpeg ?

    17 avril 2024, par kwjsksai

    What I want to achieve is to duplicate all frames in 30fps.mp4 and result in a 60 fps video.
    
I tried ffmpeg -i 30fps.mp4 -filter:v fps=60 out.mp4. It does what I want but with re-encoding.
    
And the question is can it be done without re-encoding but only remux ?
    
The reason I'm asking is because intuitively speaking, we usually do shallow copy when same data is used multiple times.
    
So can it be done ? Does the codec/container even allow it ?