Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (70)

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

  • 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

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

Sur d’autres sites (13327)

  • How to integrate and use FFmpeg library in iOS with Xcode ?

    16 mai 2017, par Akshaykumar Maldhure

    I wanted to use FFMpeg library for video processing activities, from 2 days I m working on compiling and integrating this library with Xcode 8 and Swift. I tried following links but with no success. Can anyone please help me how to achieve this ?

    FFMPEG integration on iphone/ ipad project

    https://github.com/chrisballinger/FFmpeg-iOS

    http://witcheryne.iteye.com/blog/1734706

    How to Build FFMpeg as iOS Framework

    https://github.com/ElfSundae/FFmpeg-iOS-build

    https://github.com/kolyvan/kxmovie

  • ffmpeg video convert library on my VPS Linux based godaddy server not working

    6 mai 2017, par mahesh vora

    I have some query here for using your ffmpeg video convert library on my VPS Linux based godaddy server.

    I have php 5.6.30 version on my server and I want to use your ffmpeg video convert library on my server so I can use that with 5.6.30 php version ?

    As I have already many time try my self to install it but each time I am getting different errors while installing process so after that for installation of it on my server I have taken godaddy’s support team help and paid them $100 for install ffmpeg on my VPS server then in end (after 12 days) they said me ffmpeg will work with older version of php only (they saying it will work until you will have php 4.0 after that with any latest version of php it will not work) so they said me downgrade your php version then only it will work, but I can’t do that as I if I will do that then I will fetch some other issues in my project.

    So here can you please confirm "your ffmpeg video convert library will work with my php version 5.6.30 (website hosted on godaddy’s VPS Linux based server)" ?

    if not working then please suggest me to best other similar library similar to ffmpeg i want only two of the functionality 1) to cut the video 2)may be compress 3)Create thumb from the video.

    Waiting for valuable response !

  • No such file or Directory in android FFMpeg [duplicate]

    4 mai 2017, par Anil kumar

    This question is an exact duplicate of :

    Hi i am using FFMpeg for splitting recorded video files and i searched lot in google for executing FFMpeg splitting command,But no one provided me
    right solution and i am facing this issue since 3 days on words.

    I am using below code for splitting video per every 8 seconds but i am getting exception No such file or Directory,I hope some one help me

    code :

    public void executeBinaryCommand(FFmpeg ffmpeg) {

               try {

                   if (ffmpeg != null) {

               inputFileUrl=  /storage/emulated/0/1492848702.mp4;
               outputFileUrl= /storage/emulated/0/1492848702.mp4;

               String cmd[] = new String[]{"-i ",inputFileUrl+" ","-c ","copy ","-map ","0 ",
                   "-segment_time ","8 ","-f ","segment/sdcard/Download/output%03d.mp4"};

                       ffmpeg.execute(command,
                               new ExecuteBinaryResponseHandler() {

                                   @Override
                                   public void onFailure(String response) {
                                       System.out.println("failure====>" + response.toString());
                                   }

                                   @Override
                                   public void onSuccess(String response) {
                                       System.out.println("resposense====>" + response.toString());
                                   }

                                   @Override
                                   public void onProgress(String response) {
                                       System.out.println("on progress");
                                   }

                                   @Override
                                   public void onStart() {
                                       System.out.println("start");
                                   }

                                   @Override
                                   public void onFinish() {
                                       System.out.println("Finish");
                                   }
                               });
                   }
               } catch (FFmpegCommandAlreadyRunningException exception) {
                   exception.printStackTrace();
               }