Recherche avancée

Médias (0)

Mot : - Tags -/inscription3

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

Autres articles (96)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (5279)

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