
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (59)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (...)
Sur d’autres sites (4733)
-
FFMPEG HLS Livestream For High Frame Rates/Action Scenes
7 novembre 2020, par Devin DixonObsversation with my current ffmpeg hls livestream implementation. I am getting an HLS from a stream and is transcoding it for another stream as such :


/usr/bin/ffmpeg -y -i rtmp://127.0.0.1:1935/live/3fafa93b-d957-4360-9f9c-3ded474d57f9 -c:v copy -c:a copy -f tee -map 0:a? -map 0:v? [hls_time=1:hls_list_size=8:hls_flags=delete_segments]./media/live/3fafa93b-d957-4360-9f9c-3ded474d57f9/index.m3u8



It works great ! Accept with movie scenes with fast frame rates, namely action movies. How can I tweak my HLS livestream to better deal with scene that have high frame rates ?


-
avformat/mov : remove an always true condition
18 septembre 2020, par Zhao Zhili -
libx264 bitrate to high for streaming
26 février 2015, par KevinAI’m using libx264 to encode video captured at 1080p 24fps from a video camera. The output of the encoder goes to Live555 for streaming. I cannot get the bitrate below 30 mb/s.
My Current Settings for x264 are :
if (x264_param_default_preset(&m_pParam, "ultrafast", "zerolatency") != 0){
return false;
}
int fps = 24;
m_pParam.i_threads = 1;
m_pParam.i_fps_num = fps;
m_pParam.i_fps_den = 1;
m_pParam.i_width = m_iWidthOut;
m_pParam.i_height = m_iHeightOut;
// One keyframe per X frames:
m_pParam.i_keyint_max = 60;
//Rate control:
m_pParam.rc.i_rc_method = X264_RC_CRF;
m_pParam.rc.f_rf_constant = fps - 5;
m_pParam.rc.f_rf_constant_max = fps + 5;
//m_pParam.i_sps_id = 7;
//For streaming:
m_pParam.b_repeat_headers = 1;
m_pParam.b_annexb = 1;
m_pParam.b_intra_refresh = 1;
if (x264_param_apply_profile(&m_pParam, "main") != 0) {
return false;
}
return true;Changing the preset seems to only slow the encoding rate and consequently the frame rate.
How can I get the bitrate below 30mb/s so I can stream to something like a phone ?