
Recherche avancée
Autres articles (46)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
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, (...) -
MediaSPIP Player : les contrôles
26 mai 2010, parLes contrôles à la souris du lecteur
En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)
Sur d’autres sites (5311)
-
cPanel - does installing modules via easyapache overwrite php.ini ?
22 septembre 2013, par i.h4d35I have a little script in bash which automates the installation of ffmpeg and ffmpeg's php module on a server. At the end of this, it appends
extension=ffmpeg.so
to the end ofphp.ini
and restarts thehttpd
service.My question is, in cPanel servers, say the user installs some other module using easy apache, would that overwrite the
php.ini
file. In which case, how do I make sure that theextension=ffmpeg.so
is always added at the end ?One possible solution I thought of was to have a cron set which periodically checks the php.ini file but that doesn't look like the right solution.
-
Video processing with ffmpeg on Windows Azure
29 août 2014, par alekzI am working on the project that needs to process videos that are already stored at the AzureBlob storage.
The processing itself lookes following
- Grab frame with ffMpegFrameGrabber
- Draw some elements on top of the frame
- save it with the ffMpegFrameRecorder
basicaly I have working version of this algorithm in Java (using java wrapper over native ffmpeg)
Now I need to implement that processing with Azure Cloud Services.
My question is
What is a good ffmpeg wrapper for .net (console interface is not enough for my scenario) ?
How to use it in Azure Cloud Service (sorry for noob question, but I am new to Azure) ? -
Can I use ffmpeg to output jpegs to a memory stream instead of a file
1er février 2015, par Andrew SimpsonI have a c# app. I have 100 jpegs (for an example).
I can easily encode this into a video file.
When it has finished encoding on the client app I FTP upload to my server.
It would be ’neater’ if I could not write the video file to a disc but instead write it to a memory stream (or array of bytes) and upload via web service perhaps ?
I have checked out the ffmpeg documentation but as a c# developer I do not find it natural to understand the c examples.
I guess my 1st question is it possible and if so can anyone post me an example code in c# ? At the moment I am using the process class in c# to execute ffmpeg.
I will of course post this code if it would help ?
Thanks for everyone’s time.