Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (50)

  • 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" (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

Sur d’autres sites (6194)

  • hevc_ps : Use AV_PIX_FMT_YUVJ420P if YUV 4:2:0 8-bit full scale

    3 novembre 2013, par Yusuke Nakamura
    hevc_ps : Use AV_PIX_FMT_YUVJ420P if YUV 4:2:0 8-bit full scale
    

    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>

    • [DH] libavcodec/hevc_ps.c
  • twinvq : consume block_align+1 packets as full ones

    20 octobre 2013, par Kostya Shishkov
    twinvq : consume block_align+1 packets as full ones
    

    They can be produced by VQF.

    Signed-off-by : Diego Biurrun <diego@biurrun.de>

    • [DH] libavcodec/twinvq.c
  • Full HD video converted to FLV, slow playback in browser

    12 février 2012, par Boyan Georgiev

    I rendered a full HD video using Adobe AfterEffects CS5 in mp4 format. It plays just fine. I've got this video app to which I fed the mp4 file. The video app converts the mp4 to flv format and makes the video available via a web page. I've downloaded the resulting flv file to my local PC - it plays just fine in my VLC player. But, the problem is I'm getting awful playback inside my browser.

    I've made sure the issue is not bandwidth related.
    Both original mp4 file, and ffmpeg-converted FLV file, play perfectly using VLC player.
    I've tested the FLV file with two players - Agryia FLV Player Elite and JW Player. Both players play the video awfully - really slow and very choppy.

    Here's my ffmpeg -i myflvfile.flv :
    `

    Seems stream 0 codec frame rate differs from container frame rate: 119.88 (120000/1001) -> 59.92 (719/12)
    Input #0, flv, from &#39;94044631305552037.flv&#39;:
    Metadata:
    duration        : 146
    width           : 1920
    height          : 1080
    videodatarate   : 684
    framerate       : 60
    videocodecid    : 7
    audiodatarate   : 62
    audiosamplerate : 22050
    audiosamplesize : 16
    stereo          : true
    audiocodecid    : 2
    major_brand     : mp42
    minor_version   : 0
    compatible_brands: mp42mp41
    creation_time   : 2012-02-10 00:55:19
    encoder         : Lavf52.111.0
    filesize        : 61969316
    Duration: 00:02:25.77, start: 0.034000, bitrate: 764 kb/s
    Stream #0.0: Video: h264 (High), yuv420p, 1920x1080 [PAR 3:4 DAR 4:3], 700 kb/s, 59.92 tbr, 1k tbn, 119.88 tbc
    Stream #0.1: Audio: mp3, 22050 Hz, stereo, s16, 64 kb/s`

    Can any one point me in the right direction here ? Why is playback perfect with VLC player of both the mp4 and the flv file on my local PC, yet in my browser, using two different players, the playback is so bad ?

    PS Here's my convert command :

    ffmpeg -y -i /var/www/sandverlag.com/htdocs/rmtk/videos/originals/94044631305552038.mp4 -vcodec libx264 -ar 22050 -ac 2 -vb 700000 -s 1920x1080 -crf 22 -threads 0 -f flv /var/www/sandverlag.com/htdocs/rmtk/videos/converted/94044631305552038.flv > /dev/null &amp;