Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (99)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (6689)

  • How to use ffmpeg.exe to produce a video with exact length for time from image sequence in C# ?

    28 avril 2016, par user2186102

    We try to use ffmpeg.exe to make a video from image sequence in C#. However, we can’t produce a video which has a predict length for time. For example, we want to produce a video whose length of time is one hour ; actually, the length of time is only 47 miniutes.

    According our understanding, the function, WriteVideoFrame(Bitmap frame, TimeSpan timestamp) of AForge.Video.FFMPEG, can solve this problem. It is because each input frame is associated with a timestamp.

    In ffmpeg.exe, however, we now can only use frame to as input of ffmpeg.exe.

    Who can show me how to write the command or parameters to input each image and the associated timestamp, the same to WriteVideoFrame(Bitmap frame, TimeSpan timestamp).

  • Mapping audio to video with ffmpeg with metadata length

    20 juin 2023, par Tomáš Kordoš

    I'm using node.js ffmpeg-static to map a video and an audio together.

    


    var VideoStream = ytdl(video, { filter: 'videoonly', quality: 'highestvideo' });
var AduioStream = ytdl(video, { filter: "audioonly", quality: 'highestaudio' });

const ffmpegProcess = cp.spawn(ffmpeg, [
  '-i', `pipe:3`,
  '-i', `pipe:4`,
  '-map', '0:v',
  '-map', '1:a',
  '-c:v', 'copy',
  '-c:a', 'aac',
  '-movflags', 'frag_keyframe',
  '-f', 'mp4',
  '-'
 ], {
  stdio: [
    'pipe', 'pipe', 'pipe', 'pipe', 'pipe',
  ],
});

VideoStream.pipe(ffmpegProcess.stdio[3]);
AduioStream.pipe(ffmpegProcess.stdio[4]);
ffmpegProcess.stdio[1].pipe(fs.createWriteStream('./out.mp4'));


    


    The saved file contains both audio and video as expected, But the length of the file is only 4 seconds when using -movflags frag_keyframe. Although the video continues after that (00:10 / 00:04)

    


    -movflags faststart Never works

    


    How do I automatically or manualy (Ytdl allows me to download the video length)set the length ?

    


    Thank you

    


  • avfilter/buffersrc : allow promoting color range to MPEG

    12 janvier 2024, par Niklas Haas
    avfilter/buffersrc : allow promoting color range to MPEG
    

    Otherwise, passing an UNSPECIFIED frame to am MPEG-only filter graph
    would trigger insertion of an unnecessary vf_scale filter, which would
    perform a memcpy to convert between the two.

    This is safe to do because unspecified YUV frames are already
    universally assumed to be MPEG range, in particular by swscale.

    • [DH] libavfilter/buffersrc.c