
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (91)
-
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Configuration spécifique pour PHP5
4 février 2011, parPHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
Modules spécifiques
Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)
Sur d’autres sites (4066)
-
Best method for extracting(or reading) subtitles from MP4 File in C#
9 avril 2014, par user3516055i got a problem that i have to read subtitles from MP4 files
current i using command line with ffmpeg executable method.
Extracting subtitles from mp4
it's worked great, but looking for better method.after several research
i try to use AForge.NET, other FFMpeg .Net Wrapper, direct access MP4 structure, etc...
but didn't workanyone knows other way for extracting or reading subtitles from MP4 ?
thank for your help. -
How to convert video in the background using PHP and ffmpeg
20 juillet 2015, par iamthestreetsI allow users to upload videos and then they get converted using ffmpeg. The video takes a really long time to convert which usually results in an error. I have done my research with no luck as to where I should get started.
Basically what I want to do is allow the user to upload the video and then display a message that says video is being processed and you will be notified when available. In the meantime I want the video to be converted behind the scenes and allow the user to leave the page or even close the browser. I am using a Windows server.
How can I accomplish this ?
-
stream server with multiple arrivals of ffmpeg streams
18 septembre 2020, par GamepigeekI am looking for the means to make a server which receives all the FFMPEG streams that we send to it (exactly like FFSERVER which is too old).


I want us to send with a line (for example) :


"ffmpeg",
"-loglevel fatal",
"-f fbdev",
"-r 30",
"-i / dev / fb0",
"-c: v h264_omx",
"-profile: v baseline",
"-b: v BITRATE",
"-flags: v + global_header",
"-bsf: v dump_extra",
"-f rawvideo",
"tcp: //127.0.0.1: 1234"



and receive this stream on another server and redistribute it on a smooth web page !


I research how to do for 2 days.


thank you