Recherche avancée

Médias (91)

Autres articles (10)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (5213)

  • how to explain this C language code from ffmpeg remuxing

    20 avril 2017, par Fidona

    can someone help me what the meaning of this code ? this is a code from ffmpeg remuxing code.

    static void log_packet(const AVFormatContext *fmt_ctx, const AVPacket *pkt, const char *tag, int hours, int mins, int secs, int us, int *time )
    {
       AVRational *time_base = &fmt_ctx->streams[pkt->stream_index]->time_base;
       total = total + pkt->duration;
     //  printf( "%d:%d:%d.%d \n", hours,  mins,  secs, us );
       *time = av_q2d(*time_base) * pkt->pts ;
    }

    I’m kind of new to C language. thank you !

  • Adding to NPM, merged white-space cleanup & language translation.

    26 février 2015, par jackmoore
    Adding to NPM, merged white-space cleanup & language translation.
  • Best language to use for AWS Beanstalk worker, for Watermarking videos

    16 juin 2017, par RAJ CHOURASIA

    I have a requirement such that, for each customer, the video content I have has to be separately watermarked and kept in the cloud. Also, this whole process is to be automated.

    The way I have figured the architecture is that :

    • I would use AWS SQS queue, to update for which Customers, which set of videos have to be watermarked
    • AWS Beanstalk worker would read the queue, pick up the videos from a S3 location, watermark the required videos and save back in a separate S3 location

    Total size of all the videos can be upto 15GB, which takes more than 24hrs to watermark, using "ffmpeg", so I will also require

    • Ability to parallel process, use multiple CPU cores if available
    • Ability to auto scale, when required

    In order to achieve this, what would be the best Language to use, to write the AWS Beanstalk worker logic ?