Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

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

Autres articles (20)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (5105)

  • Converting mp4 AAC to AVC using Python

    12 janvier 2020, par zion.b.

    i am using ffmpeg to convert video format. I have a video in mp4 aac and want to convert it to mp4 avc. I successfully(!!!) used ffmpeg to covert image to avi/mkv/even copy of the mp4 but nothing gives me what i desire.

    The idea is to have a video file format that will run on mostly all mobile devices such as mp4 avc.

    My python code :

    import subprocess #need to install ffmpegin terminal/cmd

    def convert_video(video_input, video_output):
       cmds = ['ffmpeg', '-i', video_input, video_output]
       subprocess.Popen(cmds)


    convert_video("videoName.mp4", "videoNameCopy.mp4")
  • FFMPEG command works in shell, but not in node.js

    10 février 2017, par moeiscool

    When my ffmpeg command is built by my node.js application it does not run. it says

    Output file #0 does not contain any stream

    but if i copy and paste that line into terminal it works fine. Any ideas ?

    ffmpeg -loglevel warning -i rtsp://50.73.56.89/axis-media/media.3gp -stimeout 2000 -r 5 -movflags frag_keyframe+empty_moov -s 640x480 -use_wallclock_as_timestamps 1 -q:v 1 -f segment -segment_time 3600000 -segment_format webm -c:v libvpx -strftime 1 '/home/nodejs/cloudcam/videos/2Df5hBE/bunny/%Y-%m-%dT%H-%M-%S.webm'

    note the single quotes wrapping the filename. I tried using double quotes but it did the same thing. I need the quotes for the particular app i am building. Some names are not space friendly.

  • mp3 audio merging with -itsoffset using ffmpeg : no effect

    30 mai 2019, par Itzhak

    I use ffmpeg to merge mp3’s in my node server. It works but the offset doesn’t have any effect..
    I can’t see what is wrong then i’d like to get your help :)

    var command = "ffmpeg -i "+ input1+ " -itsoffset 40 -i " + input2 +" -filter_complex amerge -c:a libmp3lame -q:a 4 "+ output;

           exec(command, function (error, stdout, stderr) {
               if (stdout) console.log(stdout);
               if (stderr) console.log(stderr);

               if (error) {
                   console.log('exec error: ' + error);
                   response.statusCode = 404;
                   response.end();

               } else {
                   // Do something
               }

           });

    I tried it also on my computer just in the terminal and it also works with the same problem..

    Thanks,
    Itzhak