Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
youtube-dl enigma2 rtmp links #6729
Comments
|
Do you mean that rtmpdump with |
|
no when youtube-dl sends the url to rtmpdump its got nothing to with enigma2 code this is what is in your youtube-dl binary basic_args = [ for rtmp links to work it needs to be like this basic_args = [ with --verbose removed |
|
Could you explain with more detail why it doesn't work: exact commands you are using and the programs you use? In my case, piping to mpv works fine:
If you want to run a modified version of youtube-dl all you have to do is change the source code and on unix you run |
|
i am not using windows in enigma2 now i want to use youtube-dl to pipe to media player self.urtmp = 'youtube-dl ' -o - -f best + self.url + " -o '" + local_file + "'" so i telnet to my box if i use rtmpdump on its own no youtube-dl if you was to edit out --verbose now looks like this basic_args = [ the only reason --verbose is written why is it even there just need --verbose removed from that line in youtube-dl binary |
|
We could only use it if you call youtube-dl |
|
@cupof in your line you are using two
|
|
thanks for reply line in youtube-dl binary definitely needs to be without --verbose rtmpdump -r rtmp:// |
|
using just rtmpdump not youtube-dl all rtmp links work with this self.urtmp = "rtmpdump -r " + self.url + " -o '" + local_file + "'" and it shows in telnet so its definitely the txt --verbose in youtube-dl |
|
Could you post the output of rtmpdump with the |
|
how to output via the enigma2 plugin ? |
|
Just run the commands in the terminal. |
is this line hard coded in to youtube-dl binary
basic_args = [
'rtmpdump', '--verbose', '-r', url,
i am using with enigma2
and piping to media player
http works
rtmp not work
because --verbose is being passed on to the rtmpdump command
this rtmpdump command works
'rtmpdump', '-r', url,
can you compile a version of youtube-dl binary for enigma2
and stop the txt --verbose from being passed on to rtmpdump
as that is stopping rtmp links from piping to media player in enigma2
thank you