Search the Community
Showing results for tags 'Playlist'.
-
So it would be nice if we could choose to hide libraries from the top instead of being forced to see it. See like in my case I would like to have movie collections and playlist but without them appearing on the top in libraries. And I was thinking that it would be a nice feature to be able to hide them if preferred because you can already access them from other areas. For examples for playlist you can just go under the music library and tap on playlist, or the collections is under movies. I'm not saying to completely remove them but to give the option to hide them. That would be a feature I would like to see in Emby
-
Emby's recognition and use of .m3u playlist files is a major advantage over Plex. I think they could be better used, though. Currently, all playlists are accessible via a Playlists 'library' on the Emby home page, or the Playlists view within a library. But all playlists, no matter where the .m3u files reside, are gathered together in one monolithic page. If I want to find a Dvorak Symphony to play, I have to sift through the entire list. I think it would be a better, more usable model, if it worked something like this: I have a box set of all 9 Beethoven symphonies. Since each symphony consists of 4 or 5 tracks, I created a .m3u file for each symphony. It would be nice if, when viewing the Album Detail page, I had the option of seeing the discrete list of tracks (the current view) or a playlist view, which would look something like this: There are cases where a CD may have a 4-track symphony as well as some single-track works. I attempted to show how this might appear in the mock-up. I can think of 3 ways to go about this. My mock-up includes buttons for 'Disc View' and 'Playlist View.' The Disc View button reveals the current discrete track list. The Playlist View button reveals my proposed view. Emby should remember this selection on a per-album basis. There could be a Library-level setting to enable/disable Playlist view for the entire library. Since discrete tracks are displayed the same way in either mode, there may be no need for the buttons at all. If at least one .m3u file exists in the media folder, the UI displays it in the new format. Would people want/need the option to switch views? I don't know. I would also expect that the 'shuffle' function would keep playlisted groupings (like entire symphonies) intact, so Beethoven's 9 intact symphonies would be played in random order, but each symphony is internally not shuffled. What do you think?
-
So currently when downloading a playlist for offline mode, you get the songs individually instead in a playlist. So I was wondering if it was possible to fix that and download a playlist for offline in the order that it is in. So that it’s just as when online, just press and play the songs in order.
-
Hi, I noticed this evening that music files containing special characters (é, è, ù, ç...) are not recognized when included within m3u playlists. For instance, a playlists containing: #EXTM3U E:\Laurent\Musique\Music\FLAC\Jean Michel Jarre\Jean Michel Jarre - Les Chants Magnétiques (Part 1).flac E:\Laurent\Musique\Music\FLAC\Jean Michel Jarre\Jean Michel Jarre - Les Chants Magnétiques (Part 2).flac E:\Laurent\Musique\Music\FLAC\Jean Michel Jarre\Jean Michel Jarre - Les Chants Magnétiques (Part 3).flac appears to be empty in the browser. When adding manually these files to the playlist from the browser, the resulting m3u file looks like: #EXTM3U #EXTALB:Les Chants Magnétiques #EXTART:Jean Michel Jarre #EXTINF:1078,Les Chants Magnétiques (Part 1) ..\..\Music\FLAC\Jean Michel Jarre\Jean Michel Jarre - Les Chants Magnétiques (Part 1).flac #EXTALB:Les Chants Magnétiques #EXTART:Jean Michel Jarre #EXTINF:238,Les Chants Magnétiques (Part 2) ..\..\Music\FLAC\Jean Michel Jarre\Jean Michel Jarre - Les Chants Magnétiques (Part 2).flac It seems that ISO 8859-1 encoded playlists m3u are not well recognized and that UTF-8 encoded playlists m3u work well. Is this the normal behavior ? Regards. Laurent.
-
Hi, I just updated to the latest version of Emby (4.0.0.2) and everything seems to work fine but one problem arises in the My Media overview there is now a section called Playlists and i want it gone. it wasn't there before and should be gone really. Already i've tried to hide/remove it by right-clicking on it but no such option is available. Screenshot: https://i.imgur.com/2FZx2sm.png Am i overlooking something? Thanks!
-
Hello, I haven't been using playlists for a while because of the problem with ET for Xbox with large lists. I went to try and play today and noticed that all of the playlists have been reduced to about 40 items. Has anybody else seen this happen and is there a way to recover?
-
I couldn't find anything in the forums on this topic, so hopefully this isn't covered somewhere that I missed. I'm currently running Emby beta for Roku, 3.0.131. I only have movies on my server. No music. Some of these are in collections. When I put a movie into a playlist that is also in a collection, the ENTIRE collection appears on the playlist. If I look at the playlist on the web version of Emby, only the movies I selected show up in the playlist; no collections. So it seems to work in the web version, but not in Roku. Is there a setting I'm missing or is this something that may get fixed in the future?
-
Hola. Se me presentó un error al querer reproducir algun playlist en una de mis pantallas (solamente en esa). El error dice: "Error de reproducción No tienes disponible ninguna calidad por ahora. Intentalo más tarde o consulta con el administrador para más detalles". Supongo que es la traducción del error "no compatible streams are currently available" Adjunto los logs del servidor, si alguno hace falta mas tarde los adjunto al hilo. Muchas gracias por el apoyo. embyserver.txt ffmpeg-transcode-213c27f0-4ee6-4b47-bedc-f6d21770054d.txt
-
I've made a few music playlists, but I don't see a "playlist" option in either the main menu or in the music menu... where can I find it?
-
I just installed version 3.5.2 on FreeNAS which I had to install from scratch, so I'm building up some playlists again. Part way through making playlists, I decided to take a more secure approach and create a separate admin account from my viewing account (which now has no admin rights). I noticed that once I took away admin from my viewing account, I have a more limited list of actions I can perform on my playlists; specifically image and metadata editing are missing. Some functions such as 'subtitles' maybe should require an admin because that would affect global content. As I understand it, the playlists are owned by my viewing account and even the admin doesn't see them when I login under that account. Since my viewer account owns the playlists, it should have full admin rights to modify it. Viewer's menu Viewer(with admin rights)'s Menu I didn't find any other posts about this quirk. Is this intended or a bug?
-
Ability to see total runtime in days-hours-mins instead of just minutes?
riothamus posted a topic in Feature Requests
Currently, the playlist will report the total runtime of all of its items in just total minutes. Could we have an option to show days - hours - minutes as well (or instead?). Here is a Bash function that I use that calculates total minutes into the above format. The same math could be used in Emby: function show_time () { num=$1/1000 min=0 hour=0 day=0 if((num>59));then ((sec=num%60)) ((num=num/60)) if((num>59));then ((min=num%60)) ((num=num/60)) if((num>23));then ((hour=num%24)) ((day=num/24)) else ((hour=num)) fi else ((min=num)) fi else ((sec=num)) fi echo "$day"d "$hour"h "$min"m "$sec"s } -
I am running a Fedora server that mounts my media over an NFS share with read-only rights to the data. For some reason, I have playlists that have been automagically generated that I did not create. I attempt to remove them via the web app, and they disappear from the Playlists page for about 5 - 10 minutes. But if I go back to the playlists tab again, then the ones that I had removed are back again. Has anyone else experienced this before?
-
Just a question on the number of items a playlist can contain with regards to a music playlist in this case. Is there a limit of 200 items for a music playlist? I'm asking because if I go one song over 200 abnormal playback will happen, at least in the browser(Edge, IE). At some point in the list, clicking an item will cause the next item in the list to play. If I continue to add more songs it will continue to skew the playback by the number of items over the 200 point until I get towards the bottom of the list than it will start playing the first song. The now playing does correctly display the item that is playing.
-
Duplicate Emby Plugin/feature - TV guide layout for media playback
StingerMeGood posted a topic in Feature Requests
Hello, I'm not sure if this exists but I have merely overlooked it. If I have please point me in the right direction. My memory is shot but I am pretty sure I used a plugin for Emby that did this waaay back in the day. Firstly, I use Emby for WMC. I am wondering if a feature could be added / plugin created that would display your media in a style like the TV Guide, having multiple channels, and displaying media randomly for each channel. You could configure all of the channels by naming them what you want, and showing what media folders you wanted on each channel. The plugin would then create a random playlist for each channel. Ideally, it would only play items from the unplayed content, possibly make this an option. It would be great to sit down on a weekend and have Emby play random TV shows and movies for me, much like watching real TV (minus the garbage). My apologies if this has been requested before, and I simply didn't look hard enough. Cheers.- 4 replies
-
- media playback
- playlist
-
(and 3 more)
Tagged with:
-
Hello, I noticed that when using DLNA or Remote Control playback of ET for XBONE, the first song just repeats over and over. From the Web Client, I can click >> to get the next song to play, but then it repeats as well. From the ET for Mobile client, I cannot click >> (it is grayed out). I also tried DLNA directly to my receiver (Denon AVR5100) and the same thing happens. I'm not seeing anything in the logs, so I'm not sure this is the correct log. Please let me know if you need a different one. Thanks! Jason ServerLog.txt
-
Is there a limit to the number of items that will appear/play in a Playlist? On four different devices and in both the stable and beta Emby apps, my playlists appear to be limited to 20 items.
-
I have an album with 405 songs (all consecutively numbered). When I click on #1 and hit play, then go to the playing now list, it looks like this: I know about the arbitrary limit of playlist to 100 but when I click on 1, it should play through 100 no? Not 1, 2, 3, 4, 9, etc. I can work with 1-100, not this...ridiculousness.
-
How do you turn off the playlist on the dashboard?
-
It would be great to have full support of m3u playlists so that external playlist can be easily imported and modified through Emby. It would be a much stronger music server! Plex doesn't do that, so it would be a point in favour of Emby too
-
Hello, I am currently experiencing issues with the playback of Emby audio to a Chromecast Audio device. I use both the iOS and Android Apps and both have the same issue (also seen and tested on Google Chrome). When starting a playlist based on Shuffle (artist) or simply an album and casting this to my Chromecast audio the audio/stream stops after playing the first track. There is usually about 5 seconds left on the track but it cuts off completely. The next track is not started automatically and the playlist (which you usually see when playing on the local device: ipad/android) is empty. Simply pressing the "Next" button solves the playback and the next song will start, but this song also stops 5 seconds before the end. My wife doesn't seem to like having to press the next button after every song ;-) The versions which I am using are: Emby Server (Synology Based) - Version 3.3.0.0 Emby for iOS 1.4.9 Emby for Android Mobile 2.9.90 Firmware Chromecast audio: 1.30.111140 Both the Chromecast audio and the emby server have been restarted several times. I've uploaded the system log but I can't see a reference to the next song which is to be played.
- 15 replies
-
- synology
- chromecast
-
(and 2 more)
Tagged with:
-
Hello Community, The drive in my server recently crashed, but thankfully I have been using the Backup plugin, so restoring my config was easy. Everything is working perfectly, but I panicked when I went to play a music playlist, and they were all missing. I created a new playlist, and suddenly all the playlists reappeared. Relevied, I deleted the playlist I just started and all the playlists disappeared again. When I create a new playlist, the others appear, but only when I navigate to Music --> Playlists. If I use the hamburger menu and navigate directly to Playlists, they do not appear. Is there a glitch here or something I can do to make them work properly? Thanks, Jason
-
Hello all, Im runnig the following config: QNAP: TS-853A Hardware:CPU: Intel Celeron CPU N3160 @ 1.60Ghz RAM: 8 GB Software:Firmware version: 4.3.4.0486 Build 20180215 Emby Server: 3.3.1.0 ffmpeg: 3.4.2 Mono: 5.11.0 The Problems im having: Remote not accesebol/working as show below, cant forward, cant see anny details and cant go back If I want to play a hole album it will only play one song most of the time, I cant see the play list Emby is not cutting gables files and if they are cut in seperates there will be a break betwean them. Tanks in advance, Greatings, Spartan_GIV
-
Hi! I have a large media library with clips from different shows - sorted by the date they originally aired. I would like to find a way to be able to add all these clips to one place, sort them by date and then watch them chronologically on my phone. I have tried in a lot of ways, but I can't make it work. I spent years finding the airing date of every single clip and adding the date to the name, but in the Emby player the names of the clips are automatically changed to episode names, so even if I could find a place in Emby to add the files, I wouldn't be able to sort them correctly. Also, there are a lot of clips that come from the same episode, which just seems to confuse Emby. Please help me. How do I make Emby stop changing the names of my files? Is there a playlist (of something similar) function where I might be able to sort the clips by date? And if so - would I then be able to watch this "playlist" on my phone (e.g. on my way to work)?
- 16 replies
-
- Editing names
- Clips
-
(and 3 more)
Tagged with:
-
Hello, I would like to report an issue I am having with the playlists : sometimes, I can get the playlists as I click on the "Playlists" folder, but 99.9% of the time it takes more than 10min to display them. There are only 14 tracks in the first one and 3 in the second one. I guess it is the moment to build the playlists' names which takes so much time because, when I just want to add a track into one of them, the interface is populated after more than 5min : most of the time, the songs have ended before I can select the list where I want it to be added into ! You may understand that I cannot manage a playlist with such an issue. I tried to add just 2 track manually into the XML files, just for a try, but I can't see them. It may come from the cache management on the server side..? Emby server is v3.0.5871.0, running under MS-Windows 10 (French). I mostly use the Web Interface (generally under Edge). Please help ! Many thanks by advanced. B.R. Eric
-
Recently, maybe in the last couple months I noticed that when items are moved in a playlist, they are to the wrong location. What I mean is say I have the following playlists with 5 items: +------+ | 1 | +------+ | 2 | +------+ | 3 | +------+ | 4 | +------+ | 5 | +------+ If I try to move this item up to the third spot, after refreshing the page even though it's moved into the third spot, it will end up in the fourth spot. +------+ +------+ +------+ | | | | | | +------+ +------+ +------+ | | | | | | +------+ +------+ +------+ | | ^ | 3 | | | +------+ | +------+ Refresh +------+ | | | | | | 4 | +------+ | +------+ +------+ | 5 | + | | | | +------+ +------+ +------+ This happens every time and it's really irritating when editing playlists as items have to be moved into the spot one above where you want them. When you want to put an item in the first spot it makes things even more difficult.