Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (43)

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

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

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (8658)

  • Run ffmpeg multiple commands

    27 novembre 2015, par Niks

    Im using this ffmpeg command to convert mp3 to wav :

    ffmpeg -i audio.mp3 -acodec libmp3lame -ab 64k -ar 16000 audio.wav

    and this command to create waveform from audio.wav :

    wav2png --foreground-color=ffb400aa --background-color=2e4562ff -o example4.png papa2.wav

    I would love to know, how to run this commands multiple ? For example, when conversion from .mp3 to .wav is done, then run the wav2png command.

    Thank You !

  • Can I use ffmpeg to create multi-bitrate (MBR) MPEG-4 videos ?

    5 décembre 2011, par hoangbv15

    I am currently in a webcam streaming server project that requires the function of dynamically adjusting the stream's bitrate according to the client's settings (screen sizes, processing power...) or the network bandwidth. The encoder is ffmpeg, since it's free and open sourced, and the codec is MPEG-4 part 2. We use live555 for the server part.

    How can I encode MBR MPEG-4 videos using ffmpeg to achieve this ?

  • Join videos side by side

    28 novembre 2020, par Sudipta B

    I need to join two webm videos side-by-side, I've been using the following ffmpeg command to join them :

    


    ffmpeg -i /client.webm -i /client2.webm -filter_complex "[0:v][1:v]hstack=inputs=2[v]; [0:a][1:a]amerge[a]" -map "[v]" -map "[a]" -ac 2 /combined.webm


    


    However, I have 2 issues

    


      

    1. this doesn't seem to work properly if videos are of different dimensions or durations,
    2. 


    3. moreover it seems extremely slow and resource-intensive.
    4. 


    


    I'm eager for any solutions, and I'd love to know if there are any better command-line alternatives.