Recherche avancée

Médias (91)

Autres articles (18)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • How can I batch/sequentially download m3u8 files using ffmpeg & Power Shell in Windows ?

    28 février 2020, par piznajko

    There’s a similar question asked asked by Yesterdec but for Mac batch scirpt

    I’m currently downloading m3u8 videos one by one using the following Power Shell command on Windows :

    ffmpeg -i "http://example.com/video_url.m3u8" -c copy -bsf:a aac_adtstoasc "output.mp4"

    I want to automate this process, using some FetchURL.bat scirt and a URLs.txt file with the URLs (each URL there is seperated by a new line) to download one by one multiple m3u8 videos from the URLs.txt.

  • download rtmp live stream video secondly

    15 juillet 2024, par Chenguang He

    I'm working on a java project to create a rtmp server and download the real-time flv video every second(need to download multiple recording frame secondly instead of download entire recording after live stream finished)
This is my logic, firstly listen to the rtmp channel to write video and audio into file

    


    if(msg instanceof VideoMessage vm){
byteArrayOutputStream = new ByteArrayOutputStream();
 byteArrayOutputStream.writeBytes(vm.getVideoData());
            File file = new File("tmp/video_" + i);
            FileOutputStream fos = new FileOutputStream(file);
            fos.write(byteArrayOutputStream.toByteArray());
            fos.close();

}


    


    Then decode to H264 to get playable flv file

    


    FFmpegFrameGrabber grabber = new FFmpegFrameGrabber(input);
grabber.setFormat("h264");
        grabber.start();
FFmpegFrameRecorder recorder = new FFmpegFrameRecorder(outputFilePath, grabber.getImageWidth(), grabber.getImageHeight());
recorder.start();
while ((frame = grabber.grab()) != null) {
            recorder.record(frame);
        }
grabber.stop();
        grabber.release();
        recorder.stop();
        recorder.release();
}


    


    But this login was failed. I met this issue when I implemented the ffmpeg

    


    data partitioning is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.


    


    Is there any other idea to solve this or other way to achieve the logic ? Thanks

    


  • Java merge ? mix ? 2 audio files(mp3) parallely and download it

    4 février 2024, par JoonSeo Yang

    is there any way to mix 2 audio files parallely and let user download it ?

    


    I was trying it by ffmpeg

    


    FFmpegBuilder builder = new FFmpegBuilder()
                .overrideOutputFiles(true)
                .setInput(audioInputPath1)
                .addInput(audioInputPath2)
                .addOutput(outputFilePath)
                .setFormat("mp3")
                .setAudioCodec("libmp3lame")
                .setAudioBitRate(256000)
                .done();

        executor.createJob(builder).run();


    


    but it doesnt work by codec problem, so i want to know if there any other way to reach my goal, or fix my ffmpeg code to make it work ?