No description
Find a file
2026-01-19 08:58:52 +00:00
Readme.txt Create readme 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;