
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (104)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)
Sur d’autres sites (11985)
-
QtAV render in a widget crashes on application close
23 novembre 2017, par user3606329I compiled FFmpeg statically + QtAV statically and QT statically.
Once I add the QtAV player in a QWidget it crashes on application close. Did I miss any cleanup procdure ?
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
QtAV::setLogLevel(QtAV::LogAll);
AVPlayer *player = new AVPlayer();
WidgetRenderer *renderer = new WidgetRenderer();
renderer->show();
player->addVideoRenderer(renderer);
player->setFile("C:\\abc.mp4");
ui->verticalLayout->addWidget(renderer->widget()); # will cause crash on exit.
player->play();
}
MainWindow::~MainWindow()
{
// delete player; # I tried this and also the removal of the widget
// delete renderer; # It still does crash
delete ui;
}The crash comes from
WidgetRenderer *renderer = new WidgetRenderer();
Once the renderer is embedded in a QWidget the application can’t exit gracefully somehow.
I already tried to clean it up, remove the widget, delete the object, etc. but the crash still remains.
The player works great and plays the videos ! It only gives a crash when the application is closed. (Doesn’t exit gracefully somehow).
The QtAV log does not print anything about it.
-
ffplay lose video stream from rtmp server sent by ffmpeg, only play audio stream
1er mai 2020, par Константин ТюринI run a stream like this



C :\ffmpeg -rtbufsize 1000000K -re -f dshow -i video="HD Pro Webcam C920" -f dshow -i audio="Микрофон (HD Pro Webcam C920)" -s 320x240 -c:v libx264 -c:a aac -ar 44100 -ac 2 -f flv 
"rtmp ://37.143.12.233:1935/live1/stream"



and play the stream like this



C :\ffplay rtmp ://37.143.12.233:1935/live1/stream



if I start the player first and then stream, then everything is fine, but if the stream first and then the player, then I can only hear the sound, sometimes first running is ok though, but rarely
If I send only video, everything is fine. I tryed to change audio codec settings, ffmpeg and ffplay version but it did not help. Then I tryed other players like VLC media player, and some web player https://hls-js.netlify.app/demo/ . With web player it was better, I did not lose the video, but in 9/10 cases I get eternal loading and need to click apply constantly. What I need to do so as not to lose the video stream in ffplay player and maybe problem in streaming command ? I appretiate any help.


-
Third party Mediaplayer SDK
22 avril 2015, par Amanda FernandezI googled a lot and found that there is no way we can alter the buffer size of default media player. So, need to use custom player. I found 2 libraries :
1. ffmeg
2. gStreamerBut both are under GNU licence.
I have confusion on its licence.If I’m using these 2 libraries, then do I have to make my app source code open source.?
Also, came across brightcove library. It’s native videoplayer NDK. Can It be sued for streaming audio.Is there any other 3 party libraries available for media player ?