
Recherche avancée
Autres articles (11)
-
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP 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 (2910)
-
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 :)