
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (78)
-
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Emballe Médias : Mettre en ligne simplement des documents
29 octobre 2010, parLe plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)
Sur d’autres sites (6736)
-
Play same audio file to two different sound cards simultaneously using android media player [on hold]
15 décembre 2016, par HardikI have one custom board( media player) running android4.2 OS on it and I need to add a feature that will play same audio to two different sound cards simultaneously.
I have two output devices HDMI and TLV320aic3100 Codec.
And Want to play Video and audio through HDMI and same audio should play through TLV codec. Audio through TLV codec should be in sync with HDMI video/audio.Right now I’m able to play audio through TLV codec by hard-coding sound card number in tinyalsa PCM code "pcm.c" which is used by HAL code of Android Media Player (by default this code will give audio to HDMI),
but not able to provide audio to both sound cards simultaneously.I tried with creating thread in pcm code and writing incoming audio data to both sound card, By doing this HDMI going into under-run problem.
Is there any way to provide same audio to both sound cards simultaneously using Android Media Player or any other options to try ?
-
Play video using FFmpeg library in androidNDK
13 mai 2020, par manikanta veeravalliI have all required .so libraries and header files to play a video. I want to play video from the Raw folder. I am struck at CPP code. Unable to pass a video file path to CPP code. The following is my native-lib.cpp code



const char *file = env->GetStringUTFChars(path, 0);
if (file == NULL) {
 printf("The file is a null object.");
}

av_register_all();
int ret = 0;
char errbuf[256];
AVFormatContext *fmt_ctx = avformat_alloc_context();
int ret12 = avformat_open_input(&fmt_ctx, file, NULL, NULL);
if (ret12 < 0) {
 av_strerror(ret, errbuf, sizeof(errbuf));
 __android_log_print(ANDROID_LOG_ERROR, "ffmpeg", "%s", errbuf);
 __android_log_print(ANDROID_LOG_ERROR, "ffmpeg", "%i", ret12);
 return;
}




The above ret12 returning -ve value and it is returning the control out


-
How to Play Multiple Streams with FFPLAY at the Same Time using RTSP Url
30 mars 2016, par Bilal Ahmed YaseenI am trying to play live stream coming from the server with RTSP URL. A sample RTSP URL is given below :
rtsp://username:password@machine_ip/42331536059e9f21
Actually, this stream is the call between two participants (caller & called). But when I play this URL with FFPLAY, I get just one stream(called) while I should get both streams (caller and called). I am using the following command :
ffplay rtsp://username:password@machine_ip/42331536059e9f21
Am I missing some parameters along with this command to fetch all streams.