NewPipeFeed/Readme.txt

15 lines
462 B
Text
Raw Permalink Normal View History

2026-01-19 08:58:52 +00:00
## 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;