Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (72)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • 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

Sur d’autres sites (4314)

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

    


  • avcodec/adpcm : Fix left shifts in AV_CODEC_ID_ADPCM_EA

    27 septembre 2019, par Michael Niedermayer
    avcodec/adpcm : Fix left shifts in AV_CODEC_ID_ADPCM_EA
    

    Fixes : left shift of negative value -1
    Fixes : 17683/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ADPCM_EA_R2_fuzzer-5111690013704192

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/adpcm.c
  • avcodec/vc1_block : Fix invalid left shift in vc1_decode_p_mb()

    2 octobre 2019, par Michael Niedermayer
    avcodec/vc1_block : Fix invalid left shift in vc1_decode_p_mb()
    

    Fixes : left shift of negative value -6
    Fixes : 17810/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_VC1_fuzzer-5638541240958976

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/vc1_block.c