Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (52)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • 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

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (8964)

  • How to use FFmpeg to get lyrics ?

    14 février 2018, par XChy

    FFmpeg version:3.3.2

    I try to use stream to get lyrics,but that cannot.

    Code :

    AVFormatContext* fmt_ctx = NULL;
    int ret;
    av_register_all();

    if ((ret = avformat_open_input(&fmt_ctx, "media path", NULL, NULL))){
       printf("Fail to open file");
       return;
    }
    if (fmt_ctx->iformat->read_header(fmt_ctx) < 0) {
       printf("No header format");
       return;
    }
    for (uint i = 0; i < fmt_ctx->nb_streams; i++){
       auto stream=fmt_ctx->streams[i];
       if(stream->disposition==AV_DISPOSITION_LYRICS){
           printf("lyrics!");//"will not print"
       }
    }
  • FFMPEG stream separate video and music files

    10 janvier 2018, par Kulcanhez

    I want to stream using FFMPEG some random nature videos and have some random music playing under it, by other words, playing some video files and some music files at the same time. I already searched but I found no solutions. I’m using Ubuntu currently. I said FFMPEG because I didn’t found any other solution. Thanks !!

  • ffmpeg - add background music for every sec to a audio file [on hold]

    17 juin 2017, par priya

    My requirement is I have two audio files that as the background music file of 1sec duration has to be added to a audio file of 1min duartion for every 10sec of this file the background music audio is to be played.I am using ffmpeg python package and am newbie.Please help me