Recherche avancée

Médias (1)

Mot : - Tags -/ipad

Autres articles (72)

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

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

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

  • Why am I receiving Apple Mach-O linker (ld) error when I use ffmpeg in iOS Xcode project ?

    2 novembre 2016, par Raffi

    I am getting all these errors I have no idea why I hope you can help me guys.

    Errors description

    I have included "avformat.h" in bridging header
    I have included all frameworks/libraries needed too

    enter image description hereenter image description here

  • FFmpeg : Decode ALAC (Apple Lossless) Audio (RTP source)

    30 avril 2014, par Carpediem

    I am working on Decoding Audio coming via RTP. The Audio is ALAC encoded. I am unable to setup the decoder in ffmpeg and decode. My code looks like this. Any help is appreciated.

    The following is where I setup the codec context

    p_rtp_audio_codec = avcodec_find_decoder(AVCodecID::AV_CODEC_ID_ALAC);
    p_rtp_audio_codec_ctx = avcodec_alloc_context3(p_rtp_audio_codec);
    av_opt_set_int(p_rtp_audio_codec_ctx, "channel_layout", AV_CH_LAYOUT_STEREO,  0);
    // TODO : Set Sample format and Sample Rate ? How to do that?
    if (avcodec_open2(p_rtp_audio_codec_ctx, p_rtp_audio_codec, NULL) < 0) {
    std::cout << "[DEC] avcodec_open2 failed for RTP AUDIO CODEC CTX\n";
    }
    // allocate frames
    p_rtp_audio_frame = avcodec_alloc_frame();

    The following is where I decode the audio as I get RTP streams

       // fill the packet
    packet.data = &audio_streams[index].data[0];
    packet.size = audio_streams[index].size;
    int result1 = avcodec_decode_audio4(p_rtp_audio_codec_ctx, p_rtp_audio_frame, &got_audio_frame, &packet);

    My call to avcodec_open2 fails and I see that the structure codec_ctx->codec is not filled with values.
    Any idea how I can do this ?

  • Revision 7f63bfa6d2 : Fix MSVS builds for unit test changes Update the Visual Studio builds to suppor

    1er juin 2012, par John Koleszar

    Changed Paths : Modify /libs.mk Modify /solution.mk Fix MSVS builds for unit test changes Update the Visual Studio builds to support the new monolithic unit test binary. Includes minor semi-cosmetic refactoring of solution.mk, as the %vpx.vcproj match is no longer appropriate given the test_libvpx (...)