Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using Adobe Media Server 5 and trying to pack vod file using f4fpackager. Looks like f4fpackger creates hds vod manifest with packed bootstrap info, as show below.

Say if my vod has 10 fragments - first 9 fragments are 4s long and last fragment is 1.6 seconds long then the bootstarp info I get from manifest file looks like(decoded one),

Fragment# 1,    duration=4s,
Fragment#10, duration =1.6s

Is there a way to create manifest with unpacked bootstarp info, i.e list all the fragment information as shown below?

Fragment# 1,    duration=4s,
Fragment# 2,    duration=4s,
Fragment# 3,    duration=4s,
Fragment# 4,    duration=4s,
Fragment# 5,    duration=4s,
Fragment# 6,    duration=4s,
Fragment# 7,    duration=4s,
Fragment# 8,    duration=4s,
Fragment# 9,    duration=4s,
Fragment# 10, duration =1.6s

I was going through the f4fpackager options but could not find what I needed. The reason why I am looking for this, the sim tool I use does not understand the packed version. I did not try creating bootstrap info as a external file because, again, my client will not understand that as well.

Thanks, Anand

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.