One step closer again!
The definition of the import is:
type SettingsContent = {
address: string;
channelId: string;
timeloop?: number;
};
On rereading the documentation, I noticed
The number of the channel can be found in the database (maybe somewhere else, but I am not familiar enough with Peertube yet):
select vc.id as "this is the number"
, vc.name
, vc.description
, a.id
, a.type
, a.url
from "videoChannel" as vc
join actor as a
on a.id = vc."actorId"
-- where vc.name = 'linh.ha.lan'
;
If you got more than one row, pay attention to the name and the url of the result records.
Anyway, the import plugin functionality is not impressed: still nothing is happening