Recherche avancée

Médias (91)

Autres articles (80)

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

  • 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

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (4584)

  • Video Spec to fluent-FFMPEG settings

    26 novembre 2020, par Dean Van Greunen

    Not sure how to translate this video spec into fluent-FFmpeg. please assist.

    



    

    


    This is the only video I have that plays on my iPhone, and I would like to reuse the video's encoding to allow other videos I have, to be converted into the same video format. resulting in having my other videos playable via iPhone and iOS. (this also happens to play on android, I would like the recommended encoding settings to also work on android)

    


    


    


    The video should also be streamable, I know theres a flag called +faststart but not sure how to use it.

    


    



    


    enter image description here

    



    


    here is my existing code

    


    function convertWebmToMp4File(input, output) {
  return new Promise(
    function (resolve, reject) {
  ffmpeg(input)
    .outputOptions([
      // Which settings should I put here, each on their own line/entry <-- Important plz read
      '-c:v libx264',
      '-pix_fmt yuv420p',
      '-profile:v baseline',
      '-level 3.0',
      '-crf 22',
      '-preset veryslow',
      '-vf scale=1280:-2',
      '-c:a aac',
      '-strict experimental',
      '-movflags +faststart',
      '-threads 0',
    ])
    .on("end", function () {
      resolve(true);
    })
    .on("error", function (err) {
      reject(err);
    })
    .saveToFile(output);
  });
}


    



    


    TIA

    


  • Revision 8c2e5e4964 : Merge "Correct 3 step search site initialziation"

    24 septembre 2013, par Yaowu Xu

    Merge "Correct 3 step search site initialziation"

  • FFmpeg, Record Multiple different Stream

    14 janvier 2021, par veysel

    How many stream can I record using Raspberry Pi 4 2 GB simultaneously by FFmpeg ? i tried 30 different stream URLs, it seems working good but, i am not trusting that everything is okay because when i try to record 50 same stream simultaneously, some records are not same. I mean when i compare 2 same mp3 stream records these are not the same, there are some differences between the two of them. Are there any method that i can calculate how many stream can I record simultaneously in theory ?

    


    Here that i used code

    


    for i in range(50):
    os.system("ffmpeg -i one_stream_URL -c copy output"+str(i)+".mp3 &")