
Recherche avancée
Autres articles (57)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (5608)
-
af_hdcd : disable auto-convert by default
5 octobre 2016, par Burt Paf_hdcd : disable auto-convert by default
As all known valid HDCD sample formats and sample rates are now handled
by the filter, remove the scan that "invades the privacy" of the filter graph
and turn off autoconvert by default as requested by Nicolas George.http://ffmpeg.org/pipermail/ffmpeg-devel/2016-August/197571.html
Signed-off-by : Burt P <pburt0@gmail.com>
-
Same command but different result, odd behavior between cmd and python subprocess
22 juin 2020, par Josh KatzHello and thanks everyone, I am having a very strange phenomenon and I hope you can help me solve it, I run a command through the cmd to save video coming from a camera to a local file in my computer,the command is :


ffmpeg -rtsp_transport tcp -i "rtsp ://root:senswim2018@10.0.0.101/axis-media/media.amp" -c copy foo.mp4


when I run the command through the cmd it works fine (recorded a video longer than 12 hours), but when I run it as a command "Using the subprocess in Python, it only records around 5:30 minutes


cmd = ["ffmpeg","-rtsp_transport","tcp", "-i", "rtsp ://root:senswim2018@10.0.0.101/axis-media/media.amp" ,"-c", "copy","foo.mp4"]


process = subprocess.Popen(cmd , stdout=subprocess.PIPE, stderr=subprocess.STDOUT)


time.sleep(600000)


process.terminate()


This matter is very confusing and unclear to me, I would be very happy if you could give some insight thanks.


-
.h264 c# player with google map [closed]
11 octobre 2014, par pkvasanwant to create media player to play .h264 file in c# along with Google map.
My mobile hardware unit records cctv image in .h264 format the footage also contains GPS data like Location and speed for each frame
I want to design a media player in C# to play the cctv footage which is in .h264 format and also I want to read the GPS data from each frame and embed in Google map to show the location
I wanted following help
1) how to play .h264 file in C#
2) want to read metadata from .h264 file (GPS data)
3) want to embed google map in C# and display location as per the metadata from .h264 file