-1

I have one question regarding sending stream to TV using wowza.

I need to send multiple streams running at same time to TV station with using one link Basically question is that, I have multiple streams with different name and when i need to send to TV it convert to one unique name on run-time.

Is this possible ? if yes please explain bit more.. thanks in advance

1 Answers1

1

By sending to "TV" you mean leveraging Push Publish to send to an external CDN or Wowza Server, then you can specify the outbound stream name within the Push Publish mapping by setting the "streamName" parameter. You could also remap the inbound published stream name via the approach found here.

Otherwise, if you are referring to requests made for a particular stream on your given Wowza Instance (vs pushing outbound), then you could leverage the Stream Name Alias module of which you could map any stream name to another.

Thanks,

Matt

Matt
  • 201
  • 1
  • 3
  • thanks for reply @Matt, i want to ask you one thing.. mapping of streams name is possible by wowza end ? means server side – Neeraj Sharma Dec 09 '15 at 04:54
  • @NeerajSharma - For example: if a stream is published as "myStream" but you want subsequent playback requests to access under the name "testStream" then you can do this by using stream name alias module as mentioned above (see link). – Matt Dec 10 '15 at 09:04
  • got it man.. thanks alot... is this possible by programmatically in php ? – Neeraj Sharma Dec 10 '15 at 11:01
  • target stream name change by particular stream name programmatically ? – Neeraj Sharma Dec 10 '15 at 11:02
  • You could build an HTTP Provider - [link](https://www.wowza.com/forums/content.php?762-How-to-use-server-side-modules-and-HTTP-Providers) - and then query it via your external php script.. The source also comes with the stream name alias module for you to further manipulate. – Matt Dec 10 '15 at 14:19