Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (111)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (11725)

  • doc/volume : correct placement of replaygain_noclip

    5 janvier 2020, par Gyan Doshi
    doc/volume : correct placement of replaygain_noclip
    

    In the merge commit 878f8b0d26, entry for replaygain_noclip
    was placed in commands, which it is not, instead of among
    the options.

    • [DH] doc/filters.texi
  • avutil : Add a copy of ff_sqrt_tab back into avutil to restore ABI compatibility

    20 octobre 2012, par Martin Storsjö

    avutil : Add a copy of ff_sqrt_tab back into avutil to restore ABI compatibility

  • Changing Video play back is really very slow process using FFMPEG android java pre compiled library

    16 juin 2016, par Amna Mirza

    I am processing video in android using FFMPEG android java library to change play back of speed. for 6 sec video to make it play back slow by 0.5 setpts , its taking more than 1 min.
    Here is my code

    public class TestFFMpegActivity {
           private static String cmd,
           private static FFmpeg ffmpeg;
           private static Context mContext;


           public static String getInternalDirectoryPath() {
               return Environment.getExternalStorageDirectory().getAbsolutePath();
           }

           public static void initiateFFmpeg(Context context, String path) {
               mContext = context;
               ffmpeg = FFmpeg.getInstance(context);  
               VideoIn = getInternalDirectoryPath() + "/Download/input.mp4";
               VideoOut = getInternalDirectoryPath() + "/Download/output.mp4";
               cmd = "-i "+VideoIn+" -vf setpts=2*PTS -strict -2 "+VideoOut;
               try {
                   ffmpeg.loadBinary(new LoadBinaryResponseHandler() {

                       @Override
                       public void onStart() {
                       }

                       @Override
                       public void onFailure() {
                       }

                       @Override
                       public void onSuccess() {
                       }

                       @Override
                       public void onFinish() {
                           processVideo();
                       }
                   });
               } catch (FFmpegNotSupportedException e) {
                   // Handle if FFmpeg is not supported by device
               }
           }
           private static void processVideo(){
           try {
               ffmpeg.execute(cmd ,
                       new ExecuteBinaryResponseHandler() {

                           @Override
                           public void onStart() {
                               //for logcat
                               Log.w(null,"processing started");
                           }

                           @Override
                   public void onProgress(String message) {
                       //for logcat
                       Log.w(null, "onProgress");
                   }

                   @Override
                   public void onFailure(String message) {
                       Log.w(null, message.toString());
                   }

                   @Override
                   public void onSuccess(String message) {
                       Log.w(null, message.toString());
                   }

                   @Override
                   public void onFinish() {

                   }
               });
           } catch (FFmpegCommandAlreadyRunningException e) {
               Toast.makeText(mContext, "Video processing failed due to exception", Toast.LENGTH_LONG).show();

               // Handle if FFmpeg is already running
               e.printStackTrace();
               Log.w(null, e.toString());
           }
       }
    }

    This is the gradle build path for using above library

     compile 'com.github.hiteshsondhi88.libffmpeg:FFmpegAndroid:0.2.5'