Recherche avancée

Médias (0)

Mot : - Tags -/interaction

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)

  • Can't Transfer .DAT (mpeg2 codec) Video to Any Other Format [closed]

    14 mai 2021, par Juan Jinping

    I have a PS2 official bonus DVD which is full of 3 hour cutscenes of MGS3. But I don't have my PS2 anymore to watch it. So I decided to transfer lossless or at least the most lossless possible. Because I am some kind of obsessed.

    


    I tried to use FFMPEG but it doesn't look it worked. At least once a minute the video goes blocky, pixelated. I tried the codes given below. I could find way more better videos on YouTube.

    


    Neither of these and their variations worked :
ffmpeg -i DEMO_3.dat DEMO_3.mkv
ffmpeg -i DEMO_3.dat -c:v libx264 -crf 0 DEMO_3.mkv

    


    I also tried it to use 3000k bitrate because it's the original bitrate of this video ffmpeg -i DEMO_3.dat -c:v libx264 -b 3000k DEMO_3.mkv

    


    Then I thought I could convert them into .png frames then reencode h264 to with "-crf 0". But frames that I extracted were blocky and pixelated too. ffmpeg -i DEMO_3.dat -r 29.970/1 %06d.png

    


    I wanted to check if my disc is broken or damaged. I downloaded the disc that I own as .iso on the internet and tried the same things but got the same results.

    


    And also the audio is not even extracted eventhough Mediainfo says there is 4 audio tracks. (probably besides English any other 3 dubs and I want them too)

    


    Long story short I want the .dat file with highest quality possible video and all audio tracks in the original mpeg2 codec or h264 codec in mkv container. You can recommend me any other program to do it or just give me code advices.

    


  • How To Make Make A Video File From Images Using FFMPEG If Your Images Start At A Random Number [duplicate]

    13 mai 2019, par teot 59

    So I am making a program on my raspberry pi and I am constantly saving pictures in the background and deleting them. So for instance in the images folder I have images from 123.png to 234.png

    for now I have been using this command :

    os.system("ffmpeg -f image2 -r 15 -pattern_type glob -i 'videos/*.png' -vcodec mpeg4 -y movie.avi")

    But it’s unreliable, because it mixes image numbers up

    (sorry for bad English)

  • FFMPEG command works in shell ! but not in my node.js

    29 juillet 2021, par Kuno Kim

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

    



    error

    



    Unrecognized option 'ss 3.2 -t 1.9 -i videoplayback.mp4 -vf  fps=15,scale=240:-1:flags=lanczos,palettegen palette.png'.


    



    command

    



    ffmpeg -ss 3.2 -t 1.9 -i videoplayback.mp4 -vf \ fps=15,scale=240:-1:flags=lanczos,palettegen palette.png


    



    this is my code

    



    var child_process = require('child_process')

function recordVideo() {

var spawn = child_process.spawn;

var args = [
    '-y', 
    '-ss', '3.2',
    '-t', '1.9', 
    '-i', '../getback/bin/videos/videoplayback.mp4', 
    '-vf', ' \\ ', 
    'fps=', '15', 
    'scale=', '320:-1', 
    'flags=','lanczos,palettegen palette.png', 
];



var ffmpeg = spawn('ffmpeg', args);

ffmpeg.stdout.on('data', function (data) {
    console.log(data);
});

ffmpeg.stderr.on('data', function (data) {
    console.log('grep stderr: ' + data);
});

ffmpeg.on('close', (code) => {
    console.log('child process exited with code ' + code);
}); 
};
recordVideo();


    



    what is this error ?
I think.. 'fps=', '15', In the following code 
 '=' options a problem.

    



    I am still learning English.
I'm sorry if it was hard to understand.