Recherche avancée

Médias (91)

Autres articles (102)

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

  • 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 Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

Sur d’autres sites (16171)

  • How to use data from list of text files for FFMPEG livestream

    30 août 2022, par Steve Mimshak

    Is it possible to use a list of text files for FFMPEG livestream, i want to be able to update the data in text files in real time during the stream.

    


  • mov : fix decryption with edit list

    12 janvier 2017, par erankor
    mov : fix decryption with edit list
    

    Retain the ranges of frame indexes when applying edit list in
    mov_fix_index. The index ranges are then used to keep track of the frame
    index of the current sample. In case of a discontinuity in frame indexes
    due to edit, update the auxiliary info position accordingly.

    Reviewed-by : Sasi Inguva <isasi@google.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/isom.h
    • [DH] libavformat/mov.c
  • Dynamically generate list of arguments for ffmpeg in C

    5 mars 2013, par OregonTrail

    I'm currently writing a video conversion daemon in C. It calls ffmpeg using execvp.

    I've created a struct called "ffmpeg_job" that represents a conversion job to be completed. I'd like to dynamically allocate the arguments to ffmpeg for each job, so that I can free one of these structs and its list of arguments after the job is completed.

    I started writing the function that dynamically allocates the list of arguments, but I feel like the way I'm going about it is quite naive. The code is below.

    Is there a better way to do this ?

    EDIT : I'm thinking now that I will have a static string list of arguments for each level of quality, then sprintf into it and strtok it into a char **

    char ** generate_arguments(
       char *filepath,
       ph5v_format format,
       ph5v_quality quality)
    {
       char ** arguments;
       if (format == ph5v_MP4) {
           mp4_arguments = {
               "-i", "%%INPUT FILEPATH 1",
               "-vcodec", "libx264",
               "-preset", "%%X264 PRESET 5",
               "-b:v", "%%VIDEO BITRATE 7",
               "-strict", "-2",
               "-acodec", "aac",
               "-b:a", "%%AUDIO BITRATE 13",
               "-ar", "%%AUDIO SAMPLERATE 15",
               "-ac", "2",
               "-y", "%%OUTPUT FILEPATH 19"
           }

           arguments = malloc(sizeof(char*) * 20);

           int i;
           for (i = 0; i &lt; 20; i++) {
               if (i == 1) {
                   char *argument = malloc(strlen(filepath) + 1);
                   strcpy(argument, filepath);
                   arguments[1] = argument;
               } else if (i == 5) {
                   if (quality == ph5v_LOW || quality == ph5v_MEDIUM) {
                       char *argument = malloc(strlen("fast") + 1);
                       strcpy(argument, "fast");
                       arguments[5] = argument;
                   } else if (quality == ph5v_HIGH || quality == ph5v_ULTRA ) {
                       char *argument = malloc(strlen("medium") + 1);
                       strcpy(argument, "medium");
                       arguments[5] = argument;
                   }
               } else if (i == 7) {
                   if (quality ==
               .
               .
               .