LinguaLibre

Difference between revisions of "Stats/en"

LinguaLibre Alpha release was announced on August 2018. By April 2019, LiLi reached 100,000 audios in 46 languages thanks to 128 different speakers. The project reached 200,000 recordings (82 languages, 268 speakers) in January 2020, 300,000 recordings (91 languages, 357 speakers) in September 2020, and 400,000 recordings (107 languages, 481 speakers) in February 2021.

(Updating to match new version of source page)
(Updating to match new version of source page)
Line 52: Line 52:
 
== The most prolific speakers ==
 
== The most prolific speakers ==
  
 +
<query _pagination="10" locutor="Item (locutor Qid)" locutorLabel="Speaker" nb="Number of records">
 +
SELECT ?locutor ?locutorLabel ?nb WHERE {
 +
  {
 +
    SELECT ?locutor (COUNT(?record) as ?nb)
 +
    WHERE {
 +
        ?record prop:P2 entity:Q2 .        # Q2: record, P2: instance of.
 +
        ?record prop:P5 ?locutor .          # Property:P5: speaker
 +
    }
 +
    GROUP BY ?locutor ?locutorLabel
 +
    ORDER BY DESC(?nb)
 +
    LIMIT 50
 +
  }
 +
  SERVICE wikibase:label {
 +
    bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" .
 +
    ?locutor rdfs:label ?locutorLabel .
 +
  }
 +
}
 +
ORDER BY DESC(?nb)
 +
</query>
 +
 +
== The most prolific speakers for the current month ==
  
<query _pagination="10" locutor="Item (locutor Qid)" locutorLabel="Speaker" nb="Number of records" languages="Spoken languages">
+
<query _pagination="10" locutor="Item (locutor Qid)" locutorLabel="Speaker" nb="Number of records for the current month">
 
SELECT ?locutor ?locutorLabel ?nb WHERE {
 
SELECT ?locutor ?locutorLabel ?nb WHERE {
 
   {
 
   {
 
     SELECT ?locutor (COUNT(?record) as ?nb)
 
     SELECT ?locutor (COUNT(?record) as ?nb)
 
     WHERE {
 
     WHERE {
         ?record prop:P2 entity:Q2 .
+
         ?record prop:P2 entity:Q2 .        # Q2: record, P2: instance of.
         ?record prop:P5 ?locutor .
+
         ?record prop:P5 ?locutor .         # Property:P5: speaker
 +
        ?record prop:P6 ?date .
 +
      FILTER ( YEAR(?date) = YEAR(NOW()) && MONTH(?date) = MONTH(NOW()) )
 
     }
 
     }
 
     GROUP BY ?locutor ?locutorLabel
 
     GROUP BY ?locutor ?locutorLabel

Revision as of 13:28, 5 May 2021

Other languages:
Bahasa Indonesia • ‎Bahasa Melayu • ‎Bali • ‎Bikol Central • ‎Deutsch • ‎English • ‎Esperanto • ‎Igbo • ‎Türkçe • ‎brezhoneg • ‎català • ‎español • ‎français • ‎lumbaart • ‎occitan • ‎polski • ‎română • ‎sicilianu • ‎svenska • ‎Ελληνικά • ‎македонски • ‎русский • ‎українська • ‎עברית • ‎বাংলা • ‎తెలుగు • ‎中文 • ‎日本語 • ‎ꯃꯤꯇꯩ ꯂꯣꯟ


Global stats

... Loading ...

Monthly activity

... Loading ...

Number of records per languages

... Loading ...

The most prolific speakers

... Loading ...

The most prolific speakers for the current month

... Loading ...