Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (86)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (9675)

  • Merge "Put more code under #if CONFIG_MULTITHREAD."

    9 février 2011, par John Koleszar

    Merge "Put more code under #if CONFIG_MULTITHREAD."

  • swr : simplify code by using av_get_bytes_per_sample()

    11 avril 2012, par Michael Niedermayer

    swr : simplify code by using av_get_bytes_per_sample()

  • 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 () {})