Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (67)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

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

  • 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

Sur d’autres sites (8866)

  • how to add text title in .avi video in android usng ffmpeg command

    14 août 2013, par Sujeet Raghuwanshi

    i want to add text in .avi videos in android application.

    so,
    I searched on Google but i didn't get any solution for this problem please try to help me.

    thanks.

  • how to integrate audio with video in android using javacv/opencv ?

    11 mai 2016, par rams

    For my application i created video from set of images by using javacv/opencv in android.but that video plays with out sound.so i want to add my recorded audio(mp3 file) to that generated video how can i achieve it ?

    This is my code which is used to get video from images,

                   String path =SCREENSHOT_FOLDER2;

               File folder = new File(path);


                   listOfFiles = folder.listFiles();  
                   if(listOfFiles.length>0)
                   {









                 iplimage = new opencv_core.IplImage[listOfFiles.length];


                  for (int j = 0; j < listOfFiles.length; j++) {

                    String files="";      

                  if (listOfFiles[j].isFile())
                  {
                  files = listOfFiles[j].getName();

                    }  


                   String[] tokens = files.split("\\.(?=[^\\.]+$)");
                  String name=tokens[0];

                   System.out.println(" j " + name);




                 iplimage[j]=cvLoadImage("/mnt/sdcard/images/"+name+".png");


                  }

               }



                   File videopath = new File(SCREENSHOT_FOLDER3);
                   videopath.mkdirs();
                    FFmpegFrameRecord recorder = new          
                       FFmpegFrameRecord(SCREENSHOT_FOLDER3+
                     "video"+System.currentTimeMillis()+".mp4",320,480);

                    try {
                        recorder.setCodecID(CODEC_ID_MPEG4); //CODEC_ID_MPEG4                            
                        //CODEC_ID_MPEG1VIDEO
                        recorder.setBitrate(sampleVideoBitRate);
                        recorder.setFrameRate(10);                    
                        recorder.setPixelFormat(PIX_FMT_YUV420P); //PIX_FMT_YUV420P


                        recorder.start();

                        int x = 0;
                        int y = 0;
                       for (int i=0;i< 300 && x(y+10)) {
                               y=y+1;
                               x++;
                           }

                           }
                        recorder.stop();
                       }
                    catch (Exception e){
                        e.printStackTrace();
                      }

    now how to integrate audio file(.mp3) file in this code.

  • How to build FFmpeg 2.0 for android on linux ?

    4 août 2013, par Md. Arafat Al Mahmud

    I have downloaded and extracted android-ndk-r9 on my Ubuntu11.04. I want to build FFmpeg latest version which I have downloaded from here
    using git. I followed the procedure described here. I have replaced this script suggested there with this. But I got the following error :

    enter image description here

    How to resolve this issue or can you suggest me a better approach ?