Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (58)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

Sur d’autres sites (8612)

  • 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