Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (60)

  • 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

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

Sur d’autres sites (13340)

  • omadec : check GEOB sizes against buffer size

    24 octobre 2013, par Michael Niedermayer
    omadec : check GEOB sizes against buffer size
    

    Found-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    Signed-off-by : David Goldwich <david.goldwich@gmail.com>
    CC:libav-stable@libav.org
    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DH] libavformat/omadec.c
  • http: Don’t use the normal http proxy mechanism for https

    10 novembre 2011, par Martin Storsjö

    http: Don’t use the normal http proxy mechanism for https

  • convert a normal video to youtube short

    28 mai 2022, par Un1xCr3w

    hello i have videos with width of 1920px and height of 1080 and i wanna crop it at the center and create a youtube short with it

    &#xA;

    iam using youtube dl wrap node js library&#xA;here is my code example

    &#xA;

    var ffmpeg = require("fluent-ffmpeg");&#xA;const fs = require("fs");&#xA;let rawdata = fs.readFileSync("./json-files/small.json");&#xA;let clips = JSON.parse(rawdata);&#xA;&#xA;function convertIt(fileName) {&#xA;  return new Promise((resolve, reject) => {&#xA;    ffmpeg(`./media-new/${fileName}`)&#xA;      .size("480x640")&#xA;      .aspect("9:16")&#xA;      .autopad()&#xA;      .videoBitrate("4000k")&#xA;      .on("end", function () {&#xA;        console.log("file has been converted succesfully");&#xA;        resolve("foo");&#xA;      })&#xA;      .on("error", function (err) {&#xA;        console.log("an error happened: " &#x2B; err.message);&#xA;        reject(err);&#xA;      })&#xA;      // save to file&#xA;      .save(`./lib/${fileName}`);&#xA;  });&#xA;}&#xA;&#xA;async function convertToShorts() {&#xA;  for (const iterator of clips) {&#xA;    await convertIt(`${iterator.id}.mp4`);&#xA;  }&#xA;}&#xA;&#xA;convertToShorts();&#xA;

    &#xA;