
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (58)
-
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. -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Librairies et logiciels spécifiques aux médias
10 décembre 2010, parPour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)
Sur d’autres sites (8806)
-
What determine number of cpu core usage of filter select=gt(scene,0.1) ?
15 décembre 2022, par kocoten1992I've notice that when using filter gt(scene,0.1), for example :


ffmpeg -i big_buck_bunny.mkv -filter:v "select='gt(scene,0.1)',showinfo" -f null -


Depends on the video, number of cpu cores usage varies extremely (sometimes it 3 cores usage - other time 12 cores usage in different video).


Would like to ask what determine that logic ?


I try to read ffmpeg source code but not familiar with it, a general explanation would be enough, but much appreciate if you point out the line/directory determine that logic in https://github.com/FFmpeg/FFmpeg.


(Also not asking how to reduce cpu usage, interested in the logic determine that).


-
Find the streaming url source of an online streaming tv station to record with ffmepg
20 mars 2016, par AHCI am trying to look into the javascript streaming source of the following site http://www.aztv.az/canli/aztv-canli.htm to capture the url and to record it using
ffmpeg
.My goal is to get something like this running :
ffmpeg -i rtsp://XXX.XXX.XXX.XXX:XXX/live.sdp -acodec copy -vcodec copy c:/test_recording.mp4
I don’t know what protocol this website uses, rtsp, rtmp, http, etc.
Could you please help me to resolve this ?
I tried to look into the.js
file in the source of the page, but it is a bit complicated to figure it out. here is the js script. -
Anomalie #4258 (Nouveau) : Constante _SPIP_SELECT_RUBRIQUES définie sans vérifier si elle n’a pas ...
31 décembre 2018, par 6ril ooBonjour,
Afin d’éviter une erreur de niveau notice comme celle qui se produit si on redéfinit la constante ailleurs (dans mes_options pour ce qui me concerne), ne faudrait-il pas dans /ecrire/inc/chercher_rubrique, remplacer ligne 24- <span class="CodeRay"> <span class="predefined">define</span>(<span class="string"><span class="delimiter">'</span><span class="content">_SPIP_SELECT_RUBRIQUES</span><span class="delimiter">'</span></span>, <span class="integer">20</span>);
- </span>
par- <span class="CodeRay"><span class="keyword">if</span> (!<span class="predefined">defined</span>(<span class="string"><span class="delimiter">'</span><span class="content">_SPIP_SELECT_RUBRIQUES</span><span class="delimiter">'</span></span>)) {
- <span class="predefined">define</span>(<span class="string"><span class="delimiter">'</span><span class="content">_SPIP_SELECT_RUBRIQUES</span><span class="delimiter">'</span></span>, <span class="integer">40</span>);
- }
- </span>
?