Recherche avancée

Médias (0)

Mot : - Tags -/serveur

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (50)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Les notifications de la ferme

    1er décembre 2010, par

    Afin d’assurer une gestion correcte de la ferme, il est nécessaire de notifier plusieurs choses lors d’actions spécifiques à la fois à l’utilisateur mais également à l’ensemble des administrateurs de la ferme.
    Les notifications de changement de statut
    Lors d’un changement de statut d’une instance, l’ensemble des administrateurs de la ferme doivent être notifiés de cette modification ainsi que l’utilisateur administrateur de l’instance.
    À la demande d’un canal
    Passage au statut "publie"
    Passage au (...)

Sur d’autres sites (5767)

  • Ubuntu running .sh file - no such a directory or file

    19 novembre 2013, par user3008028

    I am new to ubuntu/linux.

    I try to follow this tutorial : http://www.roman10.net/how-to-build-ffmpeg-with-ndk-r9/

    When running bash file on step 3 I receive 'no such a directory or file' even though the directory does exists.

  • How to randomly select a file with batch-file ?

    15 septembre 2021, par Mena

    I'm new with ffmpeg, and I tried to find the Answers but didn't help.

    


    I have 4 Audio file name : audio1.mp3 , audio2.mp3 , audio3.mp3 , audio4.mp3
and i want to merg those mp3 to those mp4 one by one with loop.
Here my code bath file that's i tried.

    


    for %%a in ("*.mp4") do ffmpeg -i "%%a" -i ("*.mp3") -map 0:v -map 1:a -c:v copy -shortest "C:\Users\Admin\Desktop\MyOutputVideo\%%~na.mp4" pause


    


    Here what I expect to be like this :

    


    |-----------VIDEO1-----------|
|-----------AUDIO1.mp3-----|
|-----------VIDEO2-----------|
|-----------AUDIO2.mp3-----|
|-----------VIDEO3-----------|
|-----------AUDIO3.mp3-----|
|-----------VIDEO4-----------|
|-----------AUDIO4.mp3-----|
|-----------VIDEO5-----------|
|-----------AUDIO1.mp3-----|
|-----------VIDEO6-----------|
|-----------AUDIO2.mp3-----|


    


  • Can´t convert .mp4 file to .mjpeg file with ffmpeg

    19 février 2018, par Herr HupfDohle

    I use ffmpeg to convert a .mp4 file to a .mjpeg file and I fail doing so.
    What i tried so far :
    Converting directly from .mp4 to .mjpeg with one of these :

       "ffmpeg -i input.mp4 output.mjpeg"
       "ffmpeg -i input.mp4 -framerate 25 output.mjpeg"

    Getting all the individual images of my video (which worked fine) and put them together to a .mjpeg file did not work as well.

       "ffmpeg -i input.mp4 image%d.jpeg"
       "ffmpeg -f image2 -i image%d.jpeg output.mjpeg", or
       "ffmpeg -f image2 -i image%d.jpeg -framerate 25 output.mjpeg"

    "Solutions" like the following one did not work, cause I need a file extension .mjpeg so -c:v mjpeg is not enough cause I end up with sth. like .mov !

    "ffmpeg -i input.mov -c:v mjpeg -q:v 3 -huffman optimal -an output.mov"

    To view my files I use vlc player.

    I always end up with a .mjpeg file which has the length of 10 seconds and only shows the very first image of my 4000 pictures.