Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (106)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Liste des distributions compatibles

    26 avril 2011, par

    Le tableau ci-dessous correspond à la liste des distributions Linux compatible avec le script d’installation automatique de MediaSPIP. Nom de la distributionNom de la versionNuméro de version Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    Si vous souhaitez nous aider à améliorer cette liste, vous pouvez nous fournir un accès à une machine dont la distribution n’est pas citée ci-dessus ou nous envoyer le (...)

Sur d’autres sites (16766)

  • configure : add hls demuxer link dependencies

    19 octobre 2021, par Limin Wang
    configure : add hls demuxer link dependencies
    

    Fixes building with —disable-everything —enable-demuxer=hls

    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] configure
  • lavc/vaapi_dec : Add VVC decoder

    28 octobre 2024, par Fei Wang
    lavc/vaapi_dec : Add VVC decoder
    

    Signed-off-by : Fei Wang <fei.w.wang@intel.com>

    • [DH] Changelog
    • [DH] configure
    • [DH] libavcodec/Makefile
    • [DH] libavcodec/hwaccels.h
    • [DH] libavcodec/vaapi_decode.c
    • [DH] libavcodec/vaapi_vvc.c
    • [DH] libavcodec/version.h
    • [DH] libavcodec/vvc/dec.c
  • QtAV/ffmpeg youtube : bufferProgressChanged and positionChanged together

    11 décembre 2017, par Maignan Arnaud

    I’m trying to make a streaming tester with QtAV, under linux, mac and windows.
    Under these 3 systems, when I play a youtube video
    like :

    https://r3---sn-gx1v2vax-atne.googlevideo.com/videoplayback?initcwndbps=3892500&dur=12.208&signature=...

    The problem is :
    The player continues to change it’s position (timer) while it’s still buffering.
    I noticed this only with youTube videos (other video providers are working well) but it’s the one I need to implement.

    Reproduction steps :
    Compile ffmpeg with SSL, take Youtube URL (1080p) from raw page, bandwidth clamping to stalled your video, read this url with QtAV and output this player events :
    mediaStatusChanged, loaded, stateChanged, started, notifyIntervalChanged,
    bufferProgressChanged, positionChanged

    First bad solutions :
    Changing player config like setBufferValue, dont seems to solve my problem (but I may not have tried all possible combinations)

    m_player->setBufferMode(BufferMode::BufferTime);//BufferTime, BufferBytes, BufferPackets
    //m_player->setSeekType(SeekType::KeyFrameSeek);//AccurateSeek, KeyFrameSeek, AnyFrameSeek
    m_player->setBufferValue(1000);

    Searching to modify QtAV code source, seems complicated to me, but I noticed that void AVPlayer::timerEvent(QTimerEvent *te) have a lot of commented code and particularly, this comment below makes me think that maybe QtAV developper didn’t implement everything yet :

    qint64 AVPlayer::position() const
    {
       // TODO: videoTime()?
       const qint64 pts = d->clock->value()*1000.0;
       […]
    }

    Expected behavior :

    When bufferProgressChanged, the video must be paused, and replay only when buffer is 100%.
    For example, when mediaStatusChanged=BufferedMedia.
    So the event positionChanged should never change, unless the event bufferProgressChanged == 1 or 0

    Actual behavior :
    See complet logs file :
    https://github.com/wang-bin/QtAV/issues/1004