Page 1 of 4
Request App or widget for playing rtmp streams on c series
Posted: Sun Mar 09, 2014 8:36 pm
by Mkò
Hi to all i have one rtmp stream that i want to view on my c series.
the url is like rtmp://0.0.0.0:1935/live/ and on my pc i can view it with vlc and i can dump it with rtmpdump easily so isn't not a protected streams and is transmitted as mp4 so no flash related problem.
my question is is there one app or widget where i can simply put this link and get it played on my big screen?
i think it will be an useful app/widget.
i read some post by juuso about it in other series forum but nothing related to c series so i decided to ask here.
i have netplayer installed but i know that i can read only mms url.
times ago i tried uxpnd but i don't remember if he can read rtmp streams.
Re: Request App or widget for playing rtmp streams on c seri
Posted: Sun Mar 09, 2014 9:08 pm
by greenhorn
how about nstreamplayer, nstreamlmod, nstreamvod. I use them for IPTV and they work great.
Re: Request App or widget for playing rtmp streams on c seri
Posted: Sun Mar 09, 2014 9:13 pm
by sectroyer
Mk? wrote:Hi to all i have one rtmp stream that i want to view on my c series.
the url is like rtmp://0.0.0.0:1935/live/ and on my pc i can view it with vlc and i can dump it with rtmpdump easily so isn't not a protected streams and is transmitted as mp4 so no flash related problem.
my question is is there one app or widget where i can simply put this link and get it played on my big screen?
i think it will be an useful app/widget.
i read some post by juuso about it in other series forum but nothing related to c series so i decided to ask here.
i have netplayer installed but i know that i can read only mms url.
times ago i tried uxpnd but i don't remember if he can read rtmp streams.
The best option is rtmpdump

You can compile it your self or wait for my RTMP/Weeb.TV support that I am now working on

Re: Request App or widget for playing rtmp streams on c seri
Posted: Sun Mar 09, 2014 9:42 pm
by Mkò
greenhorn wrote:how about nstreamplayer, nstreamlmod, nstreamvod. I use them for IPTV and they work great.
First thanks for reply i tried times ago but the problem is that i can't find an english version and then i read that i have to pay for unlock all functions. if you have one of these widget in english please give me a download link.
i search a very simple and basic widget put the rtmp url and play.
sectroyer wrote:Mk? wrote:Hi to all i have one rtmp stream that i want to view on my c series.
the url is like rtmp://0.0.0.0:1935/live/ and on my pc i can view it with vlc and i can dump it with rtmpdump easily so isn't not a protected streams and is transmitted as mp4 so no flash related problem.
my question is is there one app or widget where i can simply put this link and get it played on my big screen?
i think it will be an useful app/widget.
i read some post by juuso about it in other series forum but nothing related to c series so i decided to ask here.
i have netplayer installed but i know that i can read only mms url.
times ago i tried uxpnd but i don't remember if he can read rtmp streams.
The best option is rtmpdump

You can compile it your self or wait for my RTMP/Weeb.TV support that I am now working on

Uh uh great news i start now waiting for your RTMP/Weeb.TVapp.

Re: Request App or widget for playing rtmp streams on c seri
Posted: Sun Mar 09, 2014 10:15 pm
by sectroyer
Then you should definitelly pay close attention at Extras/Test Area

Re: Request App or widget for playing rtmp streams on c seri
Posted: Sun Mar 09, 2014 11:11 pm
by Mkò
You're right Now i'm trying to crosscompiling rtmpdump but with no luck.
lot of problems due to buggy toolchain provided by samsuk and because i'm noob.
Code: Select all
[root@localhost kerino]# cd projects
[root@localhost projects]# git clone git://github.com/aajanki/rtmpdump.git
Initialized empty Git repository in /home/kerino/projects/rtmpdump/.git/
remote: Reusing existing pack: 2158, done.
remote: Total 2158 (delta 0), reused 0 (delta 0)
Receiving objects: 100% (2158/2158), 948.48 KiB | 68 KiB/s, done.
Resolving deltas: 100% (1453/1453), done.
[root@localhost projects]# cd ./rtmpdump
[root@localhost rtmpdump]# s
bash: s: command not found
[root@localhost rtmpdump]# ls
ChangeLog Makefile rtmpdump.1.html rtmpgw.8.html rtmpsuck.c
COPYING README rtmpdump.c rtmpgw.c thread.c
librtmp rtmpdump.1 rtmpgw.8 rtmpsrv.c thread.h
[root@localhost rtmpdump]# make clean
rm -f *.o rtmpdump rtmpgw rtmpsrv rtmpsuck
make[1]: Entering directory `/home/kerino/projects/rtmpdump/librtmp'
rm -f *.o *.a *.so *.so.0 librtmp.pc
make[1]: Leaving directory `/home/kerino/projects/rtmpdump/librtmp'
[root@localhost rtmpdump]# make all
make[1]: Entering directory `/home/kerino/projects/rtmpdump/librtmp'
armv7fl-montavista-linux-gnueabigcc -Wall -DRTMPDUMP_VERSION=\"v2.4\" -DUSE_OPENSSL -O2 -fPIC -c -o rtmp.o rtmp.c
make[1]: armv7fl-montavista-linux-gnueabigcc: Command not found
make[1]: *** [rtmp.o] Error 127
make[1]: Leaving directory `/home/kerino/projects/rtmpdump/librtmp'
make: *** [librtmp/librtmp.a] Error 2
[root@localhost rtmpdump]# export PATH=$PATH:/opt/T-VAL/arm_v7_vfp_le/bin
[root@localhost rtmpdump]# make clean
rm -f *.o rtmpdump rtmpgw rtmpsrv rtmpsuck
make[1]: Entering directory `/home/kerino/projects/rtmpdump/librtmp'
rm -f *.o *.a *.so *.so.0 librtmp.pc
make[1]: Leaving directory `/home/kerino/projects/rtmpdump/librtmp'
[root@localhost rtmpdump]# make all
make[1]: Entering directory `/home/kerino/projects/rtmpdump/librtmp'
armv7fl-montavista-linux-gnueabigcc -Wall -DRTMPDUMP_VERSION=\"v2.4\" -DUSE_OPENSSL -O2 -fPIC -c -o rtmp.o rtmp.c
make[1]: armv7fl-montavista-linux-gnueabigcc: Command not found
make[1]: *** [rtmp.o] Error 127
make[1]: Leaving directory `/home/kerino/projects/rtmpdump/librtmp'
make: *** [librtmp/librtmp.a] Error 2
i think i have a problem with toolchain or exporting path
Re: Request App or widget for playing rtmp streams on c seri
Posted: Sun Mar 09, 2014 11:46 pm
by sectroyer
Mk? wrote:You're right Now i'm trying to crosscompiling rtmpdump but with no luck.
lot of problems due to buggy toolchain provided by samsuk and because i'm noob.
Code: Select all
[root@localhost kerino]# cd projects
[root@localhost projects]# git clone git://github.com/aajanki/rtmpdump.git
Initialized empty Git repository in /home/kerino/projects/rtmpdump/.git/
remote: Reusing existing pack: 2158, done.
remote: Total 2158 (delta 0), reused 0 (delta 0)
Receiving objects: 100% (2158/2158), 948.48 KiB | 68 KiB/s, done.
Resolving deltas: 100% (1453/1453), done.
[root@localhost projects]# cd ./rtmpdump
[root@localhost rtmpdump]# s
bash: s: command not found
[root@localhost rtmpdump]# ls
ChangeLog Makefile rtmpdump.1.html rtmpgw.8.html rtmpsuck.c
COPYING README rtmpdump.c rtmpgw.c thread.c
librtmp rtmpdump.1 rtmpgw.8 rtmpsrv.c thread.h
[root@localhost rtmpdump]# make clean
rm -f *.o rtmpdump rtmpgw rtmpsrv rtmpsuck
make[1]: Entering directory `/home/kerino/projects/rtmpdump/librtmp'
rm -f *.o *.a *.so *.so.0 librtmp.pc
make[1]: Leaving directory `/home/kerino/projects/rtmpdump/librtmp'
[root@localhost rtmpdump]# make all
make[1]: Entering directory `/home/kerino/projects/rtmpdump/librtmp'
armv7fl-montavista-linux-gnueabigcc -Wall -DRTMPDUMP_VERSION=\"v2.4\" -DUSE_OPENSSL -O2 -fPIC -c -o rtmp.o rtmp.c
make[1]: armv7fl-montavista-linux-gnueabigcc: Command not found
make[1]: *** [rtmp.o] Error 127
make[1]: Leaving directory `/home/kerino/projects/rtmpdump/librtmp'
make: *** [librtmp/librtmp.a] Error 2
[root@localhost rtmpdump]# export PATH=$PATH:/opt/T-VAL/arm_v7_vfp_le/bin
[root@localhost rtmpdump]# make clean
rm -f *.o rtmpdump rtmpgw rtmpsrv rtmpsuck
make[1]: Entering directory `/home/kerino/projects/rtmpdump/librtmp'
rm -f *.o *.a *.so *.so.0 librtmp.pc
make[1]: Leaving directory `/home/kerino/projects/rtmpdump/librtmp'
[root@localhost rtmpdump]# make all
make[1]: Entering directory `/home/kerino/projects/rtmpdump/librtmp'
armv7fl-montavista-linux-gnueabigcc -Wall -DRTMPDUMP_VERSION=\"v2.4\" -DUSE_OPENSSL -O2 -fPIC -c -o rtmp.o rtmp.c
make[1]: armv7fl-montavista-linux-gnueabigcc: Command not found
make[1]: *** [rtmp.o] Error 127
make[1]: Leaving directory `/home/kerino/projects/rtmpdump/librtmp'
make: *** [librtmp/librtmp.a] Error 2
i think i have a problem with toolchain or exporting path
No you have a problem with your make command

Open Makefile and read how to setup cross compilation

The toolchain is okay. It's not so complicated but if you have problems just be patient and let me finish

I want to make it as stable as possible. It will be C/D/E/F release

Re: Request App or widget for playing rtmp streams on c seri
Posted: Mon Mar 10, 2014 3:39 pm
by greenhorn
@Mk?
I have it modified in English...
Re: Request App or widget for playing rtmp streams on c seri
Posted: Mon Mar 10, 2014 3:41 pm
by sectroyer
greenhorn wrote:@Mk?
I have it modified in English...
It's smart hub application? Just unpack and it will work:) ?
Re: Request App or widget for playing rtmp streams on c seri
Posted: Mon Mar 10, 2014 3:43 pm
by greenhorn
yes, just unpack, prepare xml playlist and it go. Now trying to make EPG works with the streams.