#Transcoding on the fly
12 messages · Page 1 of 1 (latest)
How it is related to electron?
const responseStream = https.request(stream[1], options);
ffmpeg(responseStream)
.videoCodec('libx264')
.audioCodec('aac')
.format('mp4')
.on('error', (err) => {
console.error('Error in transcoding:', err);
})
.pipe(res, { end: true });
ah because i am using electron?
This is independent module
i though electron does have any buildin player with transcoder?