Recherche avancée

Médias (91)

Autres articles (57)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

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

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

  • phpinfo Loaded Configuration File (none)

    23 juillet 2014, par Emon Chowdhury

    MY Server operating system Centos 6.4 and also WHM Installed. I have installed FFMPEG and FFMPEG-PHP.
    Before installing FFMPEG Others plugin also install such as face, flvtool2, gpac, lame, libogg, lintheora, libvorbis, MPlayer, opencore-amr, x264, xvidcore, yamdi, yasm etc.

    After install FFMPEG php.ini not working. In function phpinfo() that show Loaded Configuration File (none). Also ioncube not load. Before installing ffmpeg ioncube loaded.

    In Command Promt php -i|grep "Loaded" that show
    Loaded Configuration File=>/usr/local/lib/php.ini
    .....
    In Command Promt php -i|grep ini that also show
    Loaded Configuration File=>/usr/local/lib/php.ini

    But in PHP CODE php function phpinfo() that sho
    Loaded Configuration File none.
    And also I have change php.ini such max_upload_size etc but nothing work. Totally php.ini not working in cpanel account of php code.

    What is the problem ?

    Please help me.

  • Revision a46f5459c3 : improved speed of 4x4 sse2 fdct. * speed improvment of 30 percent achieved * mu

    3 mars 2014, par Andrew Russell

    Changed Paths :
     Modify /vp9/encoder/x86/vp9_dct_sse2.c



    improved speed of 4x4 sse2 fdct.

    * speed improvment of 30 percent achieved
    * multiplies and adds remain the same
    * non-arithmetic instructions minimized by hand, by :
    -expanding 2 pass loop
    -removing irrelivant "shuffles"
    -combining last two rounding steps
    * further improvments may be possible

    Change-Id : Idec2c3f52910c48e6a0e0f9aefed5cae31b0b8c0

  • ffmpeg audio plot wave form

    1er avril 2016, par Haris

    I need to plot wave form of audio as explained here ffmpeg - Can I draw an audio channel as an image ?, I found that some command line option for plotting to image, but my requirement is do from c++ code and draw live waveform on UI. I am able to decode the audio data successfully, but no idea how the data is stored in AVFrame extended_data pointer. The audio can be either stereo or mono.

    AVFrame *frame=av_frame_alloc();
    while(av_read_frame(container,&packet)>=0)
    {

       int len=avcodec_decode_audio4(ctx,frame,&frameFinished,&packet);
       frame->extended_data //how data stored inside the pointer
       ........................
    }