# How to live stream mp4 content?

**URL:** https://community.wowza.com/t/how-to-live-stream-mp4-content/51237
**Category:** Wowza Streaming Engine
**Created:** [May 1, 2018, 8:41pm UTC](https://community.wowza.com/t/how-to-live-stream-mp4-content/51237 "2018-05-01T20:41:36Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Tejokrishna\_Surapane](https://avatars.discourse-cdn.com/v4/letter/t/77aa72/32.png) [@Tejokrishna\_Surapane](https://community.wowza.com/u/Tejokrishna_Surapane)
#### Post date: [May 1, 2018, 8:41pm UTC](https://community.wowza.com/t/how-to-live-stream-mp4-content/51237/1 "2018-05-01T20:41:36Z")

</div>

Hi,

I want to live stream content from recorder. Its generating small chunks mp4, ts and m3u8 playlist. How can I send the generated content to woza to make it live streaming? Can I use any encoder or if I pass playlist with mp4 files is that sufficient for wowza to live stream?

How to configure wowza to live stream above mp4 content to live stream?

---

<div class="post-metadata">

### Author: ![Ziv\_Barber](https://avatars.discourse-cdn.com/v4/letter/z/e95f7d/32.png) [@Ziv\_Barber](https://community.wowza.com/u/Ziv_Barber)
#### Post date: [May 11, 2018, 4:11pm UTC](https://community.wowza.com/t/how-to-live-stream-mp4-content/51237/2 "2018-05-11T16:11:46Z")

</div>

With ffmpeg:

ffmpeg -re -i “myFile.mp4” -pix\_fmt yuv420p -vsync 1 -threads 0 -vcodec libx264 -r 30 -g 60 -sc\_threshold 0 -b:v 640k -bufsize 768k -maxrate 800k -preset veryfast -profile:v baseline -tune film -acodec aac -b:a 128k -ac 2 -ar 48000 -af “aresample=async=1:min\_hard\_comp=0.100000:first\_pts=0” -bsf:v h264\_mp4toannexb -f rtsp rtsp://127.0.0.1:1935/live/myStream.stream

Then in wowza use the stream source:

rtsp://127.0.0.1:1935/live/myStream.stream
