Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (43)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (10643)

  • avformat/utils : Open decoder even if there are no packets if parameters are missing

    9 juin 2016, par Michael Niedermayer
    avformat/utils : Open decoder even if there are no packets if parameters are missing
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/utils.c
  • Could not open codec FFMPEg

    3 juin 2016, par Van Gan

    I’m working on a Project in C++ with FFMPEG. I’m stuck on the Problem , that he codec is found but cannot be opened. Here’s my code :

    codec = avcodec_find_encoder(AV_CODEC_ID_H264);
    c = avcodec_alloc_context3(codec);
    if (!codec) {
       fprintf(stderr, "Codec not found\n");
       exit(1);
    }


    /* open the codec */
    if (avcodec_open2(c, codec,NULL) &lt; 0)
    {
        fprintf(stderr, "Codec could not be opened\n");
        exit(1);
    }

    I have aleady registered all the codec in the main function. Any help would be very appeciated !

  • can't open jmpeg codec

    14 avril 2016, par YJJ

    I am trying to convert jpg images to mjpeg video file.

    when I selected MJPEG as a codec, error occurs

    //AVCodecID codec_id = AV_CODEC_ID_H264;
    AVCodecID codec_id = AV_CODEC_ID_MJPEG;
    if (avcodec_open2(pCodecCtx, pCodec, NULL) &lt; 0) {
       printf("Could not open codec\n");
       return -1;
    }

    it stops at the avcodec_open2 function.
    but when I choose H264 codec, it goes smoothely.
    I can’t understand what’s going on here.