Recherche avancée

Médias (91)

Autres articles (87)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • 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 ;

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (11175)

  • Revision 2a19c96362 : onyx_if : quiet -Warray-bounds warnings 'number_of_layers' is range checked befo

    15 mars 2014, par James Zern

    Changed Paths :
     Modify /vp8/encoder/onyx_if.c



    onyx_if : quiet -Warray-bounds warnings

    'number_of_layers' is range checked before assignment from the user
    config.

    Change-Id : Idefdaceb8736f126fa7c647da2b047dafb56ea52

  • how to set output video length from ffmpeg

    25 avril 2022, par naval Hurpade

    I'm Creating youtube video downloader using ytdl-core and ffmpeg, I'm able to combine video and audio files using ffmpeg, and files are working fine, but

    


    When I play that video video length (duration) is set to some random number like 212309854
I Already tryied ading -t flag to set time it works but I still video duration as this random number.

    


    See screenshot bellow.
And in video properties I see no length is set.

    


    module.exports = function (audio, video, selectedAudioFormat, selectedVideoFormat,res) {
  
  const ffmpegProcess = spawn(
    ffmpegInstallation.path,
    [
      '-i',
      `pipe:3`,
      '-i',
      `pipe:4`,
      '-map',
      '0:v',
      '-map',
      '1:a',
      '-c:v',
      'copy',
      '-c:a',
      'copy',
      '-crf',
      '27',
      '-preset',
      '6',
      '-movflags',
      'frag_keyframe+empty_moov',
      '-f',
      selectedVideoFormat.container,
      '-t',
      '30',
      '-loglevel',
      'info',
      '-',
    ],
    {
      stdio: ['pipe', 'pipe', 'pipe', 'pipe', 'pipe']
    }
  );
  
  
  video.pipe(ffmpegProcess.stdio[3]);
  audio.pipe(ffmpegProcess.stdio[4]);
  ffmpegProcess.stdio[1]
  .pipe(res);
  
  let ffmpegLogs = '';
  
  ffmpegProcess.stdio[2].on('data', (chunk) => {
    ffmpegLogs += chunk.toString();
  });
  
  ffmpegProcess.on('exit', (exitCode) => {
    if (exitCode === 1) {
      console.error('ERROR IN CHILD ::', ffmpegLogs);
    }
  });


    


    enter image description here

    


  • Fixed grammar error in german range validator message. Fixes #315

    29 mars 2012, par fbuchinger

    m localization/messages_de.js Fixed grammar error in german range validator message. Fixes #315