Recherche avancée

Médias (0)

Mot : - Tags -/latitude

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

Autres articles (103)

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

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (16329)

  • Allow internet access for ffmpeg in android

    11 décembre 2015, par Can Gokdere

    I have compiled a ffmpeg binary for android, now I am trying record hls stream with it. For this, I am using Runtime.exec() commands.
    This is the command I am passing to binary :

    ./ffmpeg -i VIDEO_URL -c copy -bsf:A aac_adtstoasc OUTPUT.mp4

    However, when I run this command I see "Cannot resolve host" error for any given url. My app has internet and access network state permissions, But I think that since ffmpeg binary is another process, android does not grant it with same permissions as my app.

    So my question is that, how can I give the binary Internet permission without root access.

    If this is not possible, can you guide me what other ways I can do to download a hls stream ?

    Thanks

  • AAC encoder : fix OOB access in search_for_pns

    26 septembre 2015, par Claudio Freire
    AAC encoder : fix OOB access in search_for_pns
    

    Fix out of bounds access caused by wrongful usage
    of swb_offset constants when computing scalefactor
    positions.

    • [DH] libavcodec/aaccoder.c
  • c++ ffmpeg access violation

    29 mars 2012, par user1288043

    What's wrong in this code ? It is breaking (access violation) at av_find_stream_info. While debugging, ctx->filename is "3" instead of "1.MP3" : first 4 chars are omitted, checked for other files too, same result.

    av_register_all();
    AVFormatContext *ctx=0;
    ctx=avformat_alloc_context();
    avformat_open_input(&ctx,"1.MP3",0,0);
    av_find_stream_info(ctx);
    int istream;
    for(int i=0;inb_streams;i++){
    if(ctx->streams[i]->codec->codec_type==AVMEDIA_TYPE_AUDIO){
           istream=i;
           break;
    }