skip to Main Content

Html – MP4 video not playing on Safari iPhone

Sample video showing the problem: https://gget.it/io64/h264test13576.mp4 - can you play it on Safari? I have a video on a HTML page <video controls><source src="/files/test.mp4"></video> that works on PC (Firefox, Chrome, etc.) but sadly it doesn't work on iPhone Safari (which…

VIEW QUESTION

Amazon web services – How to get a fragment of an mp4 video file from the middle, but keep the file metadata using nodejs aws

export async function* initiateObjectStream( Key: string, start: number, end: number, ): AsyncGenerator<any, any, unknown> { const streamRange = `bytes=${start}-${end}`; const getObjectCommand = new GetObjectCommand({ Bucket: bucket, Key, Range: streamRange, }); const { Body: chunks} = await s3Client.send(getObjectCommand); for await (const…

VIEW QUESTION
Back To Top
Search