@@ -11,15 +11,12 @@ export const nonStudioPatterns = [
1111 / l i v e \s + ( a t | f r o m | i n | o n | w i t h | @ ) / i, // "Live at", "Live from", "Live in", etc.
1212 / l i v e \s + w i t h \b / i, // "Live with" (e.g. "Live with the SFSO")
1313 / - \s * l i v e \s * $ / i, // "- Live" at the end of title
14- / : \s * l i v e \s * $ / i, // ": Live" at the end of title
15-
14+ / : \s * l i v e \s * $ / i, // ": Live" at the end of title
1615 // Concert/Performance indicators
17- / \b ( c o n c e r t | f e s t i v a l | t o u r ) \b / i, // Concert, Festival, Tour
16+ / \b ( c o n c e r t | f e s t i v a l | t o u r ) \b / i, // Concert, Festival, Tour
1817 / \( .* ?( c o n c e r t | l i v e p e r f o r m a n c e | l i v e r e c o r d i n g ) .* ?( 1 9 | 2 0 ) \d { 2 } \) / i, // (Live 1985), (Concert 2024)
19-
2018 // Recording types
21- / \b ( a c o u s t i c | u n p l u g g e d | r e h e a r s a l | d e m o ) \b / i, // Acoustic, Unplugged, Rehearsal, Demo
22-
19+ / \b ( a c o u s t i c | u n p l u g g e d | r e h e a r s a l | d e m o ) \b / i, // Acoustic, Unplugged, Rehearsal, Demo
2320 // Venues
2421 / \b ( a r e n a | s t a d i u m | c e n t e r | c e n t r e | h a l l ) \b / i, // Arena, Stadium, Center, Hall
2522 / \b m a d i s o n \s + s q u a r e \s + g a r d e n \b / i, // Madison Square Garden
@@ -29,9 +26,9 @@ export const nonStudioPatterns = [
2926 // Dates and locations
3027 / \b ( j a n u a r y | f e b r u a r y | m a r c h | a p r i l | m a y | j u n e | j u l y | a u g u s t | s e p t e m b e r | o c t o b e r | n o v e m b e r | d e c e m b e r ) \s + \d + / i, // "September 22", "August 31"
3128 / \b \d { 1 , 2 } [ / - ] \d { 1 , 2 } [ / - ] \d { 2 , 4 } \b / , // Date formats: 09/22/2024, 9-22-24
32- / \b [ A - Z ] [ a - z ] + , \s * [ A - Z ] { 2 } \b / , // Locations: "Oakland, CA", "London, UK"
33- / \b [ A - Z ] [ a - z ] + \s + C i t y \b / i, // Cities: "Mexico City", "New York City"
34- / \b ( t o k y o | p a r i s | b e r l i n | s y d n e y ) \b / i, // More cities
35- / \b ( b b c | r a d i o | s e s s i o n ) \b / i, // Radio sessions
29+ / \b [ A - Z ] [ a - z ] + , \s * [ A - Z ] { 2 } \b / , // Locations: "Oakland, CA", "London, UK"
30+ / \b [ A - Z ] [ a - z ] + \s + C i t y \b / i, // Cities: "Mexico City", "New York City"
31+ / \b ( t o k y o | p a r i s | b e r l i n | s y d n e y ) \b / i, // More cities
32+ / \b ( b b c | r a d i o | s e s s i o n ) \b / i, // Radio sessions
3633] ;
3734
0 commit comments