Recherche avancée

Médias (0)

Mot : - Tags -/configuration

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (111)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (6971)

  • av_find_stream_info works OK with file, not with pipe

    14 décembre 2016, par Aliza

    I have the following code :

    av_register_all();
    pFormatCtx = avformat_alloc_context();
    const char* input = "pipe:";
    AVInputFormat* iFormat = av_find_input_format("mpegts");
    if ( avformat_open_input(&pFormatCtx, input, iFormat, NULL) != 0 )
            return -1;
    int res = av_find_stream_info(pFormatCtx);

    when my input is a regular file, this works nicely and pFormatCtx is populated with the streams in the file. However, when i set input to "pipe :", av_find_stream_info returns with -1.

    I am using the same file and piping it by running
    cat mpeg.ts | myApp

    Any ideas ?

    Thanks,
    Aliza

  • ftp upload then loop

    23 juillet 2012, par thevoipman

    I have a minor bash script loop I'm trying to learn and accomplish but it's giving me a hard time to comprehend with all the readings I've done.

    I am uploading to a ftp server, then I want to check to see if the upload went through successfully by using wget spider method. If it returns OK then we're good, if not then I want to redo the ftp upload once more.

    The code I have below are based on my research and learning from here. If I could be doing this better, please help me revise it so I can learn from it.

    Thanks again in advance :

    for ((i = 0 ; i < 1 ; i++ ));
    do
       wget_output=$(wget -q --spider "http://$FTP_HOST/test.jpg")
       if [ $? -ne 0 ];
       then

           ftp -in $FTP_HOST &lt;<endftp user="user" binary="binary" put="put" bye="bye" endftp="endftp" else="else" echo="echo" code="code" fi="fi" done="done"></endftp>code>

    My errors when executing is :

    line 28: syntax error: unexpected end of file
  • Revision 7050074756 : Make the api behavior conform to api spec. When no more data is available, vpx_

    1er août 2014, par Hangyu Kuang

    Changed Paths :
     Modify /test/decode_test_driver.cc


     Modify /vp8/vp8_dx_iface.c


     Modify /vp9/vp9_dx_iface.c



    Make the api behavior conform to api spec.

    When no more data is available, vpx_codec_decode should
    be called with NULL as data and 0 as data_sz.

    vpx_codec_get_frame iterates over a list of the frames
    available for display. The iterator storage should be initialized
    to NULL to start the iteration. Iteration is complete when this
    function returns NULL.

    Also change the unit test to conform to the api spec.

    Change-Id : I4b258b309f5df3d37d10c82f01492c0394181c2a