Recherche avancée

Médias (3)

Mot : - Tags -/plugin

Autres articles (66)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (8787)

  • jpeg2000 : Fix profile define values

    23 mai 2016, par Francois Cartegnie
    jpeg2000 : Fix profile define values
    

    Signed-off-by : Diego Biurrun <diego@biurrun.de>

    • [DBH] libavcodec/avcodec.h
  • How to set x264 baseline profile with libav in C++

    14 avril 2015, par Denis Loh

    I am writing a small tool, which converts a video into a raw h264 file. These files shall be played later by a SIP phone. I have the following code :

     eccx->pix_fmt = PIX_FMT_YUV420P;
     eccx->width = VIDEO_FRAME_WIDTH;
     eccx->height = VIDEO_FRAME_HEIGHT;
     eccx->time_base.num = 1;
     eccx->time_base.den = VIDEO_FRAMES_PER_SEC;
     eccx->max_b_frames = 0;

     eccx->rtp_payload_size = VIDEO_RTP_PAYLOAD_SIZE;

     eccx->bit_rate = VIDEO_BIT_RATE;
     eccx->rc_max_rate = VIDEO_BIT_RATE;
     eccx->rc_buffer_size = VIDEO_BIT_RATE * 2;

     eccx->flags |= CODEC_FLAG_QP_RD;
     eccx->flags |= CODEC_FLAG_LOW_DELAY;
     eccx->flags |= CODEC_FLAG_QSCALE;
     eccx->flags |= CODEC_FLAG_EMU_EDGE;

     eccx->mb_decision = FF_MB_DECISION_SIMPLE;

     switch(video){
     case H263:
       break;
     case H263P:
       eccx->flags |= CODEC_FLAG_H263P_SLICE_STRUCT;
       break;
     case H264:
       av_dict_set(&amp;options, "vprofile", "baseline", 0);
       eccx->flags2 = CODEC_FLAG2_FASTPSKIP;
       eccx->profile = FF_PROFILE_H264_BASELINE;
       eccx->level = 13;
       break;
     }

    When I execute this program I got the following output from libx264 :

    [libx264 @ 0x10fad60] using cpu capabilities: MMX2 SSE2Fast SSSE3 FastShuffle SSE4.1 Cache64
    [libx264 @ 0x10fad60] profile Main, level 1.3

    Why is this still Main profile, though I have set it explicitly to baseline ?

    Additionally, I would be really cool, if someone could add some notes which kind of h264 settings are useful for SIP phone calls. Thank you very much !

  • mediaelement.js MP4-Files AVC Profile and Level

    28 juin 2016, par Luke Dollard

    Can anyone tell me if a High AVC Profile and a 5.0 level x264 mp4 @12mbps is incompatible with mediaelement.js and/or if there is documentation someplace for what is and is not compatible. (Encoded in sorenson squeeze).

    Right now the player has to download the whole 60 min video before it streams, but then you cannot jump around the video at all without it restarting.

    BUT it will play our 10 mins streams with the exact same specs fine.

    Videos play fine when downloaded.