Recherche avancée

Médias (0)

Mot : - Tags -/content

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

Autres articles (100)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (14933)

  • Revision 49cf335e7f : Improve loopfilter function This patch continued the work done in "Rewrite loop

    1er novembre 2013, par Yunqing Wang

    Changed Paths :
     Modify /vp9/common/vp9_loopfilter.c



    Improve loopfilter function

    This patch continued the work done in "Rewrite loop_filter_info_n
    struct"(commit:00dbd369c70270428d56da6d15ea5486fc821c52) to further
    improve loopfilter function.

    1. Instead of storing pointers to thresholds, store loopfilter
    levels within 64x64 SB ;
    2. Since loopfilter levels are already calculated in setup_mask,
    we don't need call build_lfi to look up them again. Just save
    loopfilter levels in setup_mask.
    3. Reorganized and simplified filter_block_plane().

    Tests showed a 0.8% decoder speedup.

    Change-Id : I723c7779738bbc2afcb9afa2c6f78580ee6c3af7

  • FFProbe doesn't work in Android Phone

    24 février 2018, par Royal.O

    Argument ’/storage/emulated/0/Watermark/test.flv’ provided as input filename, but ’ffprobe’ was already specified.
    compile ’nl.bravobit:android-ffmpeg:1.1.1’

              String [] command = {"ffprobe", videoPath };
              FFprobe ffprobe = FFprobe.getInstance(this);

               try {
               ffprobe.execute(command, new ExecuteBinaryResponseHandler() {

                   @Override
                   public void onSuccess(String message) {
                       addTextViewToLayout("SUCCESS with output : "+ message);
                       Logger.print("onSuccess : "+message);

                   }
                   @Override
                   public void onProgress(String message) {
                       addTextViewToLayout("Started command : ffmpeg "+command);
                       addTextViewToLayout("progress : "+message);
                       Logger.print("Started command : ffmpeg "+command.toString());
                       Logger.print("progress : "+message);
                   }

                   @Override
                   public void onFailure(String message) {
                       Logger.print("FAILED with output : "+message);
                   }

                   @Override
                   public void onStart() {
                       Logger.print("onStart");
                   }

                   @Override
                   public void onFinish() {
                       Logger.print("onFinish");
                   }

               });
           } catch (FFprobeCommandAlreadyRunningException e) {
               e.printStackTrace();
           }


       }

    ffprobe works good in Windows, Mac, Ubuntu but doesn’t work in Android.

    If anybody experienced please share me your experience.

  • vf_pixdesctest : make config_props work properly when called multiple times.

    18 mars 2013, par Anton Khirnov
    vf_pixdesctest : make config_props work properly when called multiple times.
    
    • [DH] libavfilter/vf_pixdesctest.c