Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (49)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (4971)

  • Anomalie #3714 : squelette article : documents dupliqués en cas de majuscule

    29 mars 2016, par b b

    Voilà le patch, il est tout simple et j’aime ça :)

    J’attends vos retours avant de l’envoyer.

  • Anomalie #3668 : Un seul rubrique - impossible d’écrire un article

    2 février 2016, par phe nix

    Hello,

    J’ai pas encore pu refaire de test.

    Mais si tu ne reproduit pas, cela doit venir d’un des plugins

  • How to make video using ffmpeg with multiple photos and audio node.js

    2 juin 2020, par Jechanka

    im trying to make a video using ffmpeg (videoshow.js), at this moment i can make video with many photos but only one audio, i can't use each audio to each image, is it possible ?

    



    
var videoshow = require('videoshow')
const ffmpegPath = require('@ffmpeg-installer/ffmpeg').path;
const ffmpeg = require('fluent-ffmpeg');
ffmpeg.setFfmpegPath(ffmpegPath);
var images = [
  '1.jpg',
  '2.jpg',
]

var videoOptions = {
  fps: 25,
  loop: 5, // seconds
  transition: true,
  transitionDuration: 1, // seconds
  videoBitrate: 1024,
  videoCodec: 'libx264',
  size: '2000x?',
  audioBitrate: '128k',
  audioChannels: 11,
  format: 'mp4',
  pixelFormat: 'yuv720p'
}

videoshow([{
    path: '1.jpg',
    audio: 'fck-corona', // NOT WORKING
    caption: 'Hello world as video subtitleHello world as video subtitlHello world as video subtitlHello world as video subtitlHello world as video subtitlHello world as video subtitlHello world as video subtitlHello world as video subtitlHello world as video subtitlHello world as video subtitlHello world as video subtitlHello world as video subtitlHello world as video subtitlHello world as video subtitlHello world as video subtitl'
  }, {
    path: '2.jpg',
    audio: 'audio.mp3', // NOT WORKING
    caption: 'This is a sample subtitle',
    loop: 10 // long caption
  }])
  .audio('audio.mp3') // WOrking but i can use only one audio
  .save('video.mp4')
  .on('error', function () {})
  .on('end', function () {})