Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (32)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

Sur d’autres sites (9516)

  • How can I reduce the dimension/frame dimensions of a video files via command line ? Ffmpeg ?

    7 septembre 2017, par narahan

    Hi I am trying to reduce the video dimensions of some video files from 1280 x 720 to 640 x 360. I found this similar question on stackoverflow : Reducing video size with same format and reducing frame size However, the accepted answer ’ffmpeg -i -s 640x480 -b:v 512k -vcodec mpeg1video -acodec copy
    ’ is reducing my video duration from 9 seconds for example to 1 second. I’ve tried this with multiple files and they are all reducing to 1 second. Can anyone tell me why or how to fix this ?

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




    


  • Excessive CPU usage when transcoding with ffmpeg

    21 février 2014, par user3130013

    I have 2 servers that are almost identical :

    Server 1 : Dell R900 4xQuad core E7330. Has DVB cards getting MPEGTS streams and does about 20 transcoding processes @ 70% CPU each
    Server 2 : Dell R900 4xQuad core E7340. Gets MPEGTS via HTTP from server 1 and does only 7 transcoding processes @ 220% CPU each.

    Server 2 is not able to do more then 7 as each process is almost triple in CPU consumption. If If I start with 1 process it shows up as 70% and looks fine. When I add remaining 6 all processes jump to 220% usage.

    Any ideas what might be wrong with server 2 ?