
Recherche avancée
Médias (5)
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
Autres articles (68)
-
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
Activation de l’inscription des visiteurs
12 avril 2011, parIl est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...) -
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 (5191)
-
Skipping MP4 video
4 avril 2017, par M.YazdianI like to create the video player to show videos on my website. I made a video player in flash CS5 and actionscript3 to stream the videos on the website.
My videos are often flv or mp4 format.
In the flv files I use flvmdi app to inject the metadata to that ,and for skipping the flv file I use xmoov-php (video player can pass the keyframe number from flv metadat to xmoov-php to create the new flv file from passed keyframe to the last flv keyframe, and return the flv video file on the php header for flash video player to show the video ).but about mp4 format in Xmoov-php wiki it says :
this file can’t support the mp4 format to skiping...!!!
Now I need skiping the mp4 files in my video player (I like my viewers select a part of video before buffering all video on their browser and play it ).please give me a suggestion to skipping the mp4 file in the php or .net platform
-
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.