-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfplpod.rss
11076 lines (11003 loc) · 599 KB
/
fplpod.rss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://audioboom.com/feeds.xsl" media="screen" ?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:media="http://search.yahoo.com/mrss/" xmlns:georss="http://www.georss.org/georss" xmlns:audioboom="https://audioboom.com/rss/1.0" xmlns:podcast="https://podcastindex.org/namespace/1.0" version="2.0" xml:base="https://audioboom.com/">
<!--
***************************************************************
* Hi! You're looking at an RSS feed. If you're not sure what *
* to do here, you can visit our help center to find out more: *
* https://support.audioboom.com *
***************************************************************
-->
<channel>
<title>FPL Pod</title>
<description>Welcome to the FPL Pod. Join Kelly Somers, Julien Laurens and Sam Bonfield ahead of each Gameweek as they invite special guests to discuss and digress about the world of Fantasy Premier League.
After each Gameweek, two Fantasy Premier League experts will discuss all the major talking points and analyse the key decisions in Off the Bench.
Hit the subscribe button to ensure you never miss an episode.
Follow us on Twitter (https://twitter.com/OfficialFPL)
Like us on Facebook (https://www.facebook.com/fantasypremierleague)
Join the FPL Pod team's mini-league: ib3wlk
(https://fantasy.premierleague.com/leagues/auto-join/ib3wlk)</description>
<link>https://fantasy.premierleague.com</link>
<atom:link href="https://audioboom.com/channels/5001585-fpl-pod" rel="alternate" type="text/html" />
<atom:link href="https://pubsubhubbub.appspot.com/" rel="hub" />
<atom:link href="https://audioboom.com/channels/5001585.rss" rel="self" type="application/rss+xml" />
<pubDate>Wed, 11 Sep 2024 15:23:36 +0000</pubDate>
<language>en</language>
<image>
<url>https://audioboom.com/i/39462877/s=1400x1400/el=1/rt=fill.jpg</url>
<title>FPL Pod</title>
<link>https://fantasy.premierleague.com</link>
</image>
<itunes:image href="https://audioboom.com/i/39462877/s=1400x1400/el=1/rt=fill.jpg" />
<audioboom:banner-image href="https://audioboom.com/i/39462900.png" />
<itunes:category text="Sports"><itunes:category text="Fantasy Sports" /></itunes:category>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Welcome to the FPL Pod. Join Kelly Somers, Julien Laurens and Sam Bonfield ahead of each Gameweek as they invite special guests to discuss and digress about the world of Fantasy Premier League.
After each Gameweek, two Fantasy Premier League experts will discuss all the major talking points and analyse the key decisions in Off the Bench.
Hit the subscribe button to ensure you never miss an episode.
Follow us on Twitter (https://twitter.com/OfficialFPL)
Like us on Facebook (https://www.facebook.com/fantasypremierleague)
Join the FPL Pod team's mini-league: ib3wlk
(https://fantasy.premierleague.com/leagues/auto-join/ib3wlk)</itunes:summary>
<itunes:author>Premier League </itunes:author>
<itunes:owner>
<itunes:name></itunes:name>
<itunes:email>[email protected]</itunes:email>
</itunes:owner>
<podcast:guid>3d4fbe75-4648-5518-b68d-299bff2d946a</podcast:guid>
<copyright>146516</copyright>
<itunes:new-feed-url>https://audioboom.com/channels/5001585.rss</itunes:new-feed-url>
<itunes:type>episodic</itunes:type>
<item>
<title>S7 Ep8: FPL Pod: Wildcard fever spreads</title>
<link>https://audioboom.com/posts/8569291</link>
<itunes:episode>8</itunes:episode>
<itunes:title>FPL Pod: Wildcard fever spreads</itunes:title>
<itunes:season>7</itunes:season>
<enclosure url="https://audioboom.com/posts/8569291.mp3?modified=1726068230&sid=5001585&source=rss" length="42885986" type="audio/mpeg" />
<media:content url="https://audioboom.com/posts/8569291.mp3?modified=1726068230&sid=5001585&source=rss" type="audio/mpeg" medium="audio" duration="2680" lang="en-GB" fileSize="42885986" />
<itunes:image href="https://audioboom.com/i/40882043/s=1400x1400/el=1/rt=fill.png" />
<media:content url="https://audioboom.com/i/40882043/s=1400x1400/el=1/rt=fill.png" type="image/png" medium="image" />
<itunes:duration>2680</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<description><![CDATA[<div>With the first international break of the season over plenty of managers have opted to activate their Wildcard, including the FPL Pod's very own Julien Laurens.<br>
<br>
Kelly Somers and Sam Bonfield dissect Juls’ Wildcard as they also take a look at the popular transfers made by managers and weigh-up a tough week for captaincy in Gameweek 4.<br>
<br>
LISTEN <br>
* A big week for Wildcards (00m 53s)<br>
* International impact (13m 29s)<br>
* Is selling Saka sensible? (20m 59s)<br>
* Make a plan for Arsenal (23m 10s)<br>
* Differential discussion (27m 45s)<br>
* Haaland v Salah captaincy (36m 08s)<br>
<br>
Win our FPL Pod mini-league at the end of the season and get an FPL bundle: q7yco0<br>
<br>
Follow <a href="https://twitter.com/OfficialFPL">@OfficialFPL on X</a> and <a href="https://www.facebook.com/fantasypremierleague">Facebook<br>
</a><a href="https://twitter.com/KellySomers">Follow Kelly on X</a><br>
<a href="https://twitter.com/FPLFamily">Follow FPL Family on X<br>
</a><a href="https://twitter.com/LaurensJulien">Follow Julien on X</a>
</div>
]]></description>
<pubDate>Wed, 11 Sep 2024 15:23:36 +0000</pubDate>
<guid isPermaLink="false">tag:audioboom.com,2024-09-11:/posts/8569291</guid>
<itunes:author>Premier League </itunes:author>
<dc:creator>Premier League </dc:creator>
<media:rights status="userCreated" />
</item>
<item>
<title>S7 Ep7: FPL Pod: Salah must-have on Wildcard</title>
<link>https://audioboom.com/posts/8565750</link>
<itunes:episode>7</itunes:episode>
<itunes:title>FPL Pod: Salah must-have on Wildcard</itunes:title>
<itunes:season>7</itunes:season>
<enclosure url="https://audioboom.com/posts/8565750.mp3?modified=1725453167&sid=5001585&source=rss" length="51536906" type="audio/mpeg" />
<media:content url="https://audioboom.com/posts/8565750.mp3?modified=1725453167&sid=5001585&source=rss" type="audio/mpeg" medium="audio" duration="3220" lang="en-GB" fileSize="51536906" />
<itunes:image href="https://audioboom.com/i/42015328/s=1400x1400/el=1/rt=fill.png" />
<media:content url="https://audioboom.com/i/42015328/s=1400x1400/el=1/rt=fill.png" type="image/png" medium="image" />
<itunes:duration>3220</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<description><![CDATA[<div>It may be an international break but Kelly Somers and the FPL Pod team are here to give you the lowdown on the best Wildcard picks 🃏🤝<br>
<br>
They discuss how Salah is essential, budget defensive options, and where to go with your forward thinking.<br>
<br>
LISTEN 👇<br>
<br>
* Why Wildcard (08m 40s)<br>
* Goalkeeper targets (14m 36s)<br>
* Defender options (20m 08s)<br>
* Must-have Salah (29m 38s)<br>
* Sam’s Wildcard team (38m 53s)<br>
* Forward thinking (43m 33s)<br>
<br>
Win our FPL Pod mini-league at the end of the season and get an FPL bundle: q7yco0<br>
<br>
Follow <a href="https://twitter.com/OfficialFPL">@OfficialFPL on X</a> and <a href="https://www.facebook.com/fantasypremierleague">Facebook</a><br>
<br>
<a href="https://twitter.com/KellySomers">Follow Kelly on X</a><br>
<a href="https://twitter.com/FPLFamily">Follow FPL Family on X</a><br>
<a href="https://twitter.com/LaurensJulien">Follow Julien on X</a>
</div>
]]></description>
<pubDate>Wed, 04 Sep 2024 12:32:28 +0000</pubDate>
<guid isPermaLink="false">tag:audioboom.com,2024-09-04:/posts/8565750</guid>
<itunes:author>Premier League </itunes:author>
<dc:creator>Premier League </dc:creator>
<media:rights status="userCreated" />
</item>
<item>
<title>S3 Ep3: Off The Bench: Essential Salah and Haaland </title>
<link>https://audioboom.com/posts/8564674</link>
<itunes:episode>3</itunes:episode>
<itunes:title>Off The Bench: Essential Salah and Haaland </itunes:title>
<itunes:season>3</itunes:season>
<enclosure url="https://audioboom.com/posts/8564674.mp3?modified=1725281746&sid=5001585&source=rss" length="52591417" type="audio/mpeg" />
<media:content url="https://audioboom.com/posts/8564674.mp3?modified=1725281746&sid=5001585&source=rss" type="audio/mpeg" medium="audio" duration="3286" lang="en-GB" fileSize="52591417" />
<itunes:image href="https://audioboom.com/i/40868423/s=1400x1400/el=1/rt=fill.png" />
<media:content url="https://audioboom.com/i/40868423/s=1400x1400/el=1/rt=fill.png" type="image/png" medium="image" />
<itunes:duration>3286</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<description><![CDATA[<div>Another week, another hat-trick for Erling Haaland and double-digit returns for Salah 🐐👑<br>
<br>
With them both in such good form, FPL experts Sam Bonfield and Andy Park assess how the pair are must-haves going forward.<br>
<br>
LISTEN 👇<br>
<br>
* Bringing Salah in with Haaland (00m 28s)<br>
* Tripling up on Liverpool (11m 10s)<br>
* Arsenal assets (27m 27s)<br>
* Palmer disappointment (36m 24s)<br>
* Excellent Eze (39m 51s)<br>
* Mbeumo making it (51m 24s)<br>
<br>
Win an FPL bundle by topping the FPL Pod mini-league at the end of the season: q7yco0<br>
<br>
Follow <a href="https://twitter.com/OfficialFPL">@OfficialFPL on X</a> and <a href="https://www.facebook.com/fantasypremierleague">Facebook<br>
</a><br>
<a href="https://twitter.com/FPLFamily">Follow FPL Family on X</a><br>
<a href="https://twitter.com/FPL_Sonaldo">Follow FPL Sonaldo on X</a>
</div>
]]></description>
<pubDate>Mon, 02 Sep 2024 12:55:28 +0000</pubDate>
<guid isPermaLink="false">tag:audioboom.com,2024-09-02:/posts/8564674</guid>
<itunes:author>Premier League </itunes:author>
<dc:creator>Premier League </dc:creator>
<media:rights status="userCreated" />
</item>
<item>
<title>S7 Ep6: FPL Pod: Interesting forward thinking</title>
<link>https://audioboom.com/posts/8563096</link>
<itunes:episode>6</itunes:episode>
<itunes:title>FPL Pod: Interesting forward thinking</itunes:title>
<itunes:season>7</itunes:season>
<enclosure url="https://audioboom.com/posts/8563096.mp3?modified=1724932792&sid=5001585&source=rss" length="46961089" type="audio/mpeg" />
<media:content url="https://audioboom.com/posts/8563096.mp3?modified=1724932792&sid=5001585&source=rss" type="audio/mpeg" medium="audio" duration="2934" lang="en-GB" fileSize="46961089" />
<itunes:image href="https://audioboom.com/i/40859484/s=1400x1400/el=1/rt=fill.png" />
<media:content url="https://audioboom.com/i/40859484/s=1400x1400/el=1/rt=fill.png" type="image/png" medium="image" />
<itunes:duration>2934</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<description><![CDATA[<div>Forward options are proving frustrating outside of Haaland, so Kelly Somers and the FPL Pod team look ahead to who could fill your frontline 💪⚽️<br>
<br>
They chat Aston Villa options, offer up some differential picks, and Juls is trying to find out if “his mate” Ed Sheeran is into FPL.<br>
<br>
LISTEN 👇<br>
<br>
* Gameweek 2 reflections (00m 49s)<br>
* Misfiring forwards (14m 06s)<br>
* Solanke gone (20m 25s)<br>
* Aston Villa attack (29m 40s)<br>
* Differentials (39m 18s)<br>
* Transfers and captains(44m 20s)<br>
<br>
Win our FPL Pod mini-league at the end of the season and get an FPL bundle: q7yco0<br>
<br>
Follow <a href="https://twitter.com/OfficialFPL">@OfficialFPL on X</a> and <a href="https://www.facebook.com/fantasypremierleague">Facebook</a><br>
<br>
<a href="https://twitter.com/KellySomers">Follow Kelly on X</a><br>
<a href="https://twitter.com/FPLFamily">Follow FPL Family on X</a><br>
<a href="https://twitter.com/LaurensJulien">Follow Julien on X</a>
</div>
]]></description>
<pubDate>Thu, 29 Aug 2024 11:59:38 +0000</pubDate>
<guid isPermaLink="false">tag:audioboom.com,2024-08-29:/posts/8563096</guid>
<itunes:author>Premier League </itunes:author>
<dc:creator>Premier League </dc:creator>
<media:rights status="userCreated" />
</item>
<item>
<title>S3 Ep2: Off The Bench: Haaland Triple Captain pays off</title>
<link>https://audioboom.com/posts/8561251</link>
<itunes:episode>2</itunes:episode>
<itunes:title>Off The Bench: Haaland Triple Captain pays off</itunes:title>
<itunes:season>3</itunes:season>
<enclosure url="https://audioboom.com/posts/8561251.mp3?modified=1724673426&sid=5001585&source=rss" length="45489872" type="audio/mpeg" />
<media:content url="https://audioboom.com/posts/8561251.mp3?modified=1724673426&sid=5001585&source=rss" type="audio/mpeg" medium="audio" duration="2843" lang="en-GB" fileSize="45489872" />
<itunes:image href="https://audioboom.com/i/40852289/s=1400x1400/el=1/rt=fill.png" />
<media:content url="https://audioboom.com/i/40852289/s=1400x1400/el=1/rt=fill.png" type="image/png" medium="image" />
<itunes:duration>2843</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<description><![CDATA[<div>It was a Gameweek to rejoice for those brave enough to use their Triple Captain chip as experts Gianni Buttice and Pras Singhal look back on Haaland’s hat-trick exploits ⚽️⚽️⚽️<br>
<br>
They also debate the best three players from Liverpool, whether to sell Isak, and keep a close eye on Brighton assets.<br>
<br>
LISTEN 👇<br>
<br>
* Haaland Triple Captain (00m 30s)<br>
* Shining Son (12m 49s)<br>
* Liverpool triple-up (16m 29s)<br>
* Nkunku no-go (29m 44s)<br>
* Is Isak a hold? (37m 55s)<br>
* Fulham assets (43m 10s)<br>
<br>
Win an FPL bundle by topping the FPL Pod mini-league at the end of the season: q7yco0<br>
<br>
Follow <a href="https://twitter.com/OfficialFPL">@OfficialFPL on X</a> and <a href="https://www.facebook.com/fantasypremierleague">Facebook</a><br>
<br>
<a href="https://twitter.com/GianniButtice">Follow Gianni on X</a><br>
<a href="https://twitter.com/Pras_fpl">Follow Prasun on X</a>
</div>
]]></description>
<pubDate>Mon, 26 Aug 2024 11:56:52 +0000</pubDate>
<guid isPermaLink="false">tag:audioboom.com,2024-08-26:/posts/8561251</guid>
<itunes:author>Premier League </itunes:author>
<dc:creator>Premier League </dc:creator>
<media:rights status="userCreated" />
</item>
<item>
<title>S7 Ep5: FPL Pod: Triple Captain in Gameweek 2?!</title>
<link>https://audioboom.com/posts/8559774</link>
<itunes:episode>5</itunes:episode>
<itunes:title>FPL Pod: Triple Captain in Gameweek 2?!</itunes:title>
<itunes:season>7</itunes:season>
<enclosure url="https://audioboom.com/posts/8559774.mp3?modified=1724328394&sid=5001585&source=rss" length="49552732" type="audio/mpeg" />
<media:content url="https://audioboom.com/posts/8559774.mp3?modified=1724328394&sid=5001585&source=rss" type="audio/mpeg" medium="audio" duration="3081" lang="en-GB" fileSize="49552732" />
<itunes:image href="https://audioboom.com/i/40833604/s=1400x1400/el=1/rt=fill.png" />
<media:content url="https://audioboom.com/i/40833604/s=1400x1400/el=1/rt=fill.png" type="image/png" medium="image" />
<itunes:duration>3081</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<description><![CDATA[<div>We’re only one Gameweek into the new season and already discussion about using our Triple Captain Chip is hotting up 🔥©<br>
<br>
Kelly Somers and the FPL Pod team discuss handing Erling Haaland the special armband, how brilliant Jota is, and keeping hold of those precious transfers.<br>
<br>
LISTEN 👇<br>
<br>
* Gameweek 1 reflections (00m 59s)<br>
* Price changes (15m 53s)<br>
* Palmer sales (23m 14s)<br>
* Magnificent Jota (25m 33s)<br>
* Differentials (37m 08s)<br>
* Triple Captain Haaland (43m 17s)<br>
<br>
Win our FPL Pod mini-league at the end of the season and get an FPL bundle: q7yco0<br>
<br>
Follow <a href="https://twitter.com/OfficialFPL">@OfficialFPL on X</a> and <a href="https://www.facebook.com/fantasypremierleague">Facebook</a><br>
<br>
<a href="https://twitter.com/KellySomers">Follow Kelly on X</a><br>
<a href="https://twitter.com/FPLFamily">Follow FPL Family on X</a><br>
<a href="https://twitter.com/LaurensJulien">Follow Julien on X</a>
</div>
]]></description>
<pubDate>Thu, 22 Aug 2024 12:05:21 +0000</pubDate>
<guid isPermaLink="false">tag:audioboom.com,2024-08-22:/posts/8559774</guid>
<itunes:author>Premier League </itunes:author>
<dc:creator>Premier League </dc:creator>
<media:rights status="userCreated" />
</item>
<item>
<title>S3 Ep1: Off The Bench: How Gameweek 1 went down</title>
<link>https://audioboom.com/posts/8558668</link>
<itunes:episode>1</itunes:episode>
<itunes:title>Off The Bench: How Gameweek 1 went down</itunes:title>
<itunes:season>3</itunes:season>
<enclosure url="https://audioboom.com/posts/8558668.mp3?modified=1724157358&sid=5001585&source=rss" length="43771290" type="audio/mpeg" />
<media:content url="https://audioboom.com/posts/8558668.mp3?modified=1724157358&sid=5001585&source=rss" type="audio/mpeg" medium="audio" duration="2720" lang="en-GB" fileSize="43771290" />
<itunes:image href="https://audioboom.com/i/40827382/s=1400x1400/el=1/rt=fill.png" />
<media:content url="https://audioboom.com/i/40827382/s=1400x1400/el=1/rt=fill.png" type="image/png" medium="image" />
<itunes:duration>2720</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<description><![CDATA[<div>With FPL returning, so too does Off The Bench, as experts Az Phillips and Lee Bonfield discuss all things from the opening weekend 🫶♻️<br>
<br>
The pair examine Spurs assets, what to do with Liverpool’s bargain defender Quansah, and even tout Erling Haaland as a potential Triple Captain option next Gameweek.<br>
<br>
LISTEN 👇<br>
<br>
* Holding Spurs (08m 19s)<br>
* Man City defence (18m 03s)<br>
* Triple Captaining Haaland (21m 17s)<br>
* Quansah conundrum (28m 41s)<br>
* Man Utd decisions (30m 23s)<br>
* Arsenal assets (40m 40s)<br>
<br>
Win an FPL bundle by topping the FPL Pod mini-league at the end of the season: q7yco0<br>
<br>
Follow <a href="https://twitter.com/OfficialFPL">@OfficialFPL on Twitter</a> and <a href="https://www.facebook.com/fantasypremierleague">Facebook</a><br>
<br>
<a href="https://twitter.com/fplblackbox_az">Follow Az on Twitter</a><br>
<a href="https://twitter.com/FPLFamily">Follow FPL Family on Twitter</a>
</div>
]]></description>
<pubDate>Tue, 20 Aug 2024 12:34:56 +0000</pubDate>
<guid isPermaLink="false">tag:audioboom.com,2024-08-20:/posts/8558668</guid>
<itunes:author>Premier League </itunes:author>
<dc:creator>Premier League </dc:creator>
<media:rights status="userCreated" />
</item>
<item>
<title>S7 Ep4: FPL Pod: Finalising our Gameweek 1 team</title>
<link>https://audioboom.com/posts/8555343</link>
<itunes:episode>4</itunes:episode>
<itunes:title>FPL Pod: Finalising our Gameweek 1 team</itunes:title>
<itunes:season>7</itunes:season>
<enclosure url="https://audioboom.com/posts/8555343.mp3?modified=1723551853&sid=5001585&source=rss" length="45375769" type="audio/mpeg" />
<media:content url="https://audioboom.com/posts/8555343.mp3?modified=1723551853&sid=5001585&source=rss" type="audio/mpeg" medium="audio" duration="2835" lang="en-GB" fileSize="45375769" />
<itunes:image href="https://audioboom.com/i/41960216/s=1400x1400/el=1/rt=fill.png" />
<media:content url="https://audioboom.com/i/41960216/s=1400x1400/el=1/rt=fill.png" type="image/png" medium="image" />
<itunes:duration>2835</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<description><![CDATA[<div>The start of the new season is almost upon us, so Kelly Somers and the FPL Pod team are making their final tweaks to their squads 🤙<br>
<br>
They discuss bringing in Dominic Solanke, the new Spurs no.9, picking Jota over Salah, and offer some armband picks outside of Haaland.<br>
<br>
LISTEN 👇<br>
<br>
* Join the FPL Pod mini-league (04m 10s)<br>
* Making way for Solanke (12m 17s)<br>
* How our squads look (20m 58s)<br>
* Standout pre-season players (25m 00s)<br>
* Differentials (34m 48s)<br>
* Captaincy selection (40m 33s)<br>
<br>
Win our FPL Pod mini-league at the end of the season and get an FPL bundle: q7yco0<br>
<br>
Follow <a href="https://twitter.com/OfficialFPL">@OfficialFPL on X</a> and <a href="https://www.facebook.com/fantasypremierleague">Facebook</a><br>
<br>
<a href="https://twitter.com/KellySomers">Follow Kelly on X</a><br>
<a href="https://twitter.com/ianirving_">Follow Ian on X</a><br>
<a href="https://twitter.com/FPLFamily">Follow FPL Family on X</a><br>
<a href="https://twitter.com/LaurensJulien">Follow Julien on X</a>
</div>
]]></description>
<pubDate>Tue, 13 Aug 2024 12:23:57 +0000</pubDate>
<guid isPermaLink="false">tag:audioboom.com,2024-08-13:/posts/8555343</guid>
<itunes:author>Premier League </itunes:author>
<dc:creator>Premier League </dc:creator>
<media:rights status="userCreated" />
</item>
<item>
<title>S7 Ep3: FPL Pod: Tinkering our drafts</title>
<link>https://audioboom.com/posts/8552740</link>
<itunes:episode>3</itunes:episode>
<itunes:title>FPL Pod: Tinkering our drafts</itunes:title>
<itunes:season>7</itunes:season>
<enclosure url="https://audioboom.com/posts/8552740.mp3?modified=1723036196&sid=5001585&source=rss" length="49488488" type="audio/mpeg" />
<media:content url="https://audioboom.com/posts/8552740.mp3?modified=1723036196&sid=5001585&source=rss" type="audio/mpeg" medium="audio" duration="3092" lang="en-GB" fileSize="49488488" />
<itunes:image href="https://audioboom.com/i/41890920/s=1400x1400/el=1/rt=fill.png" />
<media:content url="https://audioboom.com/i/41890920/s=1400x1400/el=1/rt=fill.png" type="image/png" medium="image" />
<itunes:duration>3092</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<description><![CDATA[<div>We’ve just over a week to go until the season gets under way and plenty of managers have been tinkering with their first drafts, including the FPL Pod team of Kelly Somers, Sam Bonfield and Julien Laurens. 🔧<br>
<br>
They dive into sides starting with favourable fixtures, weigh up leaving out some big hitters and make their selections of the best players per position. 👀<br>
<br>
LISTEN 🎧<br>
<br>
* Pre-season round-up (2m30s)<br>
* Drafts so far (9m21s)<br>
* Favourable Fulham (16m01s)<br>
* Liverpool options (19m58s)<br>
* Long-term fixture planning (30m36s)<br>
* Top picks per position (36m45s)<br>
<br>
Win our FPL Pod mini-league at the end of the season and get an FPL bundle: q7yco0<br>
<br>
Follow <a href="https://twitter.com/OfficialFPL">@OfficialFPL on X</a> and <a href="https://www.facebook.com/fantasypremierleague">Facebook<br>
<br>
</a><a href="https://twitter.com/KellySomers">Follow Kelly on X<br>
</a><a href="https://twitter.com/FPLFamily">Follow FPL Family on X<br>
</a><a href="https://twitter.com/LaurensJulien">Follow Julien on X<br>
</a><br>
</div>
]]></description>
<pubDate>Wed, 07 Aug 2024 13:09:41 +0000</pubDate>
<guid isPermaLink="false">tag:audioboom.com,2024-08-07:/posts/8552740</guid>
<itunes:author>Premier League </itunes:author>
<dc:creator>Premier League </dc:creator>
<media:rights status="userCreated" />
</item>
<item>
<title>S7 Ep2: FPL Pod: Picking our squads</title>
<link>https://audioboom.com/posts/8549588</link>
<itunes:episode>2</itunes:episode>
<itunes:title>FPL Pod: Picking our squads</itunes:title>
<itunes:season>7</itunes:season>
<enclosure url="https://audioboom.com/posts/8549588.mp3?modified=1722427924&sid=5001585&source=rss" length="51069627" type="audio/mpeg" />
<media:content url="https://audioboom.com/posts/8549588.mp3?modified=1722427924&sid=5001585&source=rss" type="audio/mpeg" medium="audio" duration="3191" lang="en-GB" fileSize="51069627" />
<itunes:image href="https://audioboom.com/i/41890920/s=1400x1400/el=1/rt=fill.png" />
<media:content url="https://audioboom.com/i/41890920/s=1400x1400/el=1/rt=fill.png" type="image/png" medium="image" />
<itunes:duration>3191</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<description><![CDATA[<div>The countdown continues until the new season starts and Kelly Somers and the FPL Pod team are here to discuss their current Fantasy drafts.<br>
<br>
They talk about midfield options, how defenders are the best enablers, and if Kai Havertz is a great forward selection.<br>
<br>
LISTEN 👇<br>
<br>
* FPL Challenge returns (01m 52s)<br>
* Defensive dreams (09m 07s)<br>
* Midfield selections (13m 56s)<br>
* Forward thinking (18m 46s)<br>
* Haaland ownership (28m 37s)<br>
* Enabler options (38m 40s)<br>
<br>
Win our FPL Pod mini-league at the end of the season and get an FPL bundle: q7yco0<br>
<br>
Follow <a href="https://twitter.com/OfficialFPL">@OfficialFPL on X</a> and <a href="https://www.facebook.com/fantasypremierleague">Facebook</a><br>
<br>
<a href="https://twitter.com/KellySomers">Follow Kelly on X</a><br>
<a href="https://twitter.com/FPLFamily">Follow FPL Family on X</a><br>
<a href="https://twitter.com/LaurensJulien">Follow Julien on X</a>
</div>
]]></description>
<pubDate>Wed, 31 Jul 2024 12:11:50 +0000</pubDate>
<guid isPermaLink="false">tag:audioboom.com,2024-07-31:/posts/8549588</guid>
<itunes:author>Premier League </itunes:author>
<dc:creator>Premier League </dc:creator>
<media:rights status="userCreated" />
</item>
<item>
<title>S7 Ep1: FPL 2024/25 IS HERE!</title>
<link>https://audioboom.com/posts/8542864</link>
<itunes:episode>1</itunes:episode>
<itunes:title>FPL 2024/25 IS HERE!</itunes:title>
<itunes:season>7</itunes:season>
<enclosure url="https://audioboom.com/posts/8542864.mp3?modified=1721221291&sid=5001585&source=rss" length="55513437" type="audio/mpeg" />
<media:content url="https://audioboom.com/posts/8542864.mp3?modified=1721221291&sid=5001585&source=rss" type="audio/mpeg" medium="audio" duration="3454" lang="en-GB" fileSize="55513437" />
<itunes:image href="https://audioboom.com/i/41890920/s=1400x1400/el=1/rt=fill.png" />
<media:content url="https://audioboom.com/i/41890920/s=1400x1400/el=1/rt=fill.png" type="image/png" medium="image" />
<itunes:duration>3454</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<description><![CDATA[<div>FPL is back for the 2024/25 and so are the full FPL Pod team of Kelly Somers, Julien Laurens and Sam Bonfield to get the season started. 🥳<br>
<br>
Changes to the game, first drafts and whether or not the most-expensive asset of all-time will be making their Gameweek 1 sides are all on the agenda. <br>
<br>
LISTEN 👇<br>
* Interesting prices (01m 24s)<br>
* Team building strategy (06m 48s)<br>
* Haaland or no Haaland? (13m 37s)<br>
* 24/25 Changes (25m 12s)<br>
* First drafts (43m 24s)<br>
<br>
Follow <a href="https://twitter.com/OfficialFPL">@OfficialFPL on X</a> and <a href="https://www.facebook.com/fantasypremierleague">Facebook</a><br>
<a href="https://twitter.com/KellySomers">Follow Kelly on X</a><br>
<a href="https://twitter.com/FPLFamily">Follow FPL Family on X</a><br>
<a href="https://twitter.com/LaurensJulien">Follow Julien on X<br>
</a><br>
</div>
]]></description>
<pubDate>Wed, 17 Jul 2024 13:00:37 +0000</pubDate>
<guid isPermaLink="false">tag:audioboom.com,2024-07-17:/posts/8542864</guid>
<itunes:author>Premier League </itunes:author>
<dc:creator>Premier League </dc:creator>
<media:rights status="userCreated" />
</item>
<item>
<title>S6 Ep48: FPL Pod: 2023/24 season review</title>
<link>https://audioboom.com/posts/8508126</link>
<itunes:episode>48</itunes:episode>
<itunes:title>FPL Pod: 2023/24 season review</itunes:title>
<itunes:season>6</itunes:season>
<enclosure url="https://audioboom.com/posts/8508126.mp3?modified=1716211736&sid=5001585&source=rss" length="51398868" type="audio/mpeg" />
<media:content url="https://audioboom.com/posts/8508126.mp3?modified=1716211736&sid=5001585&source=rss" type="audio/mpeg" medium="audio" duration="3197" lang="en-GB" fileSize="51398868" />
<itunes:image href="https://audioboom.com/i/41699682/s=1400x1400/el=1/rt=fill.png" />
<media:content url="https://audioboom.com/i/41699682/s=1400x1400/el=1/rt=fill.png" type="image/png" medium="image" />
<itunes:duration>3197</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<description><![CDATA[<div>Another fascinating Premier League season comes to a close! So join Kelly Somers and the FPL Pod team as they look back on all the highs and lows from a thrilling campaign 🎢🥳<br>
<br>
They quiz each other on the big performers, bask in Juls’ incredible rank, and even look ahead to next season’s prices.<br>
<br>
LISTEN 👇<br>
<br>
* Testing trivia (06m 13s)<br>
* Juls’ mini-league gift (15m 47s)<br>
* Season review (19m 44s)<br>
* FPL awards (32m 56s)<br>
* Price guesses (39m 43s)<br>
* Differentials (46m 28s)<br>
<br>
Congratulations to our FPL Pod mini-league winner Hjalmar Schorling!<br>
<br>
Follow <a href="https://twitter.com/OfficialFPL">@OfficialFPL on X</a> and <a href="https://www.facebook.com/fantasypremierleague">Facebook</a><br>
<br>
<a href="https://twitter.com/KellySomers">Follow Kelly on X</a><br>
<a href="https://twitter.com/FPLFamily">Follow FPL Family on X</a><br>
<a href="https://twitter.com/LaurensJulien">Follow Julien on X</a>
</div>
]]></description>
<pubDate>Mon, 20 May 2024 12:51:38 +0000</pubDate>
<guid isPermaLink="false">tag:audioboom.com,2024-05-20:/posts/8508126</guid>
<itunes:author>Premier League </itunes:author>
<dc:creator>Premier League </dc:creator>
<media:rights status="userCreated" />
</item>
<item>
<title>S6 Ep47: FPL Pod: Risk or reward in the final Gameweek</title>
<link>https://audioboom.com/posts/8506150</link>
<itunes:episode>47</itunes:episode>
<itunes:title>FPL Pod: Risk or reward in the final Gameweek</itunes:title>
<itunes:season>6</itunes:season>
<enclosure url="https://audioboom.com/posts/8506150.mp3?modified=1715865923&sid=5001585&source=rss" length="47480612" type="audio/mpeg" />
<media:content url="https://audioboom.com/posts/8506150.mp3?modified=1715865923&sid=5001585&source=rss" type="audio/mpeg" medium="audio" duration="2967" lang="en-GB" fileSize="47480612" />
<itunes:image href="https://audioboom.com/i/40585714/s=1400x1400/el=1/rt=fill.png" />
<media:content url="https://audioboom.com/i/40585714/s=1400x1400/el=1/rt=fill.png" type="image/png" medium="image" />
<itunes:duration>2967</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<description><![CDATA[<div>No more long-term planning and vision necessary as we have reached the final Gameweek of the FPL season. 🥲<br>
<br>
Unsure whether to go bold or to play it safe? We’ve got all bases covered with the full FPL Pod team of Kelly Somers, Ian Irving, Sam Bonfield and Julien Laurens ahead of the last Gameweek of the 2023/24 season. 🙌<br>
<br>
LISTEN 🎧<br>
<br>
* A high-scoring GW37 (00m 38s) <br>
* How the Pod squad stand (08m 50s)<br>
* FPL wrapped is coming (14m 12s)<br>
* Teams to target (18m 45s)<br>
* One week punts (26m 50s)<br>
* Diffs, captains and transfers (35m 01s)<br>
<br>
Win our FPL Pod mini-league at the end of the season and get an FPL bundle: ib3wlk<br>
<br>
Follow <a href="https://twitter.com/OfficialFPL">@OfficialFPL on X</a> and <a href="https://www.facebook.com/fantasypremierleague">Facebook</a><br>
<br>
<a href="https://twitter.com/KellySomers">Follow Kelly on X</a><br>
<a href="https://twitter.com/FPLFamily">Follow FPL Family on X</a><br>
<a href="https://twitter.com/LaurensJulien">Follow Julien on X</a><br>
<a href="https://twitter.com/ianirving_">Follow Ian on X</a>
</div>
]]></description>
<pubDate>Thu, 16 May 2024 13:25:09 +0000</pubDate>
<guid isPermaLink="false">tag:audioboom.com,2024-05-16:/posts/8506150</guid>
<itunes:author>Premier League </itunes:author>
<dc:creator>Premier League </dc:creator>
<media:rights status="userCreated" />
</item>
<item>
<title>S6 Ep46: FPL Pod: Going big on the final Double Gameweek</title>
<link>https://audioboom.com/posts/8502709</link>
<itunes:episode>46</itunes:episode>
<itunes:title>FPL Pod: Going big on the final Double Gameweek</itunes:title>
<itunes:season>6</itunes:season>
<enclosure url="https://audioboom.com/posts/8502709.mp3?modified=1715261063&sid=5001585&source=rss" length="50313121" type="audio/mpeg" />
<media:content url="https://audioboom.com/posts/8502709.mp3?modified=1715261063&sid=5001585&source=rss" type="audio/mpeg" medium="audio" duration="3144" lang="en-GB" fileSize="50313121" />
<itunes:image href="https://audioboom.com/i/40563433/s=1400x1400/el=1/rt=fill.png" />
<media:content url="https://audioboom.com/i/40563433/s=1400x1400/el=1/rt=fill.png" type="image/png" medium="image" />
<itunes:duration>3144</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<description><![CDATA[<div>We bring you some midnight madness (thanks Juls) ahead of the final Double Gameweek of the season. 😮<br>
<br>
The full FPL Pod team of Kelly Somers, Sam Bonfield, Julien Laurens and the returning Ian Irving are on hand as managers weigh up single Gameweekers v Doublers, as well as a likely big week for the Bench Boost. 💺📈<br>
<br>
LISTEN 👇<br>
<br>
* Haaland regret in Gameweek 36 (02m 14s)<br>
* Bench Boost fever (10m 23s)<br>
* Single or Double? (11m 27s)<br>
* Doublers in focus (14m 21s)<br>
* Best Single Gameweek options (31m 48s)<br>
* Differentials, captains and transfers (39m 22s)<br>
<br>
Win our FPL Pod mini-league at the end of the season and get an FPL bundle: ib3wlk<br>
<br>
Follow <a href="https://twitter.com/OfficialFPL">@OfficialFPL on X</a> and <a href="https://www.facebook.com/fantasypremierleague">Facebook</a><br>
<br>
<a href="https://twitter.com/KellySomers">Follow Kelly on X</a><br>
<a href="https://twitter.com/FPLFamily">Follow FPL Family on X</a><br>
<a href="https://twitter.com/LaurensJulien">Follow Julien on X</a><br>
<a href="https://twitter.com/ianirving_">Follow Ian on X</a><br>
<br>
</div>
]]></description>
<pubDate>Thu, 09 May 2024 13:24:07 +0000</pubDate>
<guid isPermaLink="false">tag:audioboom.com,2024-05-09:/posts/8502709</guid>
<itunes:author>Premier League </itunes:author>
<dc:creator>Premier League </dc:creator>
<media:rights status="userCreated" />
</item>
<item>
<title>S2 Ep28: Off The Bench: Haaland does it again</title>
<link>https://audioboom.com/posts/8501479</link>
<itunes:episode>28</itunes:episode>
<itunes:title>Off The Bench: Haaland does it again</itunes:title>
<itunes:season>2</itunes:season>
<enclosure url="https://audioboom.com/posts/8501479.mp3?modified=1715088240&sid=5001585&source=rss" length="43955962" type="audio/mpeg" />
<media:content url="https://audioboom.com/posts/8501479.mp3?modified=1715088240&sid=5001585&source=rss" type="audio/mpeg" medium="audio" duration="2747" lang="en-GB" fileSize="43955962" />
<itunes:image href="https://audioboom.com/i/40555848/s=1400x1400/el=1/rt=fill.png" />
<media:content url="https://audioboom.com/i/40555848/s=1400x1400/el=1/rt=fill.png" type="image/png" medium="image" />
<itunes:duration>2747</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<description><![CDATA[<div>It’s been a weekend to remember for one of our FPL experts as they look back on a prosperous Gameweek 💯💍<br>
<br>
Harry Daniels and Lee Bonfield review Chelsea’s upturn in form, Haaland's exploits, and what to do with Man Utd assets<br>
<br>
LISTEN 👇<br>
<br>
* Chelsea finale (04m 10s)<br>
* Selling Spurs (16m 08s)<br>
* Newcastle options (20m 01s)<br>
* Man City conundrum (23m 48s)<br>
* Arsenal assets (30m 12 seconds)<br>
* Ditching Dalot (40m 08 seconds)<br>
<br>
Win an FPL bundle by topping the FPL Pod mini-league at the end of the season: ib3wlk<br>
<br>
Follow <a href="https://twitter.com/OfficialFPL">@OfficialFPL on X</a> and <a href="https://www.facebook.com/fantasypremierleague">Facebook</a><br>
<br>
<a href="https://twitter.com/FPLFamily">Follow FPL Family on X</a><br>
<a href="https://twitter.com/FPL_Harry">Follow Harry on X</a>
</div>
]]></description>
<pubDate>Tue, 07 May 2024 13:23:46 +0000</pubDate>
<guid isPermaLink="false">tag:audioboom.com,2024-05-07:/posts/8501479</guid>
<itunes:author>Premier League </itunes:author>
<dc:creator>Premier League </dc:creator>
<media:rights status="userCreated" />
</item>
<item>
<title>S6 Ep45: FPL Pod: Time to triple-up on Man City</title>
<link>https://audioboom.com/posts/8499342</link>
<itunes:episode>45</itunes:episode>
<itunes:title>FPL Pod: Time to triple-up on Man City</itunes:title>
<itunes:season>6</itunes:season>
<enclosure url="https://audioboom.com/posts/8499342.mp3?modified=1714653479&sid=5001585&source=rss" length="37146989" type="audio/mpeg" />
<media:content url="https://audioboom.com/posts/8499342.mp3?modified=1714653479&sid=5001585&source=rss" type="audio/mpeg" medium="audio" duration="2321" lang="en-GB" fileSize="37146989" />
<itunes:image href="https://audioboom.com/i/40542285/s=1400x1400/el=1/rt=fill.png" />
<media:content url="https://audioboom.com/i/40542285/s=1400x1400/el=1/rt=fill.png" type="image/png" medium="image" />
<itunes:duration>2321</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<description><![CDATA[<div>It’s crunch time in FPL as we near the end of the season and every decision counts 🎲♻️<br>
<br>
Kelly Somers and the FPL Pod team review which three Man City options are the best to go with, changes in defence, and Chip strategy for the Run-in.<br>
<br>
LISTEN 👇<br>
<br>
* Chip plans (10m 04s)<br>
* Defensive worries (14m 18s)<br>
* Magnificent Man City (18m 39s)<br>
* Foden v KDB (24m 46s)<br>
* Differentials (29m 58s)<br>
* Transfers and captaincy (34m 58s)<br>
<br>
Win our FPL Pod mini-league at the end of the season and get an FPL bundle: ib3wlk<br>
<br>
Follow <a href="https://twitter.com/OfficialFPL">@OfficialFPL on X</a> and <a href="https://www.facebook.com/fantasypremierleague">Facebook<br>
</a><br>
<a href="https://twitter.com/KellySomers">Follow Kelly on X<br>
</a><a href="https://twitter.com/FPLFamily">Follow FPL Family on X<br>
</a><a href="https://twitter.com/LaurensJulien">Follow Julien on X</a>
</div>
]]></description>
<pubDate>Thu, 02 May 2024 12:37:48 +0000</pubDate>
<guid isPermaLink="false">tag:audioboom.com,2024-05-02:/posts/8499342</guid>
<itunes:author>Premier League </itunes:author>
<dc:creator>Premier League </dc:creator>
<media:rights status="userCreated" />
</item>
<item>
<title>S2 Ep27: Off The Bench: Wildcards pay off</title>
<link>https://audioboom.com/posts/8497528</link>
<itunes:episode>27</itunes:episode>
<itunes:title>Off The Bench: Wildcards pay off</itunes:title>
<itunes:season>2</itunes:season>
<enclosure url="https://audioboom.com/posts/8497528.mp3?modified=1714395288&sid=5001585&source=rss" length="47740582" type="audio/mpeg" />
<media:content url="https://audioboom.com/posts/8497528.mp3?modified=1714395288&sid=5001585&source=rss" type="audio/mpeg" medium="audio" duration="2983" lang="en-GB" fileSize="47740582" />
<itunes:image href="https://audioboom.com/i/40534301/s=1400x1400/el=1/rt=fill.png" />
<media:content url="https://audioboom.com/i/40534301/s=1400x1400/el=1/rt=fill.png" type="image/png" medium="image" />
<itunes:duration>2983</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<description><![CDATA[<div>It was a week for Wildcard users to rejoice as many of the popular Run-In picks produced 🃏🥳<br>
<br>
FPL experts Gianni Buttice and FPL Family’s Sam Bonfield look back at the first 10 matches of the Gameweek and chat through Newcastle delivering at home, ditching Liverpool attackers, and whether it’s worth owning Bruno.<br>
<br>
LISTEN 👇<br>
<br>
* Spurs conundrum (05m 01s)<br>
* Man City triple-up (10m 34s)<br>
* Great Gordon (18m 47s)<br>
* Should we bother with Bruno (28m 20s)<br>
* Chelsea assets (34m 11 seconds)<br>
* Selling Salah (40m 40 seconds)<br>
<br>
Win an FPL bundle by topping the FPL Pod mini-league at the end of the season: ib3wlk<br>
<br>
Follow <a href="https://twitter.com/OfficialFPL">@OfficialFPL on X</a> and <a href="https://www.facebook.com/fantasypremierleague">Facebook<br>
</a><br>
<a href="https://twitter.com/GianniButtice">Follow Gianni on X</a><br>
<a href="https://twitter.com/FPLFamily">Follow FPL Family on X</a>
</div>
]]></description>
<pubDate>Mon, 29 Apr 2024 12:54:34 +0000</pubDate>
<guid isPermaLink="false">tag:audioboom.com,2024-04-29:/posts/8497528</guid>
<itunes:author>Premier League </itunes:author>
<dc:creator>Premier League </dc:creator>
<media:rights status="userCreated" />
</item>
<item>
<title>S6 Ep44: FPL Pod: Are we all selling Salah?</title>
<link>https://audioboom.com/posts/8495830</link>
<itunes:episode>44</itunes:episode>
<itunes:title>FPL Pod: Are we all selling Salah?</itunes:title>
<itunes:season>6</itunes:season>
<enclosure url="https://audioboom.com/posts/8495830.mp3?modified=1714048306&sid=5001585&source=rss" length="46089644" type="audio/mpeg" />
<media:content url="https://audioboom.com/posts/8495830.mp3?modified=1714048306&sid=5001585&source=rss" type="audio/mpeg" medium="audio" duration="2880" lang="en-GB" fileSize="46089644" />
<itunes:image href="https://audioboom.com/i/40520181/s=1400x1400/el=1/rt=fill.png" />
<media:content url="https://audioboom.com/i/40520181/s=1400x1400/el=1/rt=fill.png" type="image/png" medium="image" />
<itunes:duration>2880</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<description><![CDATA[<div>It’s been a big Double Gameweek 34, unless your name is Mohamed Salah 👑😢<br>
<br>
Kelly Somers and the FPL Pod team discuss the Egyptian King’s future, what to do with Chelsea and Spurs assets, and some of the huge points hauls.<br>
<br>
LISTEN 👇<br>
<br>
* Must-have Havertz (05m 04s)<br>
* See you Salah (12m 53s)<br>
* Chelsea and Spurs Double (23m 17s)<br>
* Backing Watkins (33m 11s)<br>
* Differentials (42m 07s)<br>
* Transfers and captaincy (44m 38s)<br>
<br>
Win our FPL Pod mini-league at the end of the season and get an FPL bundle: ib3wlk<br>
<br>
Follow <a href="https://twitter.com/OfficialFPL">@OfficialFPL on X</a> and <a href="https://www.facebook.com/fantasypremierleague">Facebook<br>
</a><br>
<a href="https://twitter.com/KellySomers">Follow Kelly on X<br>
</a><a href="https://twitter.com/FPLFamily">Follow FPL Family on X<br>
</a><a href="https://twitter.com/LaurensJulien">Follow Julien on X</a>
</div>
]]></description>
<pubDate>Thu, 25 Apr 2024 12:31:33 +0000</pubDate>
<guid isPermaLink="false">tag:audioboom.com,2024-04-25:/posts/8495830</guid>
<itunes:author>Premier League </itunes:author>
<dc:creator>Premier League </dc:creator>
<media:rights status="userCreated" />
</item>
<item>
<title>S2 Ep26: Off The Bench: Palace party lifts spirits</title>
<link>https://audioboom.com/posts/8494006</link>
<itunes:episode>26</itunes:episode>
<itunes:title>Off The Bench: Palace party lifts spirits</itunes:title>
<itunes:season>2</itunes:season>
<enclosure url="https://audioboom.com/posts/8494006.mp3?modified=1713788218&sid=5001585&source=rss" length="39736685" type="audio/mpeg" />
<media:content url="https://audioboom.com/posts/8494006.mp3?modified=1713788218&sid=5001585&source=rss" type="audio/mpeg" medium="audio" duration="2468" lang="en-GB" fileSize="39736685" />
<itunes:image href="https://audioboom.com/i/40510357/s=1400x1400/el=1/rt=fill.png" />
<media:content url="https://audioboom.com/i/40510357/s=1400x1400/el=1/rt=fill.png" type="image/png" medium="image" />
<itunes:duration>2468</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<description><![CDATA[<div>The much-anticipated Double Gameweek 34 got off with a bang thanks to Crystal Palace’s exploits 🏰🎉<br>
<br>
FPL experts Az Phillps and FPL Focal, aka Oscar, discuss the big performers, Watkins' incredible season, and the importance of Chips.<br>
<br>
LISTEN 👇<br>
<br>
* Single Gameweekers (11m 20s)<br>
* Arsenal sale (15m 30s)<br>
* Picking Pickford (20m 31s)<br>
* Wonderful Watkins (24m 32s)<br>
* Palace delight (27m 35 seconds)<br>
* Liverpool challenge (44m 22s)<br>
<br>
Win an FPL bundle by topping the FPL Pod mini-league at the end of the season: ib3wlk<br>
<br>
Follow <a href="https://twitter.com/OfficialFPL">@OfficialFPL on X</a> and <a href="https://www.facebook.com/fantasypremierleague">Facebook</a><br>
<br>
<a href="https://twitter.com/fplblackbox_az?lang=en">Follow Az Phillips on X</a><br>
<a href="https://twitter.com/FPLFocal">Follow Oscar on X</a><br>
<br>
</div>
]]></description>
<pubDate>Mon, 22 Apr 2024 12:16:15 +0000</pubDate>
<guid isPermaLink="false">tag:audioboom.com,2024-04-22:/posts/8494006</guid>
<itunes:author>Premier League </itunes:author>
<dc:creator>Premier League </dc:creator>
<media:rights status="userCreated" />
</item>
<item>
<title>S6 Ep43: FPL Pod: Double Gameweek 34 fun</title>
<link>https://audioboom.com/posts/8492457</link>
<itunes:episode>43</itunes:episode>
<itunes:title>FPL Pod: Double Gameweek 34 fun</itunes:title>
<itunes:season>6</itunes:season>
<enclosure url="https://audioboom.com/posts/8492457.mp3?modified=1713444228&sid=5001585&source=rss" length="43235400" type="audio/mpeg" />
<media:content url="https://audioboom.com/posts/8492457.mp3?modified=1713444228&sid=5001585&source=rss" type="audio/mpeg" medium="audio" duration="2702" lang="en-GB" fileSize="43235400" />
<itunes:image href="https://audioboom.com/i/40491710/s=1400x1400/el=1/rt=fill.png" />
<media:content url="https://audioboom.com/i/40491710/s=1400x1400/el=1/rt=fill.png" type="image/png" medium="image" />
<itunes:duration>2702</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<description><![CDATA[<div>The big Double Gameweek is finally upon us so Kelly Somers and the FPL Pod team dissect how best to attack it 💪😍<br>
<br>
They review all the teams involved, potential Palace propositions, and some single Gameweekers to be aware of.<br>
<br>
LISTEN 👇<br>
<br>
* Doubling teams (08m 56s)<br>
* Arsenal additions (20m 04s)<br>
* Palace dreams (26m 33s)<br>
* Single Gameweekers (31m 52s)<br>
* Differentials (35m 56s)<br>
* Transfers and captaincy (38m 27s)<br>
<br>
Win our FPL Pod mini-league at the end of the season and get an FPL bundle: ib3wlk<br>
<br>
Follow <a href="https://twitter.com/OfficialFPL">@OfficialFPL on X</a> and <a href="https://www.facebook.com/fantasypremierleague">Facebook<br>
</a><br>
<a href="https://twitter.com/KellySomers">Follow Kelly on X<br>
</a><a href="https://twitter.com/FPLFamily">Follow FPL Family on X<br>
</a><a href="https://twitter.com/LaurensJulien">Follow Julien on X</a>
</div>
]]></description>
<pubDate>Thu, 18 Apr 2024 12:43:36 +0000</pubDate>
<guid isPermaLink="false">tag:audioboom.com,2024-04-18:/posts/8492457</guid>
<itunes:author>Premier League </itunes:author>
<dc:creator>Premier League </dc:creator>
<media:rights status="userCreated" />
</item>
<item>
<title>S2 Ep25: Off The Bench: Perfect Palmer</title>
<link>https://audioboom.com/posts/8491251</link>
<itunes:episode>25</itunes:episode>
<itunes:title>Off The Bench: Perfect Palmer</itunes:title>
<itunes:season>2</itunes:season>
<enclosure url="https://audioboom.com/posts/8491251.mp3?modified=1713269486&sid=5001585&source=rss" length="49198006" type="audio/mpeg" />
<media:content url="https://audioboom.com/posts/8491251.mp3?modified=1713269486&sid=5001585&source=rss" type="audio/mpeg" medium="audio" duration="3074" lang="en-GB" fileSize="49198006" />
<itunes:image href="https://audioboom.com/i/41588630/s=1400x1400/el=1/rt=fill.png" />
<media:content url="https://audioboom.com/i/41588630/s=1400x1400/el=1/rt=fill.png" type="image/png" medium="image" />
<itunes:duration>3074</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<description><![CDATA[<div>A Gameweek that started and ended with hat-tricks for popular FPL picks, saw a number of other well-owned players struggle ⚽️⚽️⚽️<br>
<br>
FPL experts Prasun Singhal and Sam Bonfield look back on Man City’s performance, Arsenal treble-ups, and what to do with single Gameweekers<br>
<br>
LISTEN 👇<br>
<br>
* Liverpool conundrum (04m 40s)<br>
* Bye bye Son (14m 48s)<br>
* Arsenal treble-up (28m 08s)<br>
* Man City dilemma (33m 56s)<br>
* Palmer performance (37m 35s)<br>
* Wolves interest (44m 22s)<br>
<br>
Win an FPL bundle by topping the FPL Pod mini-league at the end of the season: ib3wlk<br>
<br>
Follow <a href="https://twitter.com/OfficialFPL">@OfficialFPL on X</a> and <a href="https://www.facebook.com/fantasypremierleague">Facebook</a><br>
<br>
<a href="https://twitter.com/FPLFamily">Follow FPL Family on X</a><br>
<a href="https://twitter.com/Pras_fpl">Follow Prasun on X</a>
</div>
]]></description>
<pubDate>Tue, 16 Apr 2024 12:11:11 +0000</pubDate>
<guid isPermaLink="false">tag:audioboom.com,2024-04-16:/posts/8491251</guid>
<itunes:author>Premier League </itunes:author>
<dc:creator>Premier League </dc:creator>
<media:rights status="userCreated" />
</item>
<item>
<title>S6 Ep42: FPL Pod: Future planning for Doubles</title>
<link>https://audioboom.com/posts/8489170</link>
<itunes:episode>42</itunes:episode>
<itunes:title>FPL Pod: Future planning for Doubles</itunes:title>
<itunes:season>6</itunes:season>
<enclosure url="https://audioboom.com/posts/8489170.mp3?modified=1712843066&sid=5001585&source=rss" length="44581440" type="audio/mpeg" />
<media:content url="https://audioboom.com/posts/8489170.mp3?modified=1712843066&sid=5001585&source=rss" type="audio/mpeg" medium="audio" duration="2752" lang="en-GB" fileSize="44581440" />
<itunes:image href="https://audioboom.com/i/40473779/s=1400x1400/el=1/rt=fill.png" />
<media:content url="https://audioboom.com/i/40473779/s=1400x1400/el=1/rt=fill.png" type="image/png" medium="image" />
<itunes:duration>2752</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<description><![CDATA[<div>The final fixtures that needed rearranging have had their dates set, meaning we now have a complete scheduled for the run in. 🙌<br>
<br>
With DGW37 confirmed, Kelly Somers, Sam Bonfield and (eventually) Julien Laurens discuss the best way to go about planning for the three Double Gameweeks ahead in GW34, GW35 and GW37. 📝<br>
<br>
LISTEN 🎧<br>
<br>
* DGW37 confirmed (01m 14s)<br>
* Jules arrives (17m 36s)<br>
* Remaining chips strategy (22m 24s)<br>
* Best Arsenal trio (27m 21s)<br>
* Double or triple Liverpool? (34m 04s)<br>
* GW33 differentials and transfers (41m 00s)<br>
<br>
Win our FPL Pod mini-league at the end of the season and get an FPL bundle: ib3wlk<br>
<br>
Follow <a href="https://twitter.com/OfficialFPL">@OfficialFPL on X</a> and <a href="https://www.facebook.com/fantasypremierleague">Facebook<br>
</a><br>
<a href="https://twitter.com/KellySomers">Follow Kelly on X<br>
</a><a href="https://twitter.com/FPLFamily">Follow FPL Family on X<br>
</a><a href="https://twitter.com/LaurensJulien">Follow Julien on X<br>
</a><br>
</div>
]]></description>
<pubDate>Thu, 11 Apr 2024 13:44:12 +0000</pubDate>
<guid isPermaLink="false">tag:audioboom.com,2024-04-11:/posts/8489170</guid>
<itunes:author>Premier League </itunes:author>
<dc:creator>Premier League </dc:creator>
<media:rights status="userCreated" />
</item>
<item>
<title>S2 Ep24: Off The Bench: Counting down to Double Gameweek 34</title>
<link>https://audioboom.com/posts/8485370</link>
<itunes:episode>24</itunes:episode>
<itunes:title>Off The Bench: Counting down to Double Gameweek 34</itunes:title>
<itunes:season>2</itunes:season>
<enclosure url="https://audioboom.com/posts/8485370.mp3?modified=1712573265&sid=5001585&source=rss" length="41929015" type="audio/mpeg" />
<media:content url="https://audioboom.com/posts/8485370.mp3?modified=1712573265&sid=5001585&source=rss" type="audio/mpeg" medium="audio" duration="2605" lang="en-GB" fileSize="41929015" />
<itunes:image href="https://audioboom.com/i/41557575/s=1400x1400/el=1/rt=fill.png" />
<media:content url="https://audioboom.com/i/41557575/s=1400x1400/el=1/rt=fill.png" type="image/png" medium="image" />
<itunes:duration>2605</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<description><![CDATA[<div>Plenty of big names provided returns in Gameweek 32 but attention is now beginning to turn to the big Double Gameweek around the corner 😬<br>
<br>
With Double GW34 approaching, FPL experts Lee Bonfield and Harry Daniels discuss the best options for the run 👀<br>
<br>
LISTEN 🎧<br>
<br>
*Gamewek 32 review (00m 55s)<br>
*Remaining chip strategy (03m 37s)<br>
*Dream Arsenal triple-up (06m 00s)<br>
*Pep roulette strikes again (09m 16s)<br>
*Don’t go big on Chelsea (25m 57s)<br>
*Handling Spurs in Blank 34 (31m 05s)<br>
*Watkins haunts sellers (36m 36s)<br>
<br>
Win an FPL bundle by topping the FPL Pod mini-league at the end of the season: ib3wlk<br>
<br>
Follow <a href="https://twitter.com/OfficialFPL">@OfficialFPL on X</a> and <a href="https://www.facebook.com/fantasypremierleague">Facebook<br>
</a><br>
<a href="https://twitter.com/FPLFamily">Follow FPL Family on X<br>
</a><a href="https://twitter.com/FPL_Harry">Follow Harry on X<br>
</a><br>
</div>
]]></description>
<pubDate>Mon, 08 Apr 2024 10:46:57 +0000</pubDate>
<guid isPermaLink="false">tag:audioboom.com,2024-04-08:/posts/8485370</guid>
<itunes:author>Premier League </itunes:author>