Recherche avancée

Médias (0)

Mot : - Tags -/content

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

Autres articles (70)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

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

Sur d’autres sites (9989)

  • How to get a list of audio devices in dshow and save

    25 novembre 2016, par H S T

    I use avformat_open_input in ffmpeg to open the audio device, but the second argument to this function is the audio device name, and may not be the full name. So how do I get avformat_open_input (& pFmtCtx, "video = dummy", iformat, & options);
    List of audio device names listed ?Or directly use ffmpeg to open the default audio device ?Thanks.

  • avformat/mxfenc : allow more bits for variable part in uuid generation

    14 mars 2022, par Marton Balint
    avformat/mxfenc : allow more bits for variable part in uuid generation
    

    Also make sure we do not change the product UID.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/mxfenc.c
    • [DH] tests/ref/fate/copy-trac4914
    • [DH] tests/ref/fate/mxf-d10-user-comments
    • [DH] tests/ref/fate/mxf-opatom-user-comments
    • [DH] tests/ref/fate/mxf-reel_name
    • [DH] tests/ref/fate/mxf-user-comments
    • [DH] tests/ref/fate/time_base
    • [DH] tests/ref/lavf/mxf
    • [DH] tests/ref/lavf/mxf_d10
    • [DH] tests/ref/lavf/mxf_dv25
    • [DH] tests/ref/lavf/mxf_dvcpro50
    • [DH] tests/ref/lavf/mxf_opatom
    • [DH] tests/ref/lavf/mxf_opatom_audio
  • 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();
               }
           }