I have a dictionary in a column dataframe, and I need to get a value from that
title tracklist
0 Life [{'duration': '', 'position': '1', 'type_': 't...
1 Vuelve [{'duration': '3:07', 'position': '1', 'type_'...
2 MTV Unplugged [{'duration': '4:38', 'position': '1', 'type_'...
3 Ricky Martin [{'duration': '4:03', 'position': '1', 'type_'...
4 Me Amaras [{'duration': '3:30', 'position': '1', 'type_'...
5 A Medio Vivir [{'duration': '5:30', 'position': '1', 'type_'...
6 Sound Loaded [{'duration': '4:42', 'position': '1', 'type_'...
7 Ricky Martin [{'duration': '4:13', 'position': 'A1', 'type_...
8 Musica + Alma + Sexo [{'extraartists': [{'join': '', 'name': 'Rober...
9 Live Blanco Y Negro Tour [{'extraartists': [{'join': '', 'name': 'David...
10 Almas Del Silencio [{'duration': '3:43', 'position': '1', 'type_'...
11 A Quien Quiera Escuchar [{'duration': '4:00', 'position': '1', 'type_'...
12 Evita (New Broadway Cast Recording) [{'duration': '', 'position': '1-1'
, 'type_': ...
I need to extract the duration from the tracklist column, How to do it?