Recherche avancée

Médias (0)

Mot : - Tags -/serveur

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

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (12522)

  • MediaController / VideoView can't play mp4 on certain phones

    14 janvier 2016, par Nicholas Muir

    From within my app I create a video from images that the user has taken using Ffmpeg. I the play this using MediaController and a VideoView. When I run the app using the Genymotion emulator for a Google Nexus 4 the video file plays without issue. When I use the Genymotion emulator for a Samsung Galaxy S4 I get an error from the VideoView on error listener say "Can’t play video".

    Thanks for your help.

  • How to play media using ffmpeg

    29 octobre 2018, par yyms

    Android Studio is converting ffmpeg to the current cmd command.
    But is there a way to play media through the cmd command ?

    • Converting : implementation ’nl.bravobit:android-ffmpeg:1.1.5’
    • Player : implementation ’com.github.wseemann:FFmpegMediaPlayer:1.0.4’

    • I have to use ffmpeg to play the media playback at double speed.

  • Facing Segmentation fault When reading video using ffmpeg, because the address of "pFormatCtx-> streams [i]-> codecpar" is 0x00

    27 février 2024, par andydy

    When reading real time video stream by using ffmpeg, pFormatCtx-> streams [i]-> codecpar is 0x00, but pFormatCtx-> streams [i]is 0x55555579bbc0.
my source code is as below where error occurs in line if (pFormatCtx->streams[i]->codecpar->codec_type == AVMEDIA_TYPE_VIDEO)

    



        //open media file
    if (avformat_open_input(&pFormatCtx, url, NULL, &avdic) != 0) {
        std::cout<<"can't open the file. \n";
        return;
    }

    //find the infomation of the stream
    if (avformat_find_stream_info(pFormatCtx, NULL) < 0) {
        std::cout<<"Could't find stream infomation.\n";
        return;
    }

    //find the parameters of the video stream
    int videoStream = -1;
    cout<nb_streams<nb_streams; i++) {
        if (pFormatCtx->streams[i]->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
            videoStream = i;
        }
    }
    if (videoStream == -1) {
        std::cout<<"Didn't find a video stream.\n"<code>