
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (76)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
Sur d’autres sites (5180)
-
FFmpeg to Azure Media Services Smooth Streaming Input
22 juillet 2020, par Adityo SetyonugrohoI would like to ask about ffmpeg config or command to to mp4 fragment to Azure Media Service live event using smooth streaming / isml protocol. The AMS is not getting any input yet from ffmpeg.
This is my current running command :


ffmpeg -f dshow -i video="Webcam" -movflags isml+frag_keyframe -f isml -r 10 http://endpoint/ingest.isml/streaming1



When I am using RTMP with Wirecast is running well.


Any suggestion on ffmpeg command with isml protocol ?


Thank you


-
dotnet core media trans-coding library
18 juin 2020, par Faisal ShahinI'm searching for a library for media transcoding other than
ffmpeg
for dotnet core the thing I'm searching for is for media streaming of videos.


The
ffmpeg
is great but there is no library that will enable me to save the transcoded vedio to a stream object, plus when tested the conversion of the video usingffmpeg
it took too much time (of course depending on multiple factors).


so Im wondering if there is a dotnet core library other than those who uses
ffmpeg
that do the same thing but with more performance and the ability to save the output to a stream object

-
Node Media Server not streaming when I change ffmpeg argv
30 mai 2020, par joao.jlf4I'm trying to change the ffmpeg spawn argv on Node Relay Session but it does'nt work beacuse node media server finishes the stream, my argv array :



let argv = [
 '-fflags', 
 'nobuffer', 
 '-i', 
 this.conf.inPath, 
 '-b:v',
 '2000k',
 '-b:a',
 '128k',
 '-c:v',
 'libx264',
 '-preset veryfast',
 // '-c', 
 // 'copy', 
 '-f', 
 format, 
 this.conf.ouPath];