
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (96)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 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 (...) -
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (8561)
-
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 :)