Recherche avancée

Médias (0)

Mot : - Tags -/flash

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

Autres articles (61)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains 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 ;

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

Sur d’autres sites (11030)

  • 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