Create readme

This commit is contained in:
cedric 2026-01-19 08:58:52 +00:00
commit 1a1c3df739

14
Readme.txt Normal file
View file

@ -0,0 +1,14 @@
## Db Query for opml
SELECT
'<outline type="rss" '
|| 'text="' || name || '" '
|| 'title="' || name || '" '
|| 'xmlUrl="https://www.youtube.com/feeds/videos.xml?channel_id=' || substr(url, instr(url, 'UC')) || '" '
|| 'htmlUrl="' || url || '" '
|| 'language="fr" '
|| 'image="' || avatar_url || '"'
|| ' />' AS outline_xml
FROM main.subscriptions
where url like '%youtube%'
ORDER BY service_id, name;