Recherche avancée

Médias (0)

Mot : - Tags -/upload

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (104)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (14303)

  • avfilter/avf_abitscope : Correct range for framerate

    23 mars 2017, par Gyan Doshi
    avfilter/avf_abitscope : Correct range for framerate
    

    Signed-off-by : Gyan Doshi <gyandoshi@gmail.com>
    Signed-off-by : Paul B Mahol <onemda@gmail.com> (via IRC)

    • [DH] libavfilter/avf_abitscope.c
  • 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

    &#xA;

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

    &#xA;

    See screenshot bellow.&#xA;And in video properties I see no length is set.

    &#xA;

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

    &#xA;

    enter image description here

    &#xA;

  • How can I make a slideshow of images into a video with each image having a specific length of frames to be shown ?

    24 novembre 2013, par jett

    Right now I am using something like this to create a video from a selection of images :

    avconv -i input%05d.png -r 24 -vsync cfr -c:v libx264 output.mp4

    But I want each picture to have a separate amount of time spent on it, so if I have 5 images I might want :

    [10frames, 40frames, 5frames, 80frames, 10frames]

    To be specified. The only thing I could find that may be a solution is to create five separate videos- set the length then merge them together, is this my only choice here ?