
Recherche avancée
Autres articles (41)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.
Sur d’autres sites (5213)
-
Revision 9a733b399c : Merge "vp9_spatial_svc_encoder : Enable aq-mode for real-time mode."
27 août 2015, par Marco PaniconiMerge "vp9_spatial_svc_encoder : Enable aq-mode for real-time mode."
-
how to publish flv file using ffmpeg to RTMP server in `real time` ?
29 octobre 2012, par Akram Berkawywhat i'm trying to do is publishing a
.flv
media file toRTMP
server to let subscribers watch it.
i'm testing to view the stream in several subscribers (theoflaDemo
) and withffplay
.the problem is that ffmpeg publish the 5 minutes .flv file to the server in nearly 20 seconds, in these 20 seconds the stream appear on subscribes, but after that it cuts.
the command i use is :ffmpeg -i file.flv -re -acodec copy -vcodec copy -f flv "rtmp://localhost/oflaDemo/aaa live=1"
how can i force
ffmpeg
to stream the 5 minutes file in 5 minutes, or any other solution.thanks.
-
File input of avformat_open_input in ffmpeg
28 février 2016, par Justin ChangI’m trying to use function
avformat_open_input
in FFmpeg to open the file which contains Chinese word.For example :
char* file="C:/測試/baby.mp4";
avformat_open_input(&pFormatCtx, file, NULL, NULL);But, it seems to be failed.
My question is how do I pass the file path which contains Chinese (or other languages except for English) ?