Recherche avancée

Médias (91)

Autres articles (82)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (8464)

  • Recommendations for Open Source Webinar Platforms Supporting 1000+ Users [closed]

    28 janvier, par Firas Ben said

    I am looking for an open-source webinar platform capable of hosting 1000+ concurrent users. My primary requirements are :

    


      

    • Scalability to handle large audiences seamlessly.
    • 


    • Support for features like video streaming, screen sharing, and chat functionality.
    • 


    • Compatibility with modern technologies such as RTMP and HLS.
    • 


    • Extensibility to integrate with other tools or APIs.
    • 


    


    I’ve come across platforms like BigBlueButton but it cannot handle a great number of users in a session, so I’d like to know if there are other options available.

    


  • How to open AVCodec ?

    28 novembre 2014, par Anton Kasabutski

    I’m tired of searching the solution about this theme. Can anybody help ?

    Types :

    AVOutputFormat* m_outFormat;
    AVFormatContext* m_formatContext;
    AVCodecContext* m_videoCodecContext;
    AVCodec* m_videoCodec;

    Code :

    avcodec_register_all();
    av_register_all();
    m_outFormat = av_guess_format(NULL,filePath().toUtf8().constData(),NULL);
    //filePath ended like ".mp4"
    if (!m_outFormat)
       return; //all is fine
    avformat_alloc_output_context2(&m_formatContext,NULL,NULL,filePath().toUtf8().constData());
    m_formatContext->oformat->video_id = CODEC_ID_H264;
    m_outFormat=m_formatContext->oformat;
    ////////////////////////////////////////////////////////////////////
    m_videoCodec=avcodec_find_encoder(CODEC_ID_H264);
    m_videoStream = avformat_new_stream(m_formatContext,m_videoCodec);
    if (m_videoStream)
       return; //all is fine
    m_videoCodecContext = avcodec_alloc_context3(m_videoCodec);
    m_videoCodecContext->codec_id = CODEC_ID_H264;
    m_videoCodecContext->width = 1280;
    m_videoCodecContext->height = 720;
    m_videoCodecContext->codec_type = AVMEDIA_TYPE_VIDEO;
    m_videoCodecContext->pix_fmt = PIX_FMT_YUV420P;
    av_codec_open2(M_videoCodecContext,m_videoCodec,NULL);

    I’m getting an error :

    [libx264 @.....] Codec type or id mismathes.

    av_codec_open2(..) returned (-22 error). Where I did mistake ?More info :

    • last ffmpeg
    • Mac Os x 10.10
    • libx264 installed
    • after av_guess_format(...) I’ve got audio_codec = CODEC_ID_H264, video_codec = CODEC_ID_NONE, long_name MP4(MPEG-4 Part 14) in m_outFormat.
    • after avformat_alloc_context3(...) I’ve got audio_codec_id = video_codec_id = CODEC_ID_NONE in m_formatContext.
    • after avcodec_find_encoder(CODEC_ID_H264) I’ve got name = "libx264", id = CODEC_ID_MPEG1VIDEO in m_videoCodec.

      I can share more info if You can say, what do You exactly need.

  • How to open AVCodec ?

    28 novembre 2014, par Anton Kasabutski

    I’m tired of searching the solution about this theme. Can anybody help ?

    Types :

    AVOutputFormat* m_outFormat;
    AVFormatContext* m_formatContext;
    AVCodecContext* m_videoCodecContext;
    AVCodec* m_videoCodec;

    Code :

    avcodec_register_all();
    av_register_all();
    m_outFormat = av_guess_format(NULL,filePath().toUtf8().constData(),NULL);
    //filePath ended like ".mp4"
    if (!m_outFormat)
       return; //all is fine
    avformat_alloc_output_context2(&m_formatContext,NULL,NULL,filePath().toUtf8().constData());
    m_formatContext->oformat->video_id = CODEC_ID_H264;
    m_outFormat=m_formatContext->oformat;
    ////////////////////////////////////////////////////////////////////
    m_videoCodec=avcodec_find_encoder(CODEC_ID_H264);
    m_videoStream = avformat_new_stream(m_formatContext,m_videoCodec);
    if (m_videoStream)
       return; //all is fine
    m_videoCodecContext = avcodec_alloc_context3(m_videoCodec);
    m_videoCodecContext->codec_id = CODEC_ID_H264;
    m_videoCodecContext->width = 1280;
    m_videoCodecContext->height = 720;
    m_videoCodecContext->codec_type = AVMEDIA_TYPE_VIDEO;
    m_videoCodecContext->pix_fmt = PIX_FMT_YUV420P;
    av_codec_open2(M_videoCodecContext,m_videoCodec,NULL);

    I’m getting an error :

    [libx264 @.....] Codec type or id mismathes.

    av_codec_open2(..) returned (-22 error). Where I did mistake ?More info :

    • last ffmpeg
    • Mac Os x 10.10
    • libx264 installed
    • after av_guess_format(...) I’ve got audio_codec = CODEC_ID_H264, video_codec = CODEC_ID_NONE, long_name MP4(MPEG-4 Part 14) in m_outFormat.
    • after avformat_alloc_context3(...) I’ve got audio_codec_id = video_codec_id = CODEC_ID_NONE in m_formatContext.
    • after avcodec_find_encoder(CODEC_ID_H264) I’ve got name = "libx264", id = CODEC_ID_MPEG1VIDEO in m_videoCodec.

      I can share more info if You can say, what do You exactly need.