Recherche avancée

Médias (1)

Mot : - Tags -/stallman

Autres articles (35)

  • Que fait exactement ce script ?

    18 janvier 2011, par

    Ce script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
    Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
    Installation de dépendances de MediaSPIP
    Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
    Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)

  • Installation en mode standalone

    4 février 2011, par

    L’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
    [mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
    Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...)

Sur d’autres sites (10573)

  • Revision 1c50ff8d753461a5eab0742945a41304f5043c45 : #1967 ne pas mentionner explicitement 0minirezo mais s’en refereer aux ...

    20 octobre 2010, par Cerdic — Log

    #1967 ne pas mentionner explicitement 0minirezo mais s’en refereer aux autorisation pour editer une rubrique (reliquat de [8438] modifie par [8466]) git-svn-id : svn ://trac.rezo.net/spip/branches/spip-2.1@16485 caf5f3e8-d4fe-0310-bb3e-c32d5e47d55d

  • How to save data of packet.data using ffmpeg && c language ?

    12 juin 2015, par patrick

    I’m try to build an app in c that extract audio from video and save it as audio file. I’m able to extract the audio but now the problem is how to save it. I wrote the code given below but it’s giving me an segmentation fault. Thanks in advance.

    My code is :

    AVOutputFormat* fmt = av_guess_format("mp3", NULL, NULL);;
    AVFormatContext* oc = avformat_alloc_context();
    oc->oformat = fmt;
    avio_open2(&oc->pb, "test.mp3", AVIO_FLAG_WRITE,NULL,NULL);

    AVStream* stream=NULL;
    int cnt = 0;

    while(av_read_frame(pFormatCtx, &packet)>=0) { //pFormatCtx is input file format context.
       if (packet.stream_index==audioStream) {
       int got_frame = 0;
       if (avcodec_decode_audio4(pCodecCtx, pFrame, &got_frame, &packet) < 0) {
           fprintf(stderr, "Error encoding frame\n");
                   exit(1);
           }

           if(got_frame) {
           if (av_interleaved_write_frame(oc, &packet) < 0) {
                   printf(stderr, "Error writing frame\n");
                       exit(1);
                   }
           }
       }
       av_free_packet(&packet);
       av_init_packet(&packet);
    }
  • Revision 595985334e : vp9_encodeframe.c : Silence rdmult assignment warning with a cast. Cast result o

    19 février 2014, par Tom Finegan

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c



    vp9_encodeframe.c : Silence rdmult assignment warning with a cast.

    Cast result of round() to int.

    Change-Id : Ib708fddfadde4c765001ce9723fda113fd0f4bf6