
Recherche avancée
Autres articles (112)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
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 (...)
Sur d’autres sites (15995)
-
How to Play Multiple Streams with FFPLAY at the Same Time using RTSP Url
28 avril 2024, 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.


-
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.
-
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