Recherche avancée

Médias (0)

Mot : - Tags -/performance

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

Autres articles (65)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • 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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (10384)

  • avcodec/vaapi_encode_vp9 : fix > 4k encode fail issue

    12 avril 2021, par Zhang yuankun
    avcodec/vaapi_encode_vp9 : fix > 4k encode fail issue
    

    This patch will fix following command :
    ffmpeg -hwaccel vaapi -hwaccel_output_format vaapi -i input.264 \
    - vf 'scale_vaapi=w=7680:h=4096' -c:v vp9_vaapi output.ivf

    Max width of a vp9 tile is 4096. If the source frame > 4096, we need split to multiple tiles.

    Reviewed-by : Limin Wang <lance.lmwang@gmail.com>
    Signed-off-by : Zhang yuankun <yuankunx.zhang@intel.com>
    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] libavcodec/vaapi_encode_vp9.c
  • swscale/swscale_unscaled : fix gbrap10be md5 different on big endian system

    30 octobre 2019, par Limin Wang
    swscale/swscale_unscaled : fix gbrap10be md5 different on big endian system
    

    You can reproduce it by below command :
    ./ffmpeg -f lavfi -i "testsrc=duration=1:rate=30" -vf format=gbrap10 -vcodec rawvideo \
    -pix_fmt gbrap10le -flags +bitexact -sws_flags +accurate_rnd+bitexact -fflags +bitexact \
    -frames:v 1 -f nut md5 :

    little-endian :
    f91e2edd8098276579c1929e5e160416
    big-endian :
    ba4d011dbbdc78ccbf6cc7d698630929

    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>
    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libswscale/swscale_unscaled.c
  • avformat/mpegtsenc : make first_pcr sync with the first valid dts

    26 octobre 2020, par Limin Wang
    avformat/mpegtsenc : make first_pcr sync with the first valid dts
    

    now first_pts assume dts will start from zero, if it's not true(copyts is enable),
    too many null packet will be inserted for cbr output.

    Please test with below command, you'll get huge test.ts without the patch :
    ./ffmpeg -y -copyts -i ../fate-suite/mpegts/loewe.ts -c:v libx264 -x264opts \
    nal-hrd=cbr:force-cfr=1 -b:v 3500k -minrate 3500k -maxrate 3500k -bufsize \
    1000k -c:a mp2 -muxrate 4500k -vframes 1000 test.ts

    Reviewed-by : Marton Balint <cus@passwd.hu>
    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] libavformat/mpegtsenc.c