-
Notifications
You must be signed in to change notification settings - Fork 29
/
blogdata.xml
5341 lines (5323 loc) · 664 KB
/
blogdata.xml
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" ?>
<!-- This is a WordPress eXtended RSS file generated by WordPress as an export of your site. -->
<!-- It contains information about your site's posts, pages, comments, categories, and other content. -->
<!-- You may use this file to transfer that content from one site to another. -->
<!-- This file is not intended to serve as a complete backup of your site. -->
<!-- To import this information into a WordPress site follow these steps: -->
<!-- 1. Log in to that site as an administrator. -->
<!-- 2. Go to Tools: Import in the WordPress admin panel. -->
<!-- 3. Install the "WordPress" importer from the list. -->
<!-- 4. Activate & Run Importer. -->
<!-- 5. Upload this file using the form provided on that page. -->
<!-- 6. You will first be asked to map the authors in this export file to users -->
<!-- on the site. For each author, you may choose to map to an -->
<!-- existing user on the site or to create a new user. -->
<!-- 7. WordPress will then import each of the posts, pages, comments, categories, etc. -->
<!-- contained in this file into your site. -->
<!-- generator="WordPress/4.3.1" created="2016-02-07 06:52" -->
<rss version="2.0"
xmlns:excerpt="http://wordpress.org/export/1.2/excerpt/"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:wp="http://wordpress.org/export/1.2/"
>
<channel>
<title>Emby</title>
<link>https://emby.media</link>
<description>The open media solution</description>
<pubDate>Sun, 07 Feb 2016 06:52:17 +0000</pubDate>
<language>en-US</language>
<wp:wxr_version>1.2</wp:wxr_version>
<wp:base_site_url>https://emby.media</wp:base_site_url>
<wp:base_blog_url>https://emby.media</wp:base_blog_url>
<wp:author><wp:author_id>3</wp:author_id><wp:author_login>Emby</wp:author_login><wp:author_email>[email protected]</wp:author_email><wp:author_display_name><![CDATA[Emby]]></wp:author_display_name><wp:author_first_name><![CDATA[]]></wp:author_first_name><wp:author_last_name><![CDATA[]]></wp:author_last_name></wp:author>
<generator>http://wordpress.org/?v=4.3.1</generator>
<item>
<title>Media Browser for Chromecast updated</title>
<link>https://emby.media/media-browser-for-chromecast-updated/</link>
<pubDate>Sat, 13 Sep 2014 04:00:00 +0000</pubDate>
<dc:creator><![CDATA[Emby]]></dc:creator>
<guid isPermaLink="false">http://emby.media/media-browser-for-chromecast-updated/</guid>
<description></description>
<content:encoded><![CDATA[<div>Those of you enjoying Chromecast with the web client have been treated to a new update. Here's what's new:<br><br><br><span style="font-size: 24px">Support for WebP Images</span><br><br>The recent server release introduced support for WebP image output, which allows as much as a 34% reduction in file sizes over the same quality as JPG and PNG. The Chromecast receiver is now using this to improve the speed of downloading and displaying images.<br><br><br><span style="font-size: 24px">Logo on the Pause Screen</span><br><br>Now when you pause your movies you'll enjoy the logo in the upper left corner just as you normally do on the detail screen.<br><br><br><span style="font-size: 24px">Progress Bar on Detail Screen</span><br><br>The poster on the detail screen will now display your progress so that you can get an idea of where you'll start from if you're resuming.<br><br>Please note you'll need to reboot your receiver device in order to see the changes. Enjoy, and look for Android and iOS to take advantage of the new Chromecast receiver soon.<br><br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/5416200a4bb67_53f77010a8549_MirrorDetail.jpg" alt="Posted Image"></span></div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5781</wp:post_id>
<wp:post_date>2014-09-13 04:00:00</wp:post_date>
<wp:post_date_gmt>2014-09-13 04:00:00</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>media-browser-for-chromecast-updated</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_thumbnail_id</wp:meta_key>
<wp:meta_value><![CDATA[5892]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_vc_post_settings</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Help translate Media Browser</title>
<link>https://emby.media/help-translate-media-browser/</link>
<pubDate>Mon, 15 Sep 2014 04:00:00 +0000</pubDate>
<dc:creator><![CDATA[Emby]]></dc:creator>
<guid isPermaLink="false">http://emby.media/help-translate-media-browser/</guid>
<description></description>
<content:encoded><![CDATA[<div>As many of you know we are working hard to localize Media Browser so that it can be displayed in your native language.<br><br>
Many have volunteered to help translate and we thank you for that. If you'd like to see Media Browser in your language, please drop us a line and we'll set you up to help translate.</div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5813</wp:post_id>
<wp:post_date>2014-09-15 04:00:00</wp:post_date>
<wp:post_date_gmt>2014-09-15 04:00:00</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>help-translate-media-browser</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_thumbnail_id</wp:meta_key>
<wp:meta_value><![CDATA[5890]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_vc_post_settings</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Media Browser Theater Preview 2: Home Screen and Item Details</title>
<link>https://emby.media/media-browser-theater-preview-2-home-screen-and-item-details/</link>
<pubDate>Wed, 24 Sep 2014 00:15:00 +0000</pubDate>
<dc:creator><![CDATA[Emby]]></dc:creator>
<guid isPermaLink="false">http://emby.media/media-browser-theater-preview-2-home-screen-and-item-details/</guid>
<description></description>
<content:encoded><![CDATA[<div>After much delay, here is the 2nd preview of the work being done behind the scenes on Media Browser Theater. In this post, we'll be showing the new home screen and item detail page.<br><br><iframe id="ytplayer" class="EmbeddedVideo" type="text/html" width="640" height="390" src="http://youtube.com/embed/YW5oR6KX5LU?html5=1&fs=1" frameborder="0" allowfullscreen webkitallowfullscreen></iframe><br><br><strong class="bbc">Home</strong><br>The new home page now contains all home page sections on one continous smooth-scrolling page. You can scroll straight from one section on to the next, or use the shortcuts at the top to skip to a section, or use home/end to navigate to the begining or end of the screen.<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/709/54235aab47318_MBTHome.jpg" alt="Posted Image"></span><br><br><strong class="bbc">Item Details</strong><br>The new item details page differs quite significantly from the current release. Like the home page, all content can be found on a single continuous page.<br><br>The new item details page is designed to surface the content and actions that you are most likely to take, and present them to you without requiring that you dive through multiple menus to get there.<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/709/54235ad8bf5ad_MBTDetails.jpg" alt="Posted Image"></span><br><br><br><span style="font-size: 36px">Join the Team</span><br><br>Media Browser Theater is built with c#, WPF, and other .NET technologies. If you have experience with any of these please drop us a line. We can find a place for anyone who would like to contribute.</div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5885</wp:post_id>
<wp:post_date>2014-09-24 00:15:00</wp:post_date>
<wp:post_date_gmt>2014-09-24 00:15:00</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>media-browser-theater-preview-2-home-screen-and-item-details</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_thumbnail_id</wp:meta_key>
<wp:meta_value><![CDATA[5886]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_vc_post_settings</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Media Browser Chrome Companion 1.5</title>
<link>https://emby.media/media-browser-chrome-companion-1-5/</link>
<pubDate>Sun, 21 Sep 2014 03:50:00 +0000</pubDate>
<dc:creator><![CDATA[Emby]]></dc:creator>
<guid isPermaLink="false">http://emby.media/media-browser-chrome-companion-1-5/</guid>
<description></description>
<content:encoded><![CDATA[<div><span style="font-size: 24px">Add Videos from the Web to your Media Browser Server!</span><br><br><br>The latest update to Media Browser Chrome Companion includes the ability to add your favorite web videos to Media Browser. This new functionality requires that you have the Video Bookmarks plugin installed on your Media Browser server.<ul class="bbcol decimal"><li>Navigate to the video source page (on Youtube, Vimeo, etc.). Click on the Chrome Companion plugin<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/42/541f960d034e9_screenshot.jpg" alt="Posted Image"></span></li><li>Click the Find Videos tab (video icon on the bottom right).<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/42/541f965c2778f_findvideo.png" alt="Posted Image"></span></li><li>Click the plus symbol.<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/42/541f8b9f182d0_ccss1.png" alt="Posted Image"></span></li><li>Put in a name for your video (and an image URL if you wish.)<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/42/541f8bb767dc3_ccss2.png" alt="Posted Image"></span></li><li>The video will now be available in Media Browser’s Video Bookmark Channel.</li></ul>For more information about the full array of features in Media Browser Chrome Companion, <a href="http://mediabrowser.tv/community/index.php?/topic/10551-chrome-companion/" class="bbc_url" title="External link" rel="nofollow external">click here</a>.<br><br>To download the Chrome Companion from the Google store <a href="https://chrome.google.com/webstore/detail/media-browser-3-companion/egofcbleniceaoleohckegkeepennpcn" class="bbc_url" title="External link" rel="nofollow external">click here</a>.</div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5887</wp:post_id>
<wp:post_date>2014-09-21 03:50:00</wp:post_date>
<wp:post_date_gmt>2014-09-21 03:50:00</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>media-browser-chrome-companion-1-5</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_thumbnail_id</wp:meta_key>
<wp:meta_value><![CDATA[5888]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_vc_post_settings</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>TuneIn Channel Update</title>
<link>https://emby.media/tunein-channel-update/</link>
<pubDate>Fri, 12 Sep 2014 00:39:37 +0000</pubDate>
<dc:creator><![CDATA[Emby]]></dc:creator>
<guid isPermaLink="false">http://emby.media/tunein-channel-update/</guid>
<description></description>
<content:encoded><![CDATA[<div>I have just pushed a large update to the TuneIn Channel Plugin<br><br>The plugin now supports<br><ul class="bbc"><li>Presets</li><li>Location Support (LatLon)</li><li>We are now a partner with TuneIn</li></ul><span rel="lightbox"><img class="bbc_img" src="http://www.stephens-blog.co.uk/screenshots/2014-09-12_1724.png" alt="Posted Image"></span><br><br><span rel="lightbox"><img class="bbc_img" src="http://www.stephens-blog.co.uk/screenshots/2014-09-12_1726.png" alt="Posted Image"></span></div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5893</wp:post_id>
<wp:post_date>2014-09-12 00:39:37</wp:post_date>
<wp:post_date_gmt>2014-09-12 00:39:37</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>tunein-channel-update</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_thumbnail_id</wp:meta_key>
<wp:meta_value><![CDATA[5894]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_vc_post_settings</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Media Browser for Win8.1 app updated to v.2.1.1</title>
<link>https://emby.media/media-browser-for-win8-1-app-updated-to-v-2-1-1/</link>
<pubDate>Thu, 11 Sep 2014 11:15:52 +0000</pubDate>
<dc:creator><![CDATA[Emby]]></dc:creator>
<guid isPermaLink="false">http://emby.media/media-browser-for-win8-1-app-updated-to-v-2-1-1/</guid>
<description></description>
<content:encoded><![CDATA[<div><span style="font-size: 18px"><strong class="bbc">Windows 8.1 store app Version 2.1.1 has been released.</strong></span><br><br>Once again the Win8.1 app gets a refreshing update,<br>this time it's a couple of new features, usch as support for Photos and Movie specials, but also a lot of "under the hood" changes with improved playback and security amongst others.<br><br><strong class="bbc">The new features are.</strong><br><br>Support for user -views.<br>The static main menu has been replaced with the users configured views <br>Support for Photos, you can now watch your pictures in your favorite app.<br>Support for Movie specials,<br>Grouping of "new episodes" into shows to give a better overview<br>Added option to disable backdrop-images<br><br>Bugfixes:<br>MCE does not have initial focus on MainPage<br>TV Shows Have Thumb w ClearArt Overlaid<br>ffmpeg.exe does not terminate when stopping a Movie<br><br>Check out the latest version:<br><a href="http://apps.microsoft.com/windows/en-us/app/media-browser/ad55a2f0-9897-47bd-8944-bed3aefd5d06" class="bbc_url" title="External link" rel="nofollow external">http://apps.microsoft.com/windows/en-us/app/media-browser/ad55a2f0-9897-47bd-8944-bed3aefd5d06</a></div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5895</wp:post_id>
<wp:post_date>2014-09-11 11:15:52</wp:post_date>
<wp:post_date_gmt>2014-09-11 11:15:52</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>media-browser-for-win8-1-app-updated-to-v-2-1-1</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_thumbnail_id</wp:meta_key>
<wp:meta_value><![CDATA[5896]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_vc_post_settings</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Windows Phone App Gets Minor Update</title>
<link>https://emby.media/windows-phone-app-gets-minor-update/</link>
<pubDate>Wed, 10 Sep 2014 21:21:47 +0000</pubDate>
<dc:creator><![CDATA[Emby]]></dc:creator>
<guid isPermaLink="false">http://emby.media/windows-phone-app-gets-minor-update/</guid>
<description></description>
<content:encoded><![CDATA[<div>I know, I know, it's been a while since the app last got updated, I apologise for this. I also apologise that this is mostly a minor update too, but it's still quite an important one.<br><br>So what's changed? For the most part, this update is all about bringing the app up to speed with all the recent under the hood changes that have been going on with the Media Browser server, making sure it's ready for some future updates to the server itself.<br><br>That's not to say those are the only changes, there have been various bug fixes and enhancements done that will improve your browsing experience, as well as your streaming experience (no, not a change of bitrate, yet). A full list of which can be found <a href="https://github.com/MediaBrowser/MediaBrowser.WindowsPhone/issues?q=milestone%3A.62+is%3Aclosed" class="bbc_url" title="External link" rel="nofollow external">here</a>.<br><br>Now, I know this blog post is about the release just gone out, but I just wanted to take a moment to give an idea of the roadmap for the next release and what that will include. Basically: Server Playlists, Channels, ability to change the bitrate of videos, and a few other things.<br><br>In the meantime, the update (8.0.62.0) should be <a href="http://www.windowsphone.com/s?appid=f4971ed9-f651-4bf6-84bb-94fd98613b86" class="bbc_url" title="External link" rel="nofollow external">appearing in the store</a> shortly.<br><br><strong class="bbc">NOTE:</strong> This update will require to sign back in again, the server details you had previously will be there, you just need to authenticate with the server again.</div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5897</wp:post_id>
<wp:post_date>2014-09-10 21:21:47</wp:post_date>
<wp:post_date_gmt>2014-09-10 21:21:47</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>windows-phone-app-gets-minor-update</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_thumbnail_id</wp:meta_key>
<wp:meta_value><![CDATA[5898]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_vc_post_settings</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Smart Player for Media Browser : A Few Changes</title>
<link>https://emby.media/smart-player-for-media-browser-a-few-changes/</link>
<pubDate>Tue, 09 Sep 2014 12:16:57 +0000</pubDate>
<dc:creator><![CDATA[Emby]]></dc:creator>
<guid isPermaLink="false">http://emby.media/smart-player-for-media-browser-a-few-changes/</guid>
<description></description>
<content:encoded><![CDATA[<div><strong class="bbc">New Name</strong><br>To reduce confusion it was suggested that the name of this app change to allow it to have more of an individual identity and help remove any confusion in regards to other apps with similar names and platforms.<br><br>The new name is : <strong class="bbc">Smart Player for Media Browser</strong><br><br><strong class="bbc">New Version (1.2.0.12)</strong><br>The new version adds some basic features that were missing.<br><br>Changes<br>- New name (Smart Player for Media Browser)<br>- Audio and subtitle selection<br>- Start playback in full screen mode added to settings<br>- Tile notification for new and unplayed items<br>- On first run show server settings<br>- Bug fix for incorrect audio codec name<br><br><strong class="bbc">New Price : $1.99</strong><br>There is now a cost in the app store for the app of $1.99. There is a fully functional 2 week trial of the app available so users can test it before purchasing.<br><br>The app is still open source with the full source available in GitHub.<br><br><strong class="bbc">Get the app</strong><br><a href="http://apps.microsoft.com/windows/app/media-browser-player/53db60e4-8885-46f6-95d9-cdafb3cd9480" class="bbc_url" title="External link" rel="nofollow external">http://apps.microsoft.com/windows/app/media-browser-player/53db60e4-8885-46f6-95d9-cdafb3cd9480</a><br><br><strong class="bbc">Original Blog</strong><br><a href="http://mediabrowser.tv/community/index.php?/blog/1/entry-101-introducing-media-browser-player-win-81-app/" class="bbc_url" title="External link" rel="nofollow external">http://mediabrowser.tv/community/index.php?/blog/1/entry-101-introducing-media-browser-player-win-81-app/</a><br><br><strong class="bbc">Discussion Thread</strong><br><a href="http://mediabrowser.tv/community/index.php?/topic/9743-smart-player-for-media-browser-win-81-store-app/" class="bbc_url" title="External link" rel="nofollow external">http://mediabrowser.tv/community/index.php?/topic/9743-smart-player-for-media-browser-win-81-store-app/</a></div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5899</wp:post_id>
<wp:post_date>2014-09-09 12:16:57</wp:post_date>
<wp:post_date_gmt>2014-09-09 12:16:57</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>smart-player-for-media-browser-a-few-changes</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_thumbnail_id</wp:meta_key>
<wp:meta_value><![CDATA[5900]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_vc_post_settings</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>CoverArt and Intros now free for supporters</title>
<link>https://emby.media/coverart-and-intros-now-free-for-supporters/</link>
<pubDate>Tue, 09 Sep 2014 00:44:00 +0000</pubDate>
<dc:creator><![CDATA[Emby]]></dc:creator>
<guid isPermaLink="false">http://emby.media/coverart-and-intros-now-free-for-supporters/</guid>
<description></description>
<content:encoded><![CDATA[<div>Now get two of the most popular server plug-ins <strong class="bbc">free</strong> by becoming a Media Browser Supporter (Help/Donate from the server dashboard).<br><br><a href="http://mediabrowser.tv/community/index.php?/topic/800-coverart-40/" class="bbc_url" title="External link" rel="nofollow external">CoverArt</a> - Dress up your MB experience with a wide range of customizable cover treatments for your posters and image overlays for resolution, audio, subtitles and more.<br><br><a href="http://mediabrowser.tv/community/index.php?/topic/1406-mb-intros/" class="bbc_url" title="External link" rel="nofollow external">MB Intros</a> - Create that true cinema experience with highly customizable intros before movie playback in both MBC and MBT. Add current trailers, trailers from your collection, audio/video intros, gag reels, trivia or whatever you wish all based on the metadata of the movie being played.<br><br>If you've been on the fence about supporting the Media Browser core team, there's no better time to take the plunge!</div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5901</wp:post_id>
<wp:post_date>2014-09-09 00:44:00</wp:post_date>
<wp:post_date_gmt>2014-09-09 00:44:00</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>coverart-and-intros-now-free-for-supporters</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_thumbnail_id</wp:meta_key>
<wp:meta_value><![CDATA[5902]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_vc_post_settings</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Media Browser 3.0.5366 Released</title>
<link>https://emby.media/media-browser-3-0-5366-released/</link>
<pubDate>Fri, 05 Sep 2014 04:00:00 +0000</pubDate>
<dc:creator><![CDATA[Emby]]></dc:creator>
<guid isPermaLink="false">http://emby.media/media-browser-3-0-5366-released/</guid>
<description></description>
<content:encoded><![CDATA[<div>A new server release is available which features significant improvements to our transcoder in terms of performance, reliability and features. Without much further ado, here are the highlights:<ul class="bbc"><li>Improved reliability and quality of video transcoding</li><li>A new transcoding throttling feature which can dramatically reduce cpu usage in certain situations</li><li>Improved support for Advanced SubStation Alpha and SRT subtitles</li><li>Improved DLNA reliability</li><li>Added DLNA special folders</li><li>Added resume progress bars with DLNA images</li><li>Support webp image output for faster browsing</li><li>Support for additional photo metadata</li><li>Support for album disc sub-folders</li><li>Display mirror setting now remembered</li><li>Added an option to save metadata and images as hidden files</li><li>Added an option to control when chapter images are extracted</li></ul><span style="font-size: 24px">New Transcoding Features</span><br><br>Our transcoding has improved significantly. Not only is it faster and more reliable than ever, but it will also throttle itself when it gets far enough ahead of the player. Let's take a look at how that works. Simply start playing something and monitor the cpu usage from ffmpeg:<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/540b5a5f601d1_Untitled.png" alt="Posted Image"></span><br><br>As you can see it starts out pretty high, but depending on the content being played the transcoder may be able to move at a faster rate than you're actually watching. Let's monitor that from the server dashboard:<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/540b5ad144b56_Untitled.png" alt="Posted Image"></span><br><br>As you can see the transcoder position (in red), is a few minutes ahead of your current position. Media Browser Server is able to identify this and throttle the transcoder in order to reduce cpu usage:<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/540b5b29c851f_Untitled.png" alt="Posted Image"></span><br><br>The throttling is smart and will speed up and slow down as needed in order to maintain smooth playback. Now the reduced load on your server will allow more devices to stream simultaneously without putting too much pressure on your system.<br><br>But these are not the only transcoding improvements. Our handling of SRT and Advanced SubStation Alpha subtitles has improved and is now more efficient and reliable than ever.<br><br><br><span style="font-size: 24px">Improved DLNA Support</span><br><br>This release also brings a number of DLNA enhancements. For starters, device compatibility has increased significantly thanks to pull requests submitted by 7Illusions.<br><br>In addition, we now display special folders throughout your library. Click into your TV, Movie, or Music sections and you'll see some nice categories like Resume, Next Up, Latest, Favorites, etc.<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/540b5dbe6999c_Untitled.png" alt="Posted Image"></span><br><br><br>In addition, you'll now see progress bars for titles that can be resumed, just like you're accustomed to with our other apps:<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/540b5df0dfc8d_Untitled.png" alt="Posted Image"></span><br><br><br><span style="font-size: 24px">WebP Image Output Support</span><br><br>This is a technology feature for the developers. WebP is an open source image format designed by Google that achieves as much as a 34% reduction in file size from JPG/PNG at the same level of quality. This is going to allow faster browsing with apps that are capable of supporting them.<br><br>Look for WebP support soon in the following apps:<ul class="bbc"><li>Web Client with Chrome and Chrome Android browsers</li><li>All Android apps</li><li>Chromecast</li></ul><span style="font-size: 24px">New Photo Metadata Support</span><br><br>With this release we are now capturing more robust photo metadata, with stats such as Aperture, Shutter Speed, Latitude, Longitude, and a long list of others. This is only the beginning of our photo revamp and you can expect robust filtering as well as slideshows and galleries in future updates.<br><br><br><span style="font-size: 24px">Album Disc Sub-Folder Support</span><br><br>A long requested feature, we now support numbered disc sub-folders. Please see the music section of the knowledge base for details:<br><br><a href="http://mediabrowser.tv/community/index.php?/topic/674-media-files-folders-structure/?p=21480" class="bbc_url" title="External link" rel="nofollow external">http://mediabrowser.tv/community/index.php?/topic/674-media-files-folders-structure/?p=21480</a><br><br><br><span style="font-size: 24px">Join the Media Browser Team</span><br><br>As always, we're looking to grow the team with new developers, testers, designers, or any skill set you bring that you feel can help us. In particular we are looking for more Android and iOS developers to help bring us onto new devices and form factors that are rapidly becoming popular, such as living room set top boxes and wearables. Drop us a line!</div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5903</wp:post_id>
<wp:post_date>2014-09-05 04:00:00</wp:post_date>
<wp:post_date_gmt>2014-09-05 04:00:00</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>media-browser-3-0-5366-released</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_thumbnail_id</wp:meta_key>
<wp:meta_value><![CDATA[5904]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_vc_post_settings</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Media Browser for Roku 1.5.5 Beta Released</title>
<link>https://emby.media/media-browser-for-roku-1-5-5-beta-released/</link>
<pubDate>Mon, 01 Sep 2014 04:00:00 +0000</pubDate>
<dc:creator><![CDATA[Emby]]></dc:creator>
<guid isPermaLink="false">http://emby.media/media-browser-for-roku-1-5-5-beta-released/</guid>
<description></description>
<content:encoded><![CDATA[<div>While we wait for our new public channel to be approved, the private beta channel has been updated.<br><br><a href="https://owner.roku.com/add/MediaBrowserBeta" class="bbc_url" title="External link" rel="nofollow external">https://owner.roku.c...ediaBrowserBeta</a><ul class="bbc"><li>Home screen layout now utilizes your user preferences from the web client, displaying the structure you've already configured.</li><li>Resolves issues when seeking via remote control apps.</li><li>Play All supported for music albums and playlists - just focus it and hit play on the remote.</li><li>The app now accepts remote control commands to play entire playlists, music artists, music genres and music albums.</li><li>Photo support has been added.</li></ul>Instructions for Now TV users:<br><br><a href="http://mediabrowser.tv/community/index.php?/topic/689-how-to-install-media-browser-on-now-tv/" class="bbc_url" title="External link" rel="nofollow external">http://mediabrowser....wser-on-now-tv/</a><br><br><span style="font-size: 18px">Remember this is the only Roku Channel that officially represents the Media Browser project.</span><br><br><br><span style="color: #282828"><span style="font-family: helvetica"><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/539b4fc800ccb_2.jpg" alt="Posted Image"></span></span></span><br><br><br><span style="color: #282828"><span style="font-family: helvetica"><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/539b4fce8f841_3.jpg" alt="Posted Image"></span></span></span></div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5905</wp:post_id>
<wp:post_date>2014-09-01 04:00:00</wp:post_date>
<wp:post_date_gmt>2014-09-01 04:00:00</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>media-browser-for-roku-1-5-5-beta-released</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_thumbnail_id</wp:meta_key>
<wp:meta_value><![CDATA[5906]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_vc_post_settings</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Introducing Media Browser Player : Win 8.1 App</title>
<link>https://emby.media/introducing-media-browser-player-win-8-1-app/</link>
<pubDate>Tue, 26 Aug 2014 02:12:00 +0000</pubDate>
<dc:creator><![CDATA[Emby]]></dc:creator>
<guid isPermaLink="false">http://emby.media/introducing-media-browser-player-win-8-1-app/</guid>
<description></description>
<content:encoded><![CDATA[<div>I have been very impressed with the Media Browser web interface, it is simple but at the same time fully functional with all browsing and management functions at your fingertips.<br><br>I wanted to use the web interface for my daily use on my Surface RT and Windows 8.1 laptop but the web browser playback experience was very poor with limited functionality and stability. What I wanted was the web interface but with a solid streaming playback solution.<br><br>What I came up with was a new simple player that integrates with the default web interface and automatically intercepts play commands to play the result in its own player.<br><br>When started the client loads the main Media Browser web interface and auto sets the Remote to control the local instance of the applications streaming player, this mean all play commands are now sent to the local custom player.<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/1880/53fd3306be4c0_RemoteIcons.png" alt="Posted Image"></span><br><br>Play actions including resumes are now sent to the "Media Browser Player" which is waiting for these actions.<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/1880/53fd33d947625_RemoteActions.png" alt="Posted Image"></span><br><br>When the playback starts the new player pops up.<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/1880/53fd367cbc3af_MBPScreen03detailssmall.png" alt="Posted Image"></span><br><br>The player interface has a lot of information, to hide the info just tap the video and it will go full screen.<br><br>I have tried to include as much of the streaming transcode information as possible, this information can help you diagnose problems, for example if you are experiencing a lot of buffering it could be due to the speed of the transcode not keeping up or it could be that your wifi is not able to keep up. Both of these can be diagnosed with this interface.<br><br>Finally I wanted as much control over the streaming setting as I could get so I added whatever I could find to the streaming settings.<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/1880/53fd37f682a86_RemoteIcons.png" alt="Posted Image"></span><br><br><br>While this is not everything it is enough to get you started with experimenting with different streaming settings in your environment.<br><br>This app is not for everyone, it is more for the people what want a better streaming playback experiences than the default web interface can supply but still want the the flexibility and power of the default web interface.<br><br><strong class="bbc">Grab it form the app store now</strong><br><br><a href="http://apps.microsoft.com/windows/app/media-browser-player/53db60e4-8885-46f6-95d9-cdafb3cd9480" class="bbc_url" title="External link" rel="nofollow external">http://apps.microsoft.com/windows/app/media-browser-player/53db60e4-8885-46f6-95d9-cdafb3cd9480</a><br><br>Feedback is greatly appreciated, please use the following forum thread:<br><br><a href="http://mediabrowser.tv/community/index.php?/topic/9743-media-browser-player-win-81-store-app/" class="bbc_url" title="External link" rel="nofollow external">http://mediabrowser.tv/community/index.php?/topic/9743-media-browser-player-win-81-store-app/</a></div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5907</wp:post_id>
<wp:post_date>2014-08-26 02:12:00</wp:post_date>
<wp:post_date_gmt>2014-08-26 02:12:00</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>introducing-media-browser-player-win-8-1-app</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_thumbnail_id</wp:meta_key>
<wp:meta_value><![CDATA[5908]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_vc_post_settings</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>iPad Client Update: v1.1.3</title>
<link>https://emby.media/ipad-client-update-v1-1-3/</link>
<pubDate>Sun, 24 Aug 2014 02:55:45 +0000</pubDate>
<dc:creator><![CDATA[Emby]]></dc:creator>
<guid isPermaLink="false">http://emby.media/ipad-client-update-v1-1-3/</guid>
<description></description>
<content:encoded><![CDATA[<div>This is a big update that includes user requested features and bug fixes. <br><br><strong class="bbc">Features: </strong><br>- Audio Track Picker support. <br>- Subtitle support. <br>- DLNA Remote support. <br>- Direct Stream for supported files. <br>- Completely revamped video player. <br>- Motion effects to background images in the detail page. <br><br><strong class="bbc">Bug fixes: </strong><br>- Loading spinner bug in player. <br>- Player seek accuracy improved. <br>- Add server issue with http prefix <br>- and more. <br><br>Stay tuned for future updates.<br><br><em class="bbc">The following requests from the user voice has been completed in this update. <a href="http://mbios.uservoice.com" class="bbc_url" title="External link" rel="nofollow external">http://mbios.uservoice.com</a></em><br><ul class="bbc"><li>Show current runtime not just time that is left</li><li>Switch between audio track</li><li>Add subtitle support.</li><li>Allow media to be resumed</li><li>Hide unaired/missing episodes</li><li>Rotten Tomatoes ratings</li><li>ISO support for bd rips</li><li>DLNA Control</li><li>Ios App no show up in Active Devices</li><li>Host/IP Address box is limited to displaying ~23 characters</li></ul><br><strong class="bbc">Media Detail:</strong><br><br><span style="color: rgb(0,0,0)"><span style="font-family: Lucida Grande"><span style="font-size: 12px"><strong class="bbc"><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/61/53fa78e9ebf9f_Detaik.png" alt="Posted Image"></span></strong></span></span></span><br><br><span style="font-size: 12px"><strong class="bbc">Video Player:</strong></span><br><span style="font-size: 12px"><strong class="bbc"><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/61/53fa7900b4fd8_player.png" alt="Posted Image"></span></strong></span></div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5909</wp:post_id>
<wp:post_date>2014-08-24 02:55:45</wp:post_date>
<wp:post_date_gmt>2014-08-24 02:55:45</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>ipad-client-update-v1-1-3</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_thumbnail_id</wp:meta_key>
<wp:meta_value><![CDATA[5910]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_vc_post_settings</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Introducing the new Chromecast for Media Browser</title>
<link>https://emby.media/introducing-the-new-chromecast-for-media-browser/</link>
<pubDate>Thu, 21 Aug 2014 04:00:00 +0000</pubDate>
<dc:creator><![CDATA[Emby]]></dc:creator>
<guid isPermaLink="false">http://emby.media/introducing-the-new-chromecast-for-media-browser/</guid>
<description></description>
<content:encoded><![CDATA[<div>We're please to announce revamped Chromecast support. This is currently featured in the web client and will soon be making it's way to Android, iPhone and iPad. Let's go through how it works and you'll see how easy it is.<br><br>You'll start by clicking the remote control icon you've come to know and love.<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53f76d65f072c_Untitled.png" alt="Posted Image"></span><br><br><br>Upon doing so, the Chromecast extension will appear and allow you to select the Chromecast receiver you'd like to cast to.<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53f76dbacff69_Untitled1.png" alt="Posted Image"></span><br><br><br>Once the connection is established, you'll see the player icon light up in the top right-hand corner.<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53f76e1c67cfc_Untitled2.png" alt="Posted Image"></span><br><br><br>In addition, you'll see a friendly welcome screen on your TV:<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53f76f50810b9_Ready.jpg" alt="Posted Image"></span><br><br><br>Now you can send content to Chromecast just like you would any other device. Let's go through some examples of that. Let's play a movie. First, we're going to go back and enable the optional mirror mode function, so that everyone in the room can see the the movie information before starting playback.<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53f7741358de5_Untitled11.png" alt="Posted Image"></span><br><br>Now let's go view The Avengers in the browser. Voila, it also shows up on the TV. Wait, is this Media Browser Theater? No, it's Chromecast!<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53f77010a8549_MirrorDetail.jpg" alt="Posted Image"></span><br><br><br>Now click play in the browser, and you'll be treated to a wonderful interface on-screen to control the content:<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53f7704044613_Paused.jpg" alt="Posted Image"></span><br><br><br>Music looks great too:<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53f770bdc2875_Song.jpg" alt="Posted Image"></span><br><br><br><span style="font-size: 24px">Subtitles (Look, no transcoding!)</span><br><br>Our subtitle text delivery system that you've seen in other clients is also featured in Chromecast. We do everything possible to avoid transcoding, and text-based delivery of subtitles via WebVTT is one of many techniques we use to make playback as efficient as possible.<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53f77314c0565_Untitled9.png" alt="Posted Image"></span><br><br><br><span style="font-size: 24px">Supports Intros</span><br><br>If you use the Intros plugin, this is now supported bringing the cinema experience to Chromecast.<br><br><br><span style="font-size: 24px">Supports Channels & Live TV</span><br><br>Title says it all. Now you can stream online content and the evening news directly to Chromecast!<br><br><br><span style="font-size: 24px">What other ways can I play?</span><br><br>You can do everything the web client can do.<br><br><span style="font-size: 18px">Play a full Season or Series</span> - Play, Shuffle<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53f77373b3290_Untitled10.png" alt="Posted Image"></span><br><br><br><br><span style="font-size: 24px">Albums </span>- Play, Queue, Shuffle, Instant Mix, Play all from Here, Queue all from Here<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53f7714234ef6_Untitled4.png" alt="Posted Image"></span><br><br><br><span style="font-size: 24px">Songs </span>- Play, Queue, Shuffle, Instant Mix, Play all from Here, Queue all from Here<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53f7718d7e33a_Untitled5.png" alt="Posted Image"></span><br><br><br><span style="font-size: 24px">Music Genres</span> - Play, Shuffle, Instant Mix, Queue<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53f771cec50a6_Untitled6.png" alt="Posted Image"></span><br><br><br><br><span style="font-size: 24px">Music Artists</span> - Play, Shuffle, Instant Mix, Queue<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53f772059aa5d_Untitled7.png" alt="Posted Image"></span><br><br><br><span style="font-size: 24px">Playlists </span>- Play, Shuffle, Play all from Here, Queue all from Here, Queue<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53f77259cb9f4_Untitled8.png" alt="Posted Image"></span><br><br><br>Expect our Chromecast features to continue to evolve in the coming weeks. Tells us how you use it and help shape the direction in which we take it. Enjoy!<br><br><br><span style="font-size: 24px">Looking for New Contributors</span><br><br>Would you like to help with our future Chromecast development? We are looking for skilled html5/javascript developers. We are also looking for Java/Android developers for some other upcoming projects. Get in touch!</div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5911</wp:post_id>
<wp:post_date>2014-08-21 04:00:00</wp:post_date>
<wp:post_date_gmt>2014-08-21 04:00:00</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>introducing-the-new-chromecast-for-media-browser</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_thumbnail_id</wp:meta_key>
<wp:meta_value><![CDATA[5912]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_vc_post_settings</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>SVT Play for Media Browser released</title>
<link>https://emby.media/svt-play-for-media-browser-released/</link>
<pubDate>Wed, 20 Aug 2014 21:07:00 +0000</pubDate>
<dc:creator><![CDATA[Emby]]></dc:creator>
<guid isPermaLink="false">http://emby.media/svt-play-for-media-browser-released/</guid>
<description></description>
<content:encoded><![CDATA[<div>Now you can watch Swedish public service in Media Browser.<br>Just install the channel and browse away.<br>Watch news, documentaries, movies, tv-series etc..<br><br>Hope you like it<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/601/53f6571ac239e_1.png" alt="Posted Image"></span><br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/601/53f6573fb7611_2.png" alt="Posted Image"></span><br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/601/53f6576ad80ed_3.png" alt="Posted Image"></span></div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5913</wp:post_id>
<wp:post_date>2014-08-20 21:07:00</wp:post_date>
<wp:post_date_gmt>2014-08-20 21:07:00</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>svt-play-for-media-browser-released</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_thumbnail_id</wp:meta_key>
<wp:meta_value><![CDATA[5914]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_vc_post_settings</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Media Browser 3.0.5347 Released</title>
<link>https://emby.media/media-browser-3-0-5347-released/</link>
<pubDate>Wed, 20 Aug 2014 04:00:00 +0000</pubDate>
<dc:creator><![CDATA[Emby]]></dc:creator>
<guid isPermaLink="false">http://emby.media/media-browser-3-0-5347-released/</guid>
<description></description>
<content:encoded><![CDATA[<div>We're releasing a follow-up to the previous release to address a Samsung DLNA issue that crept up on us. But we also managed to squeeze in a few more goodies.<br><br><br><span style="font-size: 24px">Chromecast 2.0 in the Web Client</span><br><br>I think the title says it all, but now you can send media to your Chromecast using the web interface. A separate blog post will be coming with full details and a walk-through. In addition, our Chromecast look and feel has been revamped. Look for the Android and iOS apps to incorporate this soon as well.<br><br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53f627034f006_Untitled.png" alt="Posted Image"></span><br><br><br><span style="font-size: 24px">Easy ordering of your views</span><br><br>Now there is no more messing with sort orders. Just click the arrows to re-order your views.<br><br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53f6270c6e875_Untitled1.png" alt="Posted Image"></span><br><br><br><span style="font-size: 24px">Play All from here / Queue All from here</span><br><br>We've added more functions to make multi-item playback as easy as possible. Note that not every screen has these functions yet, but they'll be added gradually to the entire web client in future releases.<br><br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53f627b6c9cbd_Untitled2.png" alt="Posted Image"></span>+<br><br><br><span style="color: rgb(40,40,40)"><span style="font-family: helvetica"><span style="font-size: 24px">Looking for New Contributors</span></span></span><br><br><span style="color: rgb(40,40,40)"><span style="font-family: helvetica">Would you like to help with our future Chromecast development? We are looking for skilled html5/javascript developers. We are also looking for Java/Android developers for some other upcoming projects. Get in touch! </span></span></div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5915</wp:post_id>
<wp:post_date>2014-08-20 04:00:00</wp:post_date>
<wp:post_date_gmt>2014-08-20 04:00:00</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>media-browser-3-0-5347-released</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_thumbnail_id</wp:meta_key>
<wp:meta_value><![CDATA[5916]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_vc_post_settings</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Windows 8.1 App 2.0 Released</title>
<link>https://emby.media/windows-8-1-app-2-0-released/</link>
<pubDate>Tue, 19 Aug 2014 18:58:00 +0000</pubDate>
<dc:creator><![CDATA[Emby]]></dc:creator>
<guid isPermaLink="false">http://emby.media/windows-8-1-app-2-0-released/</guid>
<description></description>
<content:encoded><![CDATA[<div>The wait is over, the new version of Media Browser for Windows 8.1 is here.<br><br><a href="http://apps.microsoft.com/windows/en-us/app/media-browser/ad55a2f0-9897-47bd-8944-bed3aefd5d06" class="bbc_url" title="External link" rel="nofollow external">http://apps.microsoft.com/windows/en-us/app/media-browser/ad55a2f0-9897-47bd-8944-bed3aefd5d06</a><br><br>Even though the app has a lot of cosmetic improvements such as rotating backdrops, more artwork used etc etc, the biggest changes are under the hood. Playback is vastly improved and performance is even better.<br><br>Here's a list of the biggest changes<br><br><strong class="bbc">Playback</strong><ul class="bbc"><li>Support for HLS streams, providing a more reliable transcoding solution with less playback errors.</li><li>Support for external subtitles without transcoding</li><li>New player look and feel</li></ul><strong class="bbc">Features</strong><ul class="bbc"><li>Channels are now supported. Just enable some channels on the server and enjoy them on your windows 8.1 device.</li><li>Playlists are now supported, just go into the music hub and you'll find them.</li><li>Multiple backdrops. The app now use all the backdrops that you have for your items and fades nicely between them</li><li>Fewer buttons, the resume button is gone and replaced with a flyout. Just hit play, if the playable item can resume the options will be shown</li><li>The change user option has moved up to the top left corner of the main screen</li></ul><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/601/53f4e430c1902_Screenshot14.png" alt="Posted Image"></span><br><br><br><strong class="bbc">Languages</strong><ul class="bbc"><li>Two more languages have been added, Spanish and Kazakh</li></ul><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/601/53f4e440b3405_Screenshot12.png" alt="Posted Image"></span><br><br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53f4e25f81e2d_53e7ea3428d59_1.png" alt="Posted Image"></span><br><br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53f4e26f6cdc1_53e7eabaedf16_2.png" alt="Posted Image"></span></div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5917</wp:post_id>
<wp:post_date>2014-08-19 18:58:00</wp:post_date>
<wp:post_date_gmt>2014-08-19 18:58:00</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>windows-8-1-app-2-0-released</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_thumbnail_id</wp:meta_key>
<wp:meta_value><![CDATA[5918]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_vc_post_settings</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Announcing nuVue for Media Browser</title>
<link>https://emby.media/announcing-nuvue-for-media-browser/</link>
<pubDate>Sun, 17 Aug 2014 04:00:00 +0000</pubDate>
<dc:creator><![CDATA[Emby]]></dc:creator>
<guid isPermaLink="false">http://emby.media/announcing-nuvue-for-media-browser/</guid>
<description></description>
<content:encoded><![CDATA[<div><span style="color: rgb(40,40,40)"><span style="font-family: helvetica"><strong class="bbc">nuVue is pleased to announce support for Media Browser</strong></span></span><br><br><span style="color: rgb(40,40,40)"><span style="font-family: helvetica"><a href="https://play.google.com/store/apps/details?id=com.immersiondesignstudio.nuvue" class="bbc_url" title="External link" rel="nofollow external">https://play.google....ignstudio.nuvue</a></span></span><br><br><span style="color: rgb(40,40,40)"><span style="font-family: helvetica">nuVue is a companion app for Media Browser users that displays rich notifications when new items are added. There is nothing additional to install on your Media Browser server. Just sign in with your credentials and nuVue does the rest.</span></span><ul class="bbc"><li>Know when there is something new to watch without opening a client app</li><li>Perfect for cord-cutters who use automated downloads</li><li>Group notifications and listings by media type</li><li>Group notifications and listings by server</li><li>Group all recent items into a single notification and list</li><li>Full support for Android Wear notifications</li><li>Automatic server discovery</li><li>Advanced filtering for libraries and TV series</li><li>Automatically handles both local and remote connections</li><li>Easy setup--just sign into your Media Browser server and go</li></ul><span style="color: rgb(40,40,40)"><span style="font-family: helvetica">Be sure and join the Google community to read about future development, and submit bug reports and feature requests:</span></span><br><span style="color: rgb(40,40,40)"><span style="font-family: helvetica"><a href="https://plus.google.com/communities/115195631692310173087" class="bbc_url" title="External link" rel="nofollow external">https://plus.google....631692310173087</a></span></span><br><br><br><span style="color: rgb(40,40,40)"><span style="font-family: helvetica"><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53f22ee6f0a84_1.png" alt="Posted Image"></span></span></span><br><span style="color: rgb(40,40,40)"><span style="font-family: helvetica"><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53f22ef229aa9_2.png" alt="Posted Image"></span></span></span><br><span style="color: rgb(40,40,40)"><span style="font-family: helvetica"><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53f22efa167d3_3.png" alt="Posted Image"></span></span></span><br><span style="color: rgb(40,40,40)"><span style="font-family: helvetica"><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53f22f016ca1d_4.png" alt="Posted Image"></span></span></span></div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5919</wp:post_id>
<wp:post_date>2014-08-17 04:00:00</wp:post_date>
<wp:post_date_gmt>2014-08-17 04:00:00</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>announcing-nuvue-for-media-browser</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_thumbnail_id</wp:meta_key>
<wp:meta_value><![CDATA[5920]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_vc_post_settings</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Media Browser Server 3.0.5340 Released</title>
<link>https://emby.media/media-browser-server-3-0-5340-released/</link>
<pubDate>Sun, 10 Aug 2014 04:00:00 +0000</pubDate>
<dc:creator><![CDATA[Emby]]></dc:creator>
<guid isPermaLink="false">http://emby.media/media-browser-server-3-0-5340-released/</guid>
<description></description>
<content:encoded><![CDATA[<div><span style="font-size: 24px">Give me my playlists!</span><br><br>With this new release we've added the ability to create playlists in the web client, but it also brings some other improvements and fixes. Here's the rundown:<br><ul class="bbc"><li>Create playlists in the web client</li><li>Improved DLNA compatibility and image support</li><li>Increased server localization</li><li>Chrome will now direct stream compatible mkv's</li><li>New People metadata settings</li><li>New channel downloading settings</li><li>New folder view setting</li><li>New local password setting</li></ul>There are also some new features for developers:<ul class="bbc"><li>TTML subtitle output</li><li>VTT segmentation within m3u8 playlists</li></ul>And a few important fixes:<ul class="bbc"><li>Fixed open subtitle password issue (Windows users will need to reconfigure their passwords)</li><li>Fixed auto-organize not running on a schedule</li><li>Live TV recording paths not updating</li></ul><span style="font-size: 24px">Playlists</span><br><br>The highlight of this release is the ability to create playlists from the web client. In the coming weeks you'll see this feature rolled out to all of our clients. How do you create a playlist? Easy!<br><br>Right click any song, album, artist, genre, movie, tv series, season or episode:<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53e95e46f0491_Untitled.png" alt="Posted Image"></span><br><br>Mobile users can also accomplish this via the tap-hold menus. Then you'll see a nifty slideout menu:<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53e95e722c44e_Untitled.png" alt="Posted Image"></span><br><br>Once added, you'll have a new Playlists section on your home page. You'll then see your list of playlists.<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53e982eebc04d_Untitled.png" alt="Posted Image"></span><br><br><br><br><br>Click into any playlist to manage or play it:<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53e95ec36ca8e_Untitled.png" alt="Posted Image"></span><br><br>But that's not the only way you can do it. Detail pages now have a more button containing this as well as the Edit function:<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53e95effa187a_Untitled.png" alt="Posted Image"></span><br><br>And it can also be done in bulk using the selection tool:<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53e95f3a7825d_Untitled.png" alt="Posted Image"></span><br><br>Expect the playlist feature to evolve significantly in upcoming releases. Be sure to leave feedback and be a part of the process.<br><br><br><span style="font-size: 24px">DLNA Improvements</span><br><br>Persistence pays off, and thanks to the efforts of a few community members our DLNA device support has improved significantly with this release. Even devices that were already functioning should see improved image support. Users with custom profiles will need to rebuild them using the new system profiles as a base.<br><br>DLNA also has a couple new features - Live TV support, as well as a new device profile setting to control music transcoding bitrate.<br><br><br><span style="font-size: 24px">People Metadata</span><br><br>Do your actor biographies take a long time to download? We feel your pain. Now you can limit this with new fine tuning controls.<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53ecbba6725fc_Untitled.png" alt="Posted Image"></span><br><br><br><span style="font-size: 24px">New Channel Settings</span><br><br>Now you can easily control the size of your downloaded channel content.<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53ecbc404ac9f_Untitled.png" alt="Posted Image"></span><br><br><br><span style="font-size: 24px">New Folder View Setting</span><br><br>Now there is an option to display a plain folder view as part of your customizable user views. If enabled this will show up in any client that supports user views, including the web client, DLNA, MBT, and soon Roku.<br><br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53ecbd13cf46d_Untitled.png" alt="Posted Image"></span><br><br><br><span style="font-size: 24px">Local Password Setting</span><br><br>Now you can configure easy login ability when users are inside your home network.<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/53ee382aef3ea_Untitled.png" alt="Posted Image"></span><br><br><span style="font-size: 24px">Join the Team</span><br><br>As always we're recruiting and looking for new developers to step up and join us. Our focus is starting to turn to the Android platform. If you have Android or Java experience, there are multiple projects available so please drop us a line.</div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5921</wp:post_id>
<wp:post_date>2014-08-10 04:00:00</wp:post_date>
<wp:post_date_gmt>2014-08-10 04:00:00</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>media-browser-server-3-0-5340-released</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_thumbnail_id</wp:meta_key>
<wp:meta_value><![CDATA[5922]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_vc_post_settings</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Roku Beta 1.25 Released</title>
<link>https://emby.media/roku-beta-1-25-released/</link>
<pubDate>Sat, 09 Aug 2014 04:00:00 +0000</pubDate>
<dc:creator><![CDATA[Emby]]></dc:creator>
<guid isPermaLink="false">http://emby.media/roku-beta-1-25-released/</guid>
<description></description>
<content:encoded><![CDATA[<div><span style="color: rgb(40,40,40)"><span style="font-family: helvetica">While we wait for our new public channel to be approved, the private beta channel has been updated.</span></span><br><br><a href="https://owner.roku.com/add/MediaBrowserBeta" class="bbc_url" title="External link" rel="nofollow external">https://owner.roku.c...ediaBrowserBeta</a><br><br>It updates the application to the server's new security standards and adds a new setting to hide the clock from the home screen.<br><span style="color: rgb(40,40,40)"><span style="font-family: helvetica">Instructions for Now TV users can be found here:</span></span><br><br><a href="http://mediabrowser.tv/community/index.php?/topic/689-how-to-install-media-browser-on-now-tv/" class="bbc_url" title="External link" rel="nofollow external">http://mediabrowser....wser-on-now-tv/</a><br><br><span style="color: rgb(40,40,40)"><span style="font-family: helvetica"><span style="font-size: 18px">Remember this is the only Roku Channel that officially represents the Media Browser project.</span></span></span><br><br><br><span style="color: rgb(40,40,40)"><span style="font-family: helvetica"><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/539b4fc800ccb_2.jpg" alt="Posted Image"></span></span></span><br><br><br><span style="color: rgb(40,40,40)"><span style="font-family: helvetica"><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/539b4fce8f841_3.jpg" alt="Posted Image"></span></span></span></div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5923</wp:post_id>
<wp:post_date>2014-08-09 04:00:00</wp:post_date>
<wp:post_date_gmt>2014-08-09 04:00:00</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>roku-beta-1-25-released</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_thumbnail_id</wp:meta_key>
<wp:meta_value><![CDATA[5924]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_vc_post_settings</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Try the new League of Legends channel</title>
<link>https://emby.media/try-the-new-league-of-legends-channel/</link>
<pubDate>Mon, 10 Nov 2014 05:00:00 +0000</pubDate>
<dc:creator><![CDATA[Emby]]></dc:creator>
<guid isPermaLink="false">http://emby.media/try-the-new-league-of-legends-channel/</guid>
<description></description>
<content:encoded><![CDATA[<div>Thanks to the efforts of Hamstercat, we now have a League of Legends channel available in the plugin catalog.<br><br>League of Legends is a multi-player online battle arena video game developed and published by Riot Games for Microsoft Windows and Mac OS X, inspired by the mod Defense of the Ancients for the video game Warcraft III: The Frozen Throne.<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/5462cc7d88947_LeagueofLegends.png" alt="Posted Image"></span></div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5845</wp:post_id>
<wp:post_date>2014-11-10 05:00:00</wp:post_date>
<wp:post_date_gmt>2014-11-10 05:00:00</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>try-the-new-league-of-legends-channel</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_thumbnail_id</wp:meta_key>
<wp:meta_value><![CDATA[5846]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_vc_post_settings</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Try Media Browser Server for Ubuntu</title>
<link>https://emby.media/try-media-browser-server-for-ubuntu/</link>
<pubDate>Mon, 10 Nov 2014 05:00:00 +0000</pubDate>
<dc:creator><![CDATA[Emby]]></dc:creator>
<guid isPermaLink="false">http://emby.media/try-media-browser-server-for-ubuntu/</guid>
<description></description>
<content:encoded><![CDATA[<div>Thanks to the efforts of hurricanehernandez, we now have an Ubuntu package available.<br><br><span style="font-size: 24px">Installation</span><br><br>See <a href="http://mediabrowser.tv/download" class="bbc_url" title="External link" rel="nofollow external">http://mediabrowser.tv/download</a><br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/54620be0631e3_logoubuntu_st_noblack_orangehex.png" alt="Posted Image"></span><br><br><br>The leading platform for scale-out computing, Ubuntu Server helps you make the most of your infrastructure. Whether you want to deploy an OpenStack cloud, a Hadoop cluster or a 50,000-node render farm, Ubuntu Server delivers the best value scale-out performance available.</div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5847</wp:post_id>
<wp:post_date>2014-11-10 05:00:00</wp:post_date>
<wp:post_date_gmt>2014-11-10 05:00:00</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>try-media-browser-server-for-ubuntu</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_thumbnail_id</wp:meta_key>
<wp:meta_value><![CDATA[5848]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_vc_post_settings</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Media Browser Win8.1 App v3.0 released</title>
<link>https://emby.media/media-browser-win8-1-app-v3-0-released/</link>
<pubDate>Sun, 09 Nov 2014 19:55:00 +0000</pubDate>
<dc:creator><![CDATA[Emby]]></dc:creator>
<guid isPermaLink="false">http://emby.media/media-browser-win8-1-app-v3-0-released/</guid>
<description></description>
<content:encoded><![CDATA[<div>We're pleased to announce the next version of Media Browser for Windows 8.1<br><br>To match the new features of the server, the app now supports Media Browser Connect, and with that, multiple servers.<br>We've also added support for automatic Camera Upload, hidden accounts, a number of bug fixes, interface, and playback improvements.<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/601/545e713abfbfc_MB1.png" alt="Posted Image"></span><br><br><br><strong class="bbc">Camera Upload:</strong><br><br>This feature is enabled from the server, in the device section. Once enabled, the app will upload pictures from the device to your library on the server.<br><br>Get it here: <a href="http://apps.microsoft.com/windows/en-us/app/media-browser/ad55a2f0-9897-47bd-8944-bed3aefd5d06" class="bbc_url" title="External link" rel="nofollow external">http://apps.microsoft.com/windows/en-us/app/media-browser/ad55a2f0-9897-47bd-8944-bed3aefd5d06</a></div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5849</wp:post_id>
<wp:post_date>2014-11-09 19:55:00</wp:post_date>
<wp:post_date_gmt>2014-11-09 19:55:00</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>media-browser-win8-1-app-v3-0-released</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_thumbnail_id</wp:meta_key>
<wp:meta_value><![CDATA[5850]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_vc_post_settings</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Try the Media Browser for Roku Beta Channel</title>
<link>https://emby.media/try-the-media-browser-for-roku-beta-channel/</link>
<pubDate>Sat, 08 Nov 2014 05:00:00 +0000</pubDate>
<dc:creator><![CDATA[Emby]]></dc:creator>
<guid isPermaLink="false">http://emby.media/try-the-media-browser-for-roku-beta-channel/</guid>
<description></description>
<content:encoded><![CDATA[<div>The Roku beta channel has been updated with the new Media Browser Connect feature, including a friendly pin code sign in.<br><br>Try it, enjoy it, and tell us about it. Look for an update to the public channel soon.<br><br><br><span style="font-size: 24px">Installation</span><br><br><a href="https://owner.roku.com/add/MediaBrowserBeta" class="bbc_url" title="External link" rel="nofollow external">https://owner.roku.com/add/MediaBrowserBeta</a><br><br><br><span style="font-size: 24px">Now TV Installation Guide</span><br><br><a href="http://mediabrowser.tv/community/index.php?/topic/689-how-to-install-media-browser-on-now-tv" class="bbc_url" title="External link" rel="nofollow external">http://mediabrowser.tv/community/index.php?/topic/689-how-to-install-media-browser-on-now-tv</a><br><br><br><span style="font-size: 24px">Contribute to Media Browser for Roku</span><br><br>Brightscript is very easy to learn. Any moderately skilled developer can pick it up quickly. Let us know if you'd like to help out.<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/5460452c9a016_539b4fc0ecdbd_1.jpg" alt="Posted Image"></span><br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/5460453a5aaeb_539b4fc800ccb_2.jpg" alt="Posted Image"></span></div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5851</wp:post_id>
<wp:post_date>2014-11-08 05:00:00</wp:post_date>
<wp:post_date_gmt>2014-11-08 05:00:00</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>try-the-media-browser-for-roku-beta-channel</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_thumbnail_id</wp:meta_key>
<wp:meta_value><![CDATA[5852]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_vc_post_settings</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Try Media Browser Server for FreeBSD</title>
<link>https://emby.media/try-media-browser-server-for-freebsd/</link>
<pubDate>Fri, 07 Nov 2014 05:00:00 +0000</pubDate>
<dc:creator><![CDATA[Emby]]></dc:creator>
<guid isPermaLink="false">http://emby.media/try-media-browser-server-for-freebsd/</guid>
<description></description>
<content:encoded><![CDATA[<div>Thanks to the efforts of woodsb02 and josh4trunks, we now have a FreeBSD package available.<br><br><span style="font-size: 24px">Installation</span><br><br>See <a href="http://mediabrowser.tv/download" class="bbc_url" title="External link" rel="nofollow external">http://mediabrowser.tv/download</a><br><br>Enjoy, and stay tuned for a FreeNAS plugin.<br><br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/545ebda5cbaad_logofullthumb.png" alt="Posted Image"></span></div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5853</wp:post_id>
<wp:post_date>2014-11-07 05:00:00</wp:post_date>
<wp:post_date_gmt>2014-11-07 05:00:00</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>try-media-browser-server-for-freebsd</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_thumbnail_id</wp:meta_key>
<wp:meta_value><![CDATA[5854]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_vc_post_settings</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Media Browser on the Digital Lifestyle Podcast</title>
<link>https://emby.media/media-browser-on-the-digital-lifestyle-podcast/</link>
<pubDate>Wed, 05 Nov 2014 13:51:21 +0000</pubDate>
<dc:creator><![CDATA[Emby]]></dc:creator>
<guid isPermaLink="false">http://emby.media/media-browser-on-the-digital-lifestyle-podcast/</guid>
<description></description>
<content:encoded><![CDATA[<div>Earlier this week, Luke and myself were on the Digital Lifestyle's podcast talking about Media Browser and what's coming up, including the new Media Browser Connect that went into beta last week.<br><br>If you want to take a listen to it, head over the TDL website <a href="http://thedigitallifestyle.com/w/index.php/2014/11/05/the-digital-lifestyle-show-474-media-browser-special/" class="bbc_url" title="External link" rel="nofollow external">http://thedigitallifestyle.com/w/index.php/2014/11/05/the-digital-lifestyle-show-474-media-browser-special/</a></div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5855</wp:post_id>
<wp:post_date>2014-11-05 13:51:21</wp:post_date>
<wp:post_date_gmt>2014-11-05 13:51:21</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>media-browser-on-the-digital-lifestyle-podcast</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_thumbnail_id</wp:meta_key>
<wp:meta_value><![CDATA[5856]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_vc_post_settings</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Media Browser Server 3.0.5416 Beta Released</title>
<link>https://emby.media/media-browser-server-3-0-5416-beta-released/</link>
<pubDate>Wed, 29 Oct 2014 04:00:00 +0000</pubDate>
<dc:creator><![CDATA[Emby]]></dc:creator>
<guid isPermaLink="false">http://emby.media/media-browser-server-3-0-5416-beta-released/</guid>
<description></description>
<content:encoded><![CDATA[<div><span style="font-size: 24px">Introducing Media Browser Connect</span><br><br>As many of you know, we have a lot of really smart people here in our community, and great things happen when we put our minds together. We've been longing for a way to make it easier to access your server when you're away from home, and we're pleased to announce our solution. It's Media Browser Connect.<br><br>Now you can use your forum username and password to sign into any Media Browser app from any location, and it will know how to locate your server in the most efficient way possible. This means you no longer have to fumble with IP addresses. Not only does this make it easier to access your server, it also makes it easier to mange multiple servers and <strong class="bbc">share with your friends</strong>.<br><br><br><span style="font-size: 24px">So how does it work?</span><br><br>It's very easy. For existing users that you've already setup, simply edit their user profile and enter their forum username or email address. The local server account will then be linked to the forum account. Once they accept the invitation email, they'll then be able to use their forum credentials to sign in to your server, without having to know the server's IP address.<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/5452981e6e667_Untitled.png" alt="Posted Image"></span><br><br>In the user list, you'll see a cloud to indicate the user has a Connect account.<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/5452985d55657_Untitled.png" alt="Posted Image"></span><br><br><br><span style="font-size: 24px">Invite Your Friends</span><br><br>You'll notice a new Guests section on the user management page.<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/54529b1f8e797_Untitled.png" alt="Posted Image"></span><br><br>What are guests? Guests are forum users that you've invited to use your server. Simply click the plus button next to Guests, and you'll be presented with a popup to invite a forum user. You can even choose which libraries they'll have access to.<br><br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/54529b77acc8a_Untitled.png" alt="Posted Image"></span><br><br><br>By default guests have very limited permissions, and you'll have full control over what they'll have access to.<br><br><span style="font-size: 24px">Local Accounts, Cloud Accounts - You Decide</span><br><br>While we expect this feature to be very popular, we know that many prefer local accounts and we're pleased to say they're not going anywhere. Both of the features work very well together and we expect to continue to improve on this.<br><br><span style="font-size: 24px">App Support</span><br><br>This has been a large team effort and you can expect to see updates for all of our apps soon. Here's a few teasers to wet your appetite.<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/54529eba9748d_54501835aa6c0_mbconnect.png" alt="Posted Image"></span><br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/5452a480e8cc2_Untitled.png" alt="Posted Image"></span><br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/5452a70917ba5_MBConnectFirstRun.png" alt="Posted Image"></span><br><br><br><span style="font-size: 24px">Try the Hosted Web Client</span><br><br>We now have a hosted version of the web client at:<br><br><a href="http://app.mediabrowser.tv" class="bbc_url" title="External link" rel="nofollow external">http://app.mediabrowser.tv</a><br><br>Simply use your Connect (forum) login, and then you can access any of your servers (owned or shared).<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/54529050a5167_Untitled.png" alt="Posted Image"></span><br><br>Once you sign in, you'll see the very same web client you've come to know and love. Switching servers is easy:<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/5452906b7ead2_Untitled.png" alt="Posted Image"></span><br><br><br>As you can see the layout is currently limited to one server at a time, but this is only the beginning. We know that many of you are clamoring for multi-server presentations, and we intend to deliver that in future releases.<br><br>The hosted web client has one unique advantage over the local version. It features <strong class="bbc">automatic network switching</strong> from LAN to WAN and vice versa, on the fly as needed. You might login initially within your home network, and then leave the house and transition to mobile. The app will handle it for you, all on the fly. The hosted web client is truly <strong class="bbc">one url, any time, any location</strong>.<br><br><strong class="bbc">Important Note</strong>: The hosted web client is served via static HTML and JavaScript. All communication occurs directly from your browser to your Media Browser Server, just like the regular web client. We do not have any external servers that send requests to your home server, and we do not collect any information about your media library.<br><br><span style="font-size: 24px"><span style="font-size: 24px"><span style="font-size: 24px"><span style="font-size: 24px">New Devices Section</span></span></span></span><br><br>There is a new Devices section in the server dashboard. Many of you have asked for device-specific settings and we now have a place to put those. For starters, you can configure a friendly name for each device, to override the name reported by it.<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/545283933127e_Untitled.png" alt="Posted Image"></span><br><br><span style="font-size: 24px"><span style="font-size: 24px"><span style="font-size: 24px"><span style="font-size: 24px">Automatic Camera Image Uploading</span></span></span></span><br><br>You'll notice the Devices section has a Camera Upload tab. Camera upload allows automatic uploading of images from your smartphones and tablets. It's easy! Just enable the devices you'd like to use it for, and voila!<br><br>Then go out and take some pictures, and when you come home the images will begin uploading. It's a fully automated feature. All of our mobile apps will be updated soon to support this.<br><br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/545286d63f624_Untitled.png" alt="Posted Image"></span><br><br>If you like, you can even specify a custom upload path for each device to keep albums separated. Here is a preview of image uploading on windows phone:<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/5452a65d8bfe3_PhotoUpload.png" alt="Posted Image"></span><br><br><br><span style="font-size: 24px"><span style="font-size: 24px"><span style="font-size: 24px"><span style="font-size: 24px">New Parental Control Features</span></span></span></span><br><br>Now you can define access schedules for users to control when they have access to your server. It's very easy and only takes a few clicks to setup.<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/54527f434bea6_Untitled.png" alt="Posted Image"></span><br><br><br>When users try to use the server during restricted hours, they'll see a friendly message indicating that they'll need to come back later.<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/54527f7cf1e34_Untitled.png" alt="Posted Image"></span><br><br>Expect to see more parental control features in upcoming releases.<br><br><br><span style="font-size: 24px"><span style="font-size: 24px"><span style="font-size: 24px"><span style="font-size: 24px">New Trailer Features</span></span></span></span><br><br>We know that trailers is a big part of movie watching. The Movies section of the web client now has a Trailers tab, which will pull trailers from all available sources (channels, files, etc).<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/54527cc4546f7_Untitled.png" alt="Posted Image"></span><br><br><br>There's even a new nifty Trailer Reel button. What is the trailer reel? It's the ability to create a long running playlist of random movie trailers. This makes for great background video while you do the dishes.<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/54527d6b4598d_Untitled.png" alt="Posted Image"></span><br><br><br>The best part about the trailer reel feature is that remote control is fully supported. You can send a trailer reel to any Media Browser app that accepts remote control commands.<br><br><br><span style="font-size: 24px"><span style="font-size: 24px"><span style="font-size: 24px"><span style="font-size: 24px">DLNA Improvements</span></span></span></span><br><br>You'll notice better dynamic category images that are based on the content within your library.<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/5452f848194b9_Screenshot_20141030224446.png" alt="Posted Image"></span><br><br>Movies that have trailers or extras are now displayed as folders, allowing you to play the main feature or any of the extras from within the DLNA client interface.<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/5452f83e368b1_Screenshot_20141030224508.png" alt="Posted Image"></span><br><br>Also, big thanks to <strong class="bbc">FuFa</strong> for his work in helping improve our Panasonic device profile, and Happy2Play for lending some of his expertise.<br><br><br><span style="font-size: 24px"><span style="font-size: 24px">Live TV Improvements</span></span><br><br>We've been working hard with <strong class="bbc">Krustyreturns</strong> and <strong class="bbc">SiliconDust</strong>, and ServerWMC users are in for a treat. If you have an HDHomerun that supports Dlna, we now use the SiliconDust api to stream directly from the tuner hardware, thereby bypassing Windows Media Center's wtv conversion process. You will notice faster video start times, increased reliability, decreased resource consumption, and improved video quality. Big thanks to <strong class="bbc">krustyreturns</strong> for his efforts on this!<br><br><br><span style="font-size: 24px"><span style="font-size: 24px">New Argus Live TV Plugin</span></span><br><br>We're happy to welcome Argus to the community, giving you yet another choice of Live TV providers. Thanks to <strong class="bbc">Sven </strong>for his work on this. Check it out in the plugin catalog.<br><br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/54526e9eb40fe_Untitled.png" alt="Posted Image"></span><br><br><br><span style="font-size: 24px"><span style="font-size: 24px">Latest Item Settings</span></span><br><br>Some users have reported that they'd prefer not to have photos or music showing up in their latest items lists. This is now easily configured in your user preferences and will take effect within any Media Browser app that displays a global Latest Media section.<br><br><span rel="lightbox"><img class="bbc_img" src="http://mediabrowser.tv/community/uploads/inline/2/54526d588648f_Untitled.png" alt="Posted Image"></span><br><br><br><span style="font-size: 24px">Web Client Photo Slideshow:</span><br><br>Click on any image within a photo album and you'll be treated to a visual slideshow. Best of all, it works great when you're mobile just by swiping your fingers left and right.<br><br><a href="http://mediabrowser.tv/community/uploads/inline/2/54526e1af41ca_Untitled.png" class="bbc_url" title="External link" rel="nofollow external">http://mediabrowser.tv/community/uploads/inline/2/54526e1af41ca_Untitled.png</a><br><br><br><br><span style="font-size: 24px">Support for .STRM files:</span><br><br>These are a longtime favorite of Xbmc users. Now you can create stub files in your library containing a single media url, and the content will be displayed like any other video. Clients will then stream the content from the remote url.<br><br>Usage is simple. Create a normal text-file and rename the .txt extension to .strm then open it up with a text-editor (like Notepad in Microsoft Windows) and input the the direct url link of the stream.<br><br>For example:<pre class="prettyprint lang-auto linenums:0">
http://host/path/stream
</pre><span style="font-size: 24px">Other Improvements:</span><br><ul class="bbc"><li>Upgraded to fanart v3 api</li><li>Support Imdb url's within NFO's that appear after the closing xml tag</li></ul><span style="font-size: 24px">Bugs Resolved:</span><br><ul class="bbc"><li>Music videos not showing up on artist page</li><li>Artists with & in their name not displayed correctly</li><li>Upcoming TV not displaying certain content</li><li>"set" tag not getting saved in NFO's in certain situations</li></ul><span style="font-size: 24px">Fully Open and Community Built</span><br><br>As you all know we're committed to open source. We have developer libraries for Media Browser Connect ready to go for a number of platforms. We want to make it easy as possible for new developers to integrate or interact with our API. Expect to see more information about this soon.<br><br><br><span style="font-size: 24px">Join the Community</span><br><br>Help us build new channels and apps. We're looking for more developers for all software platforms. Just drop us a line.</div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5857</wp:post_id>
<wp:post_date>2014-10-29 04:00:00</wp:post_date>
<wp:post_date_gmt>2014-10-29 04:00:00</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>media-browser-server-3-0-5416-beta-released</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_thumbnail_id</wp:meta_key>
<wp:meta_value><![CDATA[5858]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_oembed_4776ef7ab392cbc0e6638139b78b3370</wp:meta_key>
<wp:meta_value><![CDATA[{{unknown}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_vc_post_settings</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Xenon Theme For MBC Brings you the Shortlist</title>
<link>https://emby.media/xenon-theme-for-mbc-brings-you-the-shortlist/</link>
<pubDate>Mon, 27 Oct 2014 19:23:19 +0000</pubDate>
<dc:creator><![CDATA[Emby]]></dc:creator>
<guid isPermaLink="false">http://emby.media/xenon-theme-for-mbc-brings-you-the-shortlist/</guid>
<description></description>
<content:encoded><![CDATA[<div><p class="bbc_center"><span style="font-size: 18px"><span class="bbc_underline"><span style="color: #0000cd"><strong class="bbc">XENON 1.0.0.15 BRINGS A NEW FEATURE TO MBC - SHORTLIST</strong></span></span></span></p><br><p class="bbc_center"><span style="color: #0000cd"><strong class="bbc">For Those Times When you Just Can't Decide What to Watch!!</strong></span></p><br>The New Shortlist feature, only available in Xenon allows you to pick and chose content via the Context Menu (Asterix * Key) and Add or Remove Items from your newly created shortlist.<br><br>It means that you can select Movies throughout any of your collections and add them to a seperate list, for those times when it's difficult to decide what move to watch.<br><br>This is the initial release and there is a lot more to come from this feature, however at the moment there is great functionality.<br><br>Here's some Screenies to wet the appetite!!<br><br>Enjoy<br><br><strong class="bbc">Pressing * on your remote or keyboard brings up the context menu and now allows you to add/remove items from the Shortlist</strong><br><br><br><strong class="bbc">Once you have chosen some movies, you need to click on the Shortlist Icon in the Config Panel at the Top Right Corner</strong><br><br><br><br><strong class="bbc">View your Shortlist</strong><br><br><br><br><strong class="bbc">and if you wish to remove items from it, simply press the * Key and select Remove from Shortlist Option</strong><br><br><br><strong class="bbc">There are options to Close or Clear your Shortlist.</strong><br><br><strong class="bbc">The Shortlist Resets itself if you exit MBC.</strong><div id="attach_wrap" class="rounded clearfix">
<h4>Attached thumbnail(s)</h4>
<ul><li class="">
<a class="resized_img" rel="lightbox[129]" id="ipb-attach-url-4277-0-22700400-1430601006" href="http://emby.media/community/uploads/monthly_10_2014/blogentry-71-0-28004400-1414523704.png" title="AddToShortlist.png - Size: 721.53KB, Downloads: 1"><img src="http://emby.media/community/uploads/monthly_10_2014/blogentry-71-0-28004400-1414523704_thumb.png" id="ipb-attach-img-4277-0-22700400-1430601006" style="width:100;height:59" class="attach" width="100" height="59" alt="Attached Image"></a>
</li>
<li class="">
<a class="resized_img" rel="lightbox[129]" id="ipb-attach-url-4278-0-22751400-1430601006" href="http://emby.media/community/uploads/monthly_10_2014/blogentry-71-0-14245600-1414523735.png" title="Show Shortlist Icon.png - Size: 965.02KB, Downloads: 0"><img src="http://emby.media/community/uploads/monthly_10_2014/blogentry-71-0-14245600-1414523735_thumb.png" id="ipb-attach-img-4278-0-22751400-1430601006" style="width:100;height:59" class="attach" width="100" height="59" alt="Attached Image"></a>
</li>
<li class="">
<a class="resized_img" rel="lightbox[129]" id="ipb-attach-url-4279-0-22756100-1430601006" href="http://emby.media/community/uploads/monthly_10_2014/blogentry-71-0-39917100-1414523745.png" title="The Shortlist.png - Size: 792.59KB, Downloads: 0"><img src="http://emby.media/community/uploads/monthly_10_2014/blogentry-71-0-39917100-1414523745_thumb.png" id="ipb-attach-img-4279-0-22756100-1430601006" style="width:100;height:59" class="attach" width="100" height="59" alt="Attached Image"></a>
</li>
<li class="">
<a class="resized_img" rel="lightbox[129]" id="ipb-attach-url-4280-0-22760100-1430601006" href="http://emby.media/community/uploads/monthly_10_2014/blogentry-71-0-79708100-1414523758.png" title="Remove From Shortlist.png - Size: 542.33KB, Downloads: 0"><img src="http://emby.media/community/uploads/monthly_10_2014/blogentry-71-0-79708100-1414523758_thumb.png" id="ipb-attach-img-4280-0-22760100-1430601006" style="width:100;height:59" class="attach" width="100" height="59" alt="Attached Image"></a>
</li>
</ul></div></div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5859</wp:post_id>
<wp:post_date>2014-10-27 19:23:19</wp:post_date>
<wp:post_date_gmt>2014-10-27 19:23:19</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>xenon-theme-for-mbc-brings-you-the-shortlist</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_thumbnail_id</wp:meta_key>
<wp:meta_value><![CDATA[5860]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_vc_post_settings</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>£5 - 48 Hour Sale!!! - Buy the Media Browser TV Theme Video, Movie Theme Video, Tv Theme Song and Movie Theme Song plugins for £5</title>
<link>https://emby.media/5-48-hour-sale-buy-the-media-browser-tv-theme-video-movie-theme-video-tv-theme-song-and-movie-theme-song-plugins-for-5/</link>
<pubDate>Fri, 24 Oct 2014 20:52:00 +0000</pubDate>
<dc:creator><![CDATA[Emby]]></dc:creator>
<guid isPermaLink="false">http://emby.media/5-48-hour-sale-buy-the-media-browser-tv-theme-video-movie-theme-video-tv-theme-song-and-movie-theme-song-plugins-for-5/</guid>
<description></description>
<content:encoded><![CDATA[<div><p class="bbc_center"><span style="font-size: 18px"><strong class="bbc"><a href="http://www.ballingtons.com/products" class="bbc_url" title="External link" rel="nofollow external">Click here to buy all 4 plugins for £5!!!</a><br>Just select the "MB3 Theme Media 4 Pack" and complete the PayPal Checkout using your supporter key email address and your licences will be automatically added</strong></span></p><br><p class="bbc_center"><span rel="lightbox"><img class="bbc_img" src="http://www.ballingtons.com/plugins/multibuy/MultiBuy.png" alt="Posted Image"></span></p></div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5861</wp:post_id>
<wp:post_date>2014-10-24 20:52:00</wp:post_date>
<wp:post_date_gmt>2014-10-24 20:52:00</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>5-48-hour-sale-buy-the-media-browser-tv-theme-video-movie-theme-video-tv-theme-song-and-movie-theme-song-plugins-for-5</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_thumbnail_id</wp:meta_key>
<wp:meta_value><![CDATA[5862]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_vc_post_settings</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>One Year of Developing XBMB3C</title>
<link>https://emby.media/one-year-of-developing-xbmb3c/</link>
<pubDate>Fri, 24 Oct 2014 16:44:44 +0000</pubDate>
<dc:creator><![CDATA[Emby]]></dc:creator>
<guid isPermaLink="false">http://emby.media/one-year-of-developing-xbmb3c/</guid>
<description></description>
<content:encoded><![CDATA[<div>One year ago, I sent Luke a PM asking him to look into a Media Browser add-on for Xbmc.<br><br>I really didn't know Luke at the time - otherwise I would have known that he would push me to do it myself. Luke is good at that!<br><br>At the time:<ul class="bbc"><li>I didn't know Python</li><li>I didn't know anything about working with web APIs, XBMC API or MB3 API</li><li>I didn't know how to use GitHub</li></ul>I made a little progress - got lists to display and files to play. I thought I was about done...<br><br>And then users and other developers started to get involved.<br><br>@null_pointer came on board in January, offering *much* more programming experience. @im85288 came on shortly after, an expert in skinning. @elcabong joined, and contributed mods to his skins. More recently we have been joined by @gelsner, @marcelveldt, @azeos and @cgrey000.<br><br>We have devs from the world over: Argentina, Australia, England, Germany, The Netherlands and The USA.<br><br>Our users have continuously provided new ideas, and had the patience to work through and test the implementation of those ideas.<br><br>We now have TEN beautiful skins modified just for MediaBrowser.<br><br>The next year will bring more changes - with the release of Kodi coming, we will be re-branding simply as MediaBrowser <span style="font-size: 8px">for Kodi.</span><br><br>With Kodi branding itself as more of an Open Source Roku - the idea of using MediaBrowser as a local media database back end makes more sense than ever.<br><br>In short - this has been the most fun I have had with an online community since my old BBS days.<br><br>Thank You!<br><br>xnappo<br><br><iframe width="100%" height="550" frameborder="0" src="http://imgur.com/a/jzCr3/embed"></iframe></div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5863</wp:post_id>
<wp:post_date>2014-10-24 16:44:44</wp:post_date>
<wp:post_date_gmt>2014-10-24 16:44:44</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>one-year-of-developing-xbmb3c</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_thumbnail_id</wp:meta_key>
<wp:meta_value><![CDATA[5864]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>