Recherche avancée

Médias (0)

Mot : - Tags -/configuration

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

Autres articles (47)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (5026)

  • libVLC using ffmpeg source code [closed]

    31 août 2015, par Moebius

    I am working with ffmpeg in order to encode video but I am not getting the results I expect. So I want to have source code examples to get inspiration. I know that libVLC use ffmpeg, but I can’t retrieve the functions using this framework out of the massive documentation. Do you know which file/function/class are concerned ? If you have any idea of interesting documentation/example of decoding using ffmpeg, please let me know (I already checked opencv).

    Thanks.

  • JavaCV Stream-Test code giving Error

    23 juin 2015, par user1507600

    I’m hoping someone might be able to tell me what I’m doing wrong here. I downloaded vanevery’s GitHub project “JavaCV-0.5-Stream-Test" which is a couple of years old so I updated to the latest JavaCV version 0.11. But Android Studio is returning the error...

    Error :

    "record(org.bytedeco.javacpp.Frame) in FFmpegFrameRecorder cannot be
    applied to (org.bytedeco.javacpp.opencv_core.lplimage)" for the line
    of code which reads recorder.record(yuvIplimage), under
    onPreviewFrame.

    Here is my code :

       @Override
       public void onPreviewFrame(byte[] data, Camera camera) {

           if (yuvIplimage != null && recording) {

               videoTimestamp = 1000 * (System.currentTimeMillis() - startTime);

               // Put the camera preview frame right into the yuvIplimage object
               yuvIplimage.getByteBuffer().put(data);

               try {
                   // Get the correct time
                   recorder.setTimestamp(videoTimestamp);

                   // Record the image into FFmpegFrameRecorder
                   recorder.record(yuvIplimage);

               } catch (FFmpegFrameRecorder.Exception e) {
                   Log.v(LOG_TAG,e.getMessage());
                   e.printStackTrace();
               }
           }
       }
  • Why is Visual Studio executing the wrong code [closed]

    15 mai 2023, par Jacob

    Not sure what is going on here. Code that I have deleted is still executing. I am sending parameters to FFMPEG for video editing. FFMPEG is then processing parameters that I previously sent, which is now deleted. While trying to figure this out, I sent the string "WTF !" directly to the FFMPEG parameters and FFMPEG is still processing the video with old parameters. The string "WTF !" should have broke FFMPEG so it is clearly executing the wrong code. Hasd anyone ever encountered this ?