Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (90)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

Sur d’autres sites (14979)

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