Recherche avancée

Médias (91)

Autres articles (25)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (3891)

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