
Recherche avancée
Autres articles (73)
-
Publier sur MédiaSpip
13 juin 2013Puis-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 -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP 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 (7309)
-
lavc/vaapi_dec : Add VVC decoder
28 octobre 2024, par Fei Wang -
QtAV/ffmpeg youtube : bufferProgressChanged and positionChanged together
11 décembre 2017, par Maignan ArnaudI’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 :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, positionChangedFirst 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 0Actual behavior :
See complet logs file :
https://github.com/wang-bin/QtAV/issues/1004 -
avcodec/bsf : simplify the code
18 avril 2020, par Limin Wang