Recherche avancée

Médias (0)

Mot : - Tags -/navigation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (60)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La 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 (...)

Sur d’autres sites (7437)

  • How to Play Multiple Streams with FFPLAY at the Same Time using RTSP Url

    28 avril 2024, par Bilal Ahmed Yaseen

    I 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 Yaseen

    I 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 veeravalli

    I 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