Recherche avancée

Médias (91)

Autres articles (73)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

Sur d’autres sites (11250)

  • What is wrong part in my Android code with ffmpeg ?

    6 janvier 2016, par Marko androshenko

    I want to get mixed video.(Image + Video)
    Total duration of original video is 180 sec. I want to put image to the front of video. So, I made some code in android studio.
    But I can not look any toast.
    What is wrong ? How to check the end of process ?

    ...
    path = "libray folder" ;
    ...

       private class ProcessVideo extends AsyncTask {
               @Override
               protected Void doInBackground(Void... params) {

                   Process ffmpegProcess = null;

                   try {
             // initialize command for process video
                 // library is video process library.
                       String[] command ={path,"-i", input, "-r", "1", "-q:v", "2", "-f", "image", input};


                       ffmpegProcess = new ProcessBuilder(ffmpegCommand).redirectErrorStream(true).start();

                       OutputStream ffmpegOutStream = ffmpegProcess.getOutputStream();
                       BufferedReader reader = new BufferedReader(new InputStreamReader(ffmpegProcess.getInputStream()));

                       String line;

                       Log.v(THISTAG,"***Starting FFMPEG***");
                       while ((line = reader.readLine()) != null)
                       {
    // in progress
                           Log.v(THISTAG,"***"+line+"***");
                       }
    // finish all process
                       Log.v(THISTAG,"***Ending FFMPEG***");
                       videoProcessFinishFlag = true;

                   } catch (IOException e) {
                       e.printStackTrace();
                   }

                   if (ffmpegProcess != null) {
                       ffmpegProcess.destroy();
                   }
                   return null;
               }

               protected void onPostExecute(Void... result) {
    // show result
                  Toast toast = Toast.makeText(VideoEditorActivity.this, "Done Processing Video", Toast.LENGTH_LONG);
                   toast.show();
               }
           }
  • How to download part of videojs live stream with ffmpeg ?

    13 octobre 2022, par CptanPanic

    I would like to be able to save 10-20 seconds of a livestream site that uses videojs, but due to it using videojs, it isn't as simple as finding the m3u8 file to stream. Any ideas ?

    


    An example stream is https://www.cityoffortpierce.com/823/Jetty-Inlet-Webcam

    


  • how to Extract Audio from video with spring boot java in linux or windows system with ffmpeg coding part need guidance

    2 décembre 2022, par Makarand Burud

    I got this command but don't know the how to configure it for project on command line ?

    


    String[] command = "-y", "-i", filename, "-vn",
"-ar", "44100", "-ac", "2", "-b:a", "256k", "-f", "mp3" + fileStorageLocation ;