Page 1 of 1

Is it Possible to Save List of Network Streams

Posted: 06 Aug 2016 17:36
by carlash
On VLC 2.0.5 on Android I have several http:// links for network streams. I would like to save this list to a file or playlist. Is there a way to do this?
Thanks

Re: Is it Possible to Save List of Network Streams

Posted: 06 Aug 2016 18:38
by Jean-Baptiste Kempf
So far, no. It's only remembered in the network view.

Re: Is it Possible to Save List of Network Streams

Posted: 07 Aug 2016 10:27
by Rexunil
Yes, on a rooted device there is a way. You must have a sqlite3 binary on your device and a command line app like "Terminal Emulator" installed. The app "Titanium Backup" contains a usable sqlite3 binary.

In the command window type (replace 'sqlite3' with path to the file):

Code: Select all

sqlite3 /data/data/org.videolan.vlc/databases/vlc_database ".dump" | sed -n "s/^.*\(http:[^']*\).*/\1/p" > /sdcard/stream.txt

This command creates a file 'stream.txt' containing all stream addresses in the main directory of your (internal) sdcard.

If your are using "$cripter" you can automate the command and place a button on desktop.