Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (59)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • 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

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (6134)

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

  • 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