Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (62)

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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • 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

Sur d’autres sites (7886)

  • Using Java and ffmpeg to most efficiently merge mp3 audio file and jpeg image file to a video file [closed]

    25 juin 2020, par Eugen

    I'm looking for an efficient way in Java to merge a large .mp3 file and a single .jpg image to a video format for youtube. If I use :

    


    ffmpeg -loop 1 -i image.jpg -i audio.mp3 -c:v libx264 -c:a aac -strict experimental -b:a 192k -shortest output.mp4


    


    the result is very slow, especially for large .mp3 files. Is it possible to do it more efficiently with ffmpeg ? I know there must be a way to do it much more efficiently, like all the online converters are doing it.

    


  • list txt file of ffmpeg concat demuxer

    6 septembre 2018, par Sinan Güler

    I wanted to concat 10 files of mp4 of the same format/size/bitrate....
    I had my files and the txt file under the same directory :

    Macbook Pro>Macintosh HD>Users>my username>downloads
    The txt file I created looks like this :
    https://i.imgur.com/LP7HgSS.jpg
    I entered the following command in terminal :

    ffmpeg -f concat -i mylist.txt -c copy output
    but always got the same result : no such directory
    Maybe somebody could help point out my mistakes, appreciated !

  • double rendering with video file(i.e. mov file like) and camera recording file

    17 septembre 2018, par 한승수

    I am making an app for rendering mov file and recorded file by android device at once. because of speed for rendering I cannot use ffmpeg. So I use mediaProjection .virtualdisplay(). but the problem is virtualDisplay only allows to capture screen from very upper left side. so it captures whole upper part of device(which means it captures bar containing battery remains and antenna icons).

    my questions are below

    1. how to capture certain part that I want by using virtualDistply.
    2. any method that I can mitigate rendering speed if I am using ffmpeg ? within 5 second if video length 30 seconds.