Recherche avancée

Médias (0)

Mot : - Tags -/utilisateurs

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

Autres articles (38)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (6620)

  • 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