I am new here, and trying not to duplicate issues, so, I will try to be very specific.
I have a live RMTPS playback (with streamkey), somthing like this:
rtmps://{hostName}:443/live/{streamKey}
Using node.js in AWS Lambda, I would like to pull this stream, using that url, and be able manipulate/use this data.
At minimum I would like to create small segmented files out of this, mp3 files for instance to capture audio.
The Lambda would be a short lived instance, opened long enough to capture data for a specific amount of time. This is all proof of concept testing, but just curious on thoughts, packages, etc.
The main issues is actually pulling in that stream to use the data. Are there any packages, or anything that can run in the lambda environment, that can pull (read) the live rtmp?
When looking for ideas, I often saw things like Node Media Server, ffmpeg, rtmpdump. I am just not sure these able to be contained within the lambda?