
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (23)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)
Sur d’autres sites (7046)
-
Whats steaming technologies are using twitch and youtube.gaming ? What name of blob:url format ? [on hold]
20 avril 2017, par inpostReallive video streaming in twitch and gaming.youtube are using new technologies HTML5 : blob:url . What name is this blob format ?
And second question : i use nginx-rtmp server on my site, translate from clients is using flash (on site), OBS or xsplit. On server i convert to FLV and HLS formats with ffmpeg. I want to learn how to make streaming with new technologies without flash. How to realize convert video from flv to BLOB format ? Is it possible to add extra query to ffmpeg ?
Very-very BIG thank you. :)
-
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 -
FFMPEG : Encoding settings to meet YouTube recommendation.
1er novembre 2016, par Dinindu PereraSo I need to encode to meet these guidelines from YouTube for 480p and 1080p videos. I need help in the settings of FFMPEG. The video should encode reasonably fast.
These are the guidelines :
480p 30fps x264- Video Bitrate : 2560 kbps
- Audio Bitrate : 384 kbps
1080p 30fps x264
- Video Bitrate : 8192 kbps
- Audio Bitrate : 384 kbps
I’m still learning the ropes with video encoding. Thanks in advance :)