Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

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

Autres articles (34)

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

Sur d’autres sites (5780)

  • Align text in top middle of any photo/video frame in ffmpeg

    19 janvier 2023, par pigeonburger

    I would like to know how to align the text in any sized photo/video frame in the top middle. I understand how to center the text on the x axis in any frame, so how do I make it always be at the top as well ?

    


    Heres what I've been doing so far :

    


    ffmpeg -i input.jpg -vf "drawtext=font='Impact': text='Test Text': fontcolor=white: borderw=3: fontsize-75: x=(w-tw)/2:y=((h-text_h)/2)" output.jpg


    


  • Android Video Processing in background with work manager using ffmpeg

    27 juin 2019, par Naseer Attari

    The problem comes when during the video processing user closes the application himself from the task manager then its processing stops.

    I am working on video file processing in android using FFMpeg, which is working perfectly but when I do close the application during processing from task manager then video processing has stopped working even I added all the work in work manager.

       @Override
    public Result doWork() {
           shellCommand = new ShellCommand();
           ffmpegBinary = new String[] {
               FileUtils.getFFmpeg(context).getAbsolutePath()
           };
           command = concatenate(ffmpegBinary, command);
           CommandResult commandResult = getCommandResult(command);
           if (command`enter code here`Result.success) {
               onSuccess(videoPath);
           } else {
               onFailure(videoPath);
           }
       }
       //getCommandResult
       private CommandResult getCommandResult(String[] command) {
           try {
               process = shellCommand.run(command, null);

               if (process == null) {
                   return CommandResult.getDummyFailureResponse();
               }
               checkAndUpdateProcess();
               return CommandResult.getOutputFromProcess(process);
           } catch(Exception e) {} finally {
               Util.destroyProcess(process);
           }`enter code here`
           return CommandResult.getDummyFailureResponse();
       }

    As far as I can tell, when the application closes from the background then the parent process destroys it and is destroying all of its sub-process too, FFMpeg is using the android process to execute the command and check the video file status during video processing.

    Looking forward to hear from you.
    Thanks

  • Can I see what ffmpeg.exe in task manager is doing ?

    28 février 2023, par miitchel

    So I use a program that starts ffmpeg processes in the background, is it possible to open one of those processes in the Windows terminal so I can see what it is doing ?