
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (63)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (12242)
-
avformat : Append data in fill_buffer() when possible
30 juin 2013, par Michael Niedermayeravformat : Append data in fill_buffer() when possible
Data is appended in fill_buffer() when there is sufficient space left
and the data pointer only reset when needed.
Previously the data pointer was more often reset, loosing more seekback
space than otherwise needed.Signed-off-by : Michael Niedermayer <michaelni@gmx.at>
-
How to make video using ffmpeg with multiple photos and audio node.js
2 juin 2020, par Jechankaim 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 () {})





-
FFmpeg can't decode H264 stream/frame data
31 juillet 2015, par GediminasRecently I had chance to work with two devices that are streaming the H264 through RTSP.
And I’ve ran into some problem trying to decompress this stream using FFmpeg library.Every time the "avcodec_decode_video2" is called - FFmpeg just says something like :
[h264 @ 00339220] no frame !
My raw H264 stream I frame data starts like this : "65 88 84 21 3F F8 F8 0D..."
(as far as I understand this 0x65 indicates that it’s a IDR frame ?)Other frames for one device starts like : "41 9A 22 07 F3 4E 48 CC...."
and for other device - like this : "61 9A 25 C1 1C 45 62 39...."
- Am I missing some frame data here ?
- Does FFmpeg needs to have some extra parameters set up ?
I was expecting at least "00 00 00 01" bytes at the start for the frame data... but this is what I’ve got..