
Recherche avancée
Autres articles (53)
-
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 (...) -
Les images
15 mai 2013 -
Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur
8 février 2011, parLa visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
Configuration de la boite multimédia
Dès (...)
Sur d’autres sites (7695)
-
Excessive CPU usage when transcoding with ffmpeg
21 février 2014, par user3130013I have 2 servers that are almost identical :
Server 1 : Dell R900 4xQuad core E7330. Has DVB cards getting MPEGTS streams and does about 20 transcoding processes @ 70% CPU each
Server 2 : Dell R900 4xQuad core E7340. Gets MPEGTS via HTTP from server 1 and does only 7 transcoding processes @ 220% CPU each.Server 2 is not able to do more then 7 as each process is almost triple in CPU consumption. If If I start with 1 process it shows up as 70% and looks fine. When I add remaining 6 all processes jump to 220% usage.
Any ideas what might be wrong with server 2 ?
-
ffmpeg streaming camera with directshow
17 novembre 2015, par atu0830I am trying use ffmpeg to streaming one camera. The command is
ffmpeg.exe -y -f dshow -i video="AmCam" -c:v copy -framerate 7.5 -map 0:0 -f ssegment -segment_time 4 -segment_format mpegts -segment_list "web\stream.m3u8" -segment_list_size 720 -segment_list_flags live -segment_wrap 10 -segment_list_type m3u8 "web\segments\s%%d.ts"
And I create a html in web folder
<video controls="controls" width="720" height="405" autoplay="autoplay">
<source src="stream.m3u8" type="application/x-mpegURL"></source>
</video>
All ts file generated but looking Safari on iPad looding but it always show dark player and loading
-
Set FFmpeg path for scikit-video outside python
2 décembre 2019, par Nagabhushan S NIs it possible to set the path of ffmpeg for scikit-video module ? I know I can set using
skvideo.setFFmpegPath(path)
. Is there any environment variable that I can set, so that everytime I importskvideo.io
, it picks the defined path ?