Page 40 of 110
Re: [App] More TV channels on E/F/H series
Posted: Fri Mar 11, 2016 3:09 pm
by wluczykijwf
The Mondey... hmm... it's long a time....
Do try test it the others users!?!

Re: [App] More TV channels on E/F/H series
Posted: Fri Mar 18, 2016 11:03 am
by matrixabc
Is your app can opening streaming of ip webcam( probability mjpeg )
Re: [App] More TV channels on E/F/H series
Posted: Fri Mar 18, 2016 11:12 am
by wluczykijwf
matrixabc wrote:Is your app can opening streaming of ip webcam( probability mjpeg )
I don't know. The app uses the TV player. If it support the stream then the app play it.
Re: [App] More TV channels on E/F/H series
Posted: Fri Mar 18, 2016 11:26 am
by matrixabc
Where i found information about supported stream for TV player?
Re: [App] More TV channels on E/F/H series
Posted: Fri Mar 18, 2016 11:43 am
by wluczykijwf
You can try find on Samsung WebSite. Or you can try play your stream for HTTP type via OnlineTV app.
If not play it then you can try transcoding your stream via ffmpeg app.
Re: [App] More TV channels on E/F/H series
Posted: Fri Mar 18, 2016 6:13 pm
by matrixabc
I tested used telephone with app IPWebcam and TV no decode streaming. VLC in computer show as stream: Motion JPEG Video(MJPG). So your App no play stream MJPG. It's pity
Re: [App] More TV channels on E/F/H series
Posted: Sat Mar 19, 2016 1:44 am
by wluczykijwf
Nothing is lost. Maybe will can it transcoding and streaming via ffmpeg and ffserver apps. I do config for it .
Re: [App] More TV channels on E/F/H series
Posted: Sat Mar 19, 2016 10:36 pm
by matrixabc
If you have a telephone with android you make download "IPWebcam" and check it, but i dont see options to change video streaming.
Re: [App] More TV channels on E/F/H series
Posted: Sun Mar 20, 2016 12:44 am
by wluczykijwf
matrixabc wrote:If you have a telephone with android you make download "IPWebcam" and check it, but i dont see options to change video streaming.
Transcoding mjpeg stream from
http://192.168.0.100:8080/video (address to IPWebcam stream in local network) and streaming it by HLS via ffmpeg app
Usage - now for test manually:
- 1. Download ffmpeg and put it to: /mtd_rwcommon
2. Set permissions:
3. Create the directory: /dtv/www/hls
4. Add new channel to TV channel list (*scm file) and to TvList.xml:
Code: Select all
<item>
<tvid>999</tvid>
<source>OnlineTV</source>
<title>My IPWebCam</title>
<link>http://127.0.0.1:1080/hls/playlist.m3u8</link>
<image>None</image>
<type>HLS</type>
<ch_category>
<id_category />
</ch_category>
<description> </description>
</item>
5. Put command via telnet:
Code: Select all
/mtd_rwcommon/ffmpeg -f mjpeg -r 8 -i "http://192.168.0.100:8080/video" -vcodec mpeg4 -r 25 -f ssegment -segment_list /dtv/www/hls/playlist.m3u8 -segment_list_type hls -hls_flags delete_segments -segment_list_size 10 -segment_list_flags +live -segment_time 10 /dtv/www/hls/out%03d.ts
6. Run OnlineTV and play new channel
7. Watch your stream... 
For me it work's
Use CPU ~8%
This needs to be automated (in
listCH.sh) and add scripts to delete unnecessary files from the directory:
/dtv/www/hls
Re: [App] More TV channels on E/F/H series
Posted: Sun Mar 20, 2016 8:43 pm
by matrixabc
It work's
It's make time late 15-18 sek but work
Thanks
