
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 (89)
-
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 -
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, (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (9175)
-
How do I get FFMPEG Progress in order to create a progress bar ?
18 mai 2012, par polandeerI'm trying to create a simple GUI for ffmpeg but am having problems getting the progress of a command. I'm using PySide as the GUI toolkit and I'm also using python3. I'm using QProcess to run the command and would just like to be able to create a progress bar. The code can be found here : https://github.com/stephenmac7/ffpy/blob/master/ffpy.py
Also, I'd like to be able to use the statusbar of the main window. Thank you.
EDIT : Preferably I'd like to use QProgressDialog : http://www.pyside.org/docs/pyside/PySide/QtGui/QProgressDialog.html
-
can't livestream on facebook as 720p when using API
1er août 2018, par boygiandiI just realized that when we using facebook api to create a livestream ( /me/live_videos ) , we only get 360p as output max even we sent 1080p. But, if we use Facebook dialog, we can get to 720p, the same video input.
FB.ui({
display: 'popup',
method: 'live_broadcast',
phase: 'create',
}, function(response) {
FB.ui({
display: 'popup',
method: 'live_broadcast',
phase: 'publish',
broadcast_data: response
}, function(response) {
});
});https://developers.facebook.com/docs/graph-api/reference/live-video/
Does anyone know how to get 720p when we use Facebook graph API ?
-
av_guess_format return null
21 février, par IvaI used example from http://cekirdek.pardus.org.tr/ ismail/ffmpeg-docs/output-example_8c-source.html :



out_ctx = avformat_alloc_context();
out_ctx->oformat = av_guess_format(NULL, filename, NULL);
if (out_ctx->oformat == NULL)
{
 out_ctx->oformat = av_guess_format("mpeg4", NULL, NULL);
 if (out_ctx->oformat == NULL)
 {
 LOGI(1, "Could not guess output format\n");
 exit(1);
 }
}




av_guess_format always return null. I don't understand what I must re-configured in FFMPEG for enable any formats.