Reputation: 57
Currently, I want to stream a movie which are TS files in a m3u8 playlist format from my Android smartphone to on-LAN DLNA supported clients (such as my Samsung TV).
I had search but could not find any good starting point.
Any helps would be appreciated!
Upvotes: 4
Views: 1221
Reputation: 21
For android gui you can use DLNA Server or something that can stream playlist contents to DLNA-enabled devices. Basically it perform actions, that can be done by hands:
ffmpeg -vcodec libx264 -profile:v main -level 3.1 -preset medium -crf 23 -x264-params ref=4 -acodec mp3 -movflags +faststart
. Your best settings may differ.ffmpeg -f concat -c copy
)Happy casting!
Upvotes: 0