Hi,
I want get the file name after streaming ended and saved in the content folder.
Every time the filename increased by _+1. So how do get that name?
Thanks
Hi,
I want get the file name after streaming ended and saved in the content folder.
Every time the filename increased by _+1. So how do get that name?
Thanks
Was this for nDVR recording or an mp4 to play back as VOD @prashant jha?
You are correct @prashant jha, Wowza Streaming Engine appends _[SegmentNumber] to the end of the file name of the current recording as needed to create a unique file name. This is done incrementally for the group of files that belong to the same recording session:
myStream_2014-02-11-13.18.01.441-MST_0.mp4Oldest recordingmyStream_2014-02-11-13.18.01.441-MST_1.mp4myStream_2014-02-11-13.18.01.441-MST_2.mp4Newest recording
To get the names please see the following article and I have shared some examples below:
https://www.wowza.com/docs/how-to-record-live-streams-wowza-streaming-engine#setfiletemplate
The default delegate allows you to specify a template string that defines the filenames of the recorded segments.
The template string can contain any valid filename characters as well as any valid template key, in any order.
These strings are for used with:
Valid template keys are:
Let me know if that is what you needed…