This query is marked as a draft This query has been published by Omphalographer.

SQL

AخA
 
SELECT 
  img_timestamp, duration, file
  FROM (
    SELECT image.*,
        COALESCE(
          JSON_EXTRACT(img_metadata, '$.data.playtime_seconds'),
          JSON_EXTRACT(img_metadata, '$.data.length')
        ) AS duration,
        CONCAT('https://commons.wikimedia.org/wiki/File:', image.img_name) AS file
    FROM image
) q
WHERE img_media_type = 'AUDIO'
AND img_size < 10e6 -- 10 MB
AND duration >= 3000 -- 50+ minutes long
By running queries you agree to the Cloud Services Terms of Use and you irrevocably agree to release your SQL under CC0 License.
All SQL code is licensed under CC0 License.

Checking query status...