reteplayground
Over time

⏱ What's on screen at 1:05

SELECT ?language ?text WHERE {
  ?line a su:Line ; su:start ?s ; su:end ?e ; su:text ?teFILTER(?s <= 65 && ?e >= 65)
  BIND(LANG(?text) AS ?language)
  FILTER(?language IN ("en","es","ja","ru","fa","zh-Hans"…
} ORDER BY ?language
Run this query → no server · no download · no account
caviri.github.io/rete
Run this query in the playground → no server, no download — the query runs in your browser.

The query

PREFIX su: <https://w3id.org/rete/subtitles#> SELECT ?language ?text WHERE { ?line a su:Line ; su:start ?s ; su:end ?e ; su:text ?text . FILTER(?s <= 65 && ?e >= 65) BIND(LANG(?text) AS ?language) FILTER(?language IN ("en","es","ja","ru","fa","zh-Hans")) } ORDER BY ?language

rete playground · documentation · github.com/caviri/rete