Jump to content

Search the Community

Showing results for tags 'web client'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements
    • Emby Premiere Purchase/Subscription Support
    • Feature Requests
    • Tutorials and Guides
  • Emby Server
    • General/Windows
    • Android Server
    • Asustor
    • FreeBSD
    • Linux
    • NetGear ReadyNAS
    • MacOS
    • QNAP
    • Synology
    • TerraMaster NAS
    • Thecus
    • Western Digital
    • DLNA
    • Live TV
  • Emby Apps
    • Amazon Alexa
    • Android
    • Android TV / Fire TV
    • Windows & Xbox
    • Apple iOS / macOS
    • Apple TV
    • Kodi
    • LG Smart TV
    • Linux & Raspberry Pi
    • Roku
    • Samsung Smart TV
    • Sony PlayStation
    • Web App
    • Windows Media Center
    • Plugins
  • Language-specific support
    • Arabic
    • Dutch
    • French
    • German
    • Italian
    • Portuguese
    • Russian
    • Spanish
    • Swedish
  • Community Contributions
    • Ember for Emby
    • Fan Art & Videos
    • Tools and Utilities
    • Web App CSS
  • Testing Area
    • WMC UI (Beta)
  • Other
    • Non-Emby General Discussion
    • Developer API
    • Hardware
    • Media Clubs

Blogs

  • Emby Blog

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

  1. Emby Party is a solution for watching videos with multiple friends through your Emby web client. It requires no additional dependencies - only a device running Emby (presumably with good enough hardware for serving all the attendees, especially if you're transcoding) and at least one web browser. It consists in two halves: A server plugin and a web client module. They must be used together! Each half expects the other to be present. This is an experimental open source project. Feel free to fork and contribute pull requests and issues (my availability for fixing issues on my own may vary wildly and may be low in the near future). The source code and all known issues can be found in the github repository. Any information there should be considered the most up to date. Currently testing in Emby 4.8.10, Windows and Debian Bookworm (Linux), Firefox, Chrome and Edge. Features Hassle-free hosting: Doesn't matter who creates the party. Whoever initiates playback while in a party transparently becomes the party host, and host is reassigned if they leave. No need to recreate the party for someone else to host something later. The hosts controls the party video and video position. Video access permission check: Will only play a video if all party members have access to it, and will prevent new party members who don't have access to the current video (if any). Accurate synchronization of video player positions when the host seeks or changes videos using a multi-part protocol that leverages remote control commands under the hood. Accurate catch-up seek commands issued for guests when they fall behind or are otherwise offset from the host. Efficient transition between videos in a playback queue that accounts for slightly offset attendee positions and allows each attendee to start loading the next video while others finish the previous one. Late joiner support: Brings late joiners immediately into the video at the correct position. Joiners already watching a video will automatically start hosting that video if the party was idle. Host can change audio and subtitle streams for all attendees (guests can change it back for themselves if they want). Distributed pause/unpause requests - all users can pause and unpause. Return to video button for guests to return to the video being watched by the host if they closed it for some reason. Guests are automatically returned to the correct video if they open the wrong one or under certain other circumstances. Keep alive: Plugin keeps party member sessions and websockets open as needed and disconnects party members who time out. Support for multiple sessions/devices per user account. Just don't duplicate browser tabs! Support for remote control: Party members can control other Emby clients and those clients will benefit from party synchronization. (Caveats: Working, but not thoroughly tested yet. Due to the lack of client-side support, remote controlled clients are capable of issuing pause/unpause commands that break synchronization. I recommend being careful about pausing/unpausing in a device being remote controlled by a party member.) Cool resizable sidebar with list of party attendees and log of chat and events. The sidebar has docked (squeezes the video aside) and undocked (overlaps the video) modes and uses your Emby profile picture. Dark and light mode supported. Visual indicators for synchronization states of party members when synchronizing with host (icons). Visual indicator when receiving seek commands from the server (your name flashes orange). Host remedies for synchronization issues: Guests who are not responding can be sent another playback command by the host or kicked from the party after 20 seconds have passed. Emoji support in chat using :shortnames: or emoticons. Markdown styles support in chat, including spoilers and preformatted text. Preserves chat focus and selectively blocks keyboard shortcuts or UI interactables when chatting or syncing in order to prevent control mistakes/command spam. Chat bridge endpoint: External applications can connect to `ws://localhost:8196/bridge` to exchange chat (and some events) with the party sidebar. I threw together a module for my self-hosted Discord bot that shows how to use it. Remote control chain resilience for party attendees only: Prevents you from creating a loop of remote control targets. If you do this in vanilla Emby your clients will nuke the server with requests. Automatic skip to next video for videos stalled at the end because the last segment isn't decoding. This is also for party attendees only. Installation To install the server plugin, download it or build it in Visual Studio, then copy it normally to your Emby server's plugins folder and restart the server. Currently the plugin doesn't modify any Emby files (yet?), so you'll have to manually edit one of the web client's existing modules and import the Emby Party module there. Head on over to system/dashboard-ui/modules/appheader/appheader.js and locate the end of the render function, which in Emby 4.8.10 is in position 21877. Insert this code there: , Emby.importModule("./modules/embyparty/partyheader.js").then(function(PartyHeader) { return (new PartyHeader()).show(skinHeaderElement.querySelector(".headerRight")); }); Save, clear your browser cache and refresh. If the party button appears in the top right corner, you're good to go! I'm sure someone will tell me a better way to do this soon enough. I don't know if there's a commonly accepted way and haven't really put any thought into it yet. Whole bunch of disclaimers Use at your own risk! If something breaks that you don't want broken, revert the steps above to remove the plugin from your server installation. Emby Party was iteratively developed and tested with several friends over several weeks, but it was developed to suit our own needs. It was not (yet) tested alongside features we don't use, including, but not limited to, Emby Connect, Emby Premiere, Live TV, the audio player, conversions, cinema previews, most other plugins, etc. Currently no mobile styles. Not tested on mobile. We've been in active development until now. There are vaguely known issues that are hard to reproduce and instability can be caused by video decoding failures, networking issues, browser crashes, browser extensions, lack of hardware resources, forgetting your browser won't play until you click the window unless you've given Emby autoplay permissions.. New and exciting bugs should also appear as we get more people using it. Thanks in advance for helping test, report or fix this stuff! Otherwise, check back for updates, I guess? Please keep comments and suggestions in this thread. Issues should be reported only on github so they're all in the same place. You may notice a whole lot of things in the source code that make you think, wow, it sure would be nice if this was in the Emby settings. I agree! If you would like to implement a plugin settings page, please submit it as a pull request on github! I'm so horribly far behind schedule with this project, and my free time is far in the negative right now. There may be better ways to do some of the things Emby Party does that I am simply not aware of at this time (one of the reasons I'm keeping these instructions outside the repository for the moment) or were simply not considered because the feature grew organically. Pull requests please! Also recommended If you're feeling adventurous, consider improving your watch party's subtitle experience with these (much harder to apply) client-side fixes we worked out in tandem: Temporary workaround for subtitles coming in too early when resuming a video with transcoding (Important for this whole thing if you watch videos with subtitles) Web client ignoring AudioStreamIndex and SubtitleStreamIndex (Required for party host to guest stream index sync if you use that) Fixing mismatch between subtitle canvas and video aspect ratio breaking ass subtitles Fixed in vanilla as of 4.9.*! Playing plaintext subtitles through Subtitles Octopus by faking subtitle type Support mkvs with embedded fonts (requires the associated plugin) Fixed in vanilla as of 4.9.*! These may become obsolete over time if things are fixed or integrated into the main software. Don't forget to clear your cache and refresh after making changes to the client.
  2. I am running emby server at home and all devices can connect via the Lan. We are planning to visit family overseas and would like to access the server, either via the web client, iPad or via a Shield TV. I know that Emby Connect on my mobile phone (android) works as I can test this by disabling the wifi connection and just using mobile data. What I would like to do is test Connect on the laptop, iPad (no modem) and Shield before we travel (rather than attempt to troubleshoot after we arrive). Current restrictions make accessing another network difficult and so I am trying to test by adding the devices onto a separate subnet (192.168.xx.xx rather than the default 10.xx.xx.xx) so as to connect via the external interface of the router. After some editing of the settings I was able to run checks for Plex on the laptop, but am having no success with Emby (I have tried disabling the laptop firewall, but it did not help). I can login to my Emby connect account on the web. When logged in I can see the my emby server but cannot connect if I enter external address of the router (either as DDNS or IP) I cannot connect I know that the laptop can see the external address, as running ping or tracert on the DDNS name gives the (current) external ip of the router. When I try to connect there is nothing showing in the server log files. Is there anything else I can try, as noted before I can connect to plex 'remotely', but not emby.
  3. adelphiaUK

    Help Needed: Custom CSS

    Hi. I wish to use the "custom css" on the server settings as I wish to make the "solid background" more transparent so the backgrounds stand out more. However, I'm not sure how to use the custom css feature. Does this point to a custom css file or do you add your css into the box? If it is the latter then can the box be changed to a text area so you can format the code as we like? Can this also be implemented for the "login disclaimer" please as right now my disclaimer doesn't format right as the line breaks are in the wrong place. I tried using in-line HTML coding (<br>) but that just prints the coding inside the message, Finally, is there any documentation on the css so we know which object is called what? I know there's a few (unhelpful for beginner) posts in the forums but I don't appear to be able to find anything in the wiki. Thanks Chris
  4. If this is not the correct forum for the webclient (ref: https://emby.media/emby-web-client.html) please move the topic accordingly. I am trying to use emby via web client on a Fire TV but ran into navigation issues. To be more exact, there are two distinct problems: 1) The scroll buttons in the main screen are never visible (see attached "arrow.png" to see which buttons I am referring to). First I suspected that the FireTV SILC / FireFox Browsers just don't support specific Javascript events when moving the cursor to the edge of the browser window. But even when I apply CSS like .scrollbuttoncontainer{ display: block !important; } ... the buttons still aren't displayed at all. (They are displayed permanently on desktop browsers after applying that CSS) 2) Scrolling in the Live TV Guide isn't possible at all, since neither dragging the cursor to the horizontal/vertical edge of the list initiates scrolling and also no scrollbars are shown (see attached "scrollbar.png" to see which bars I am referring to). Are those known issues? I couldn't find anything in any document/wiki about emby that contained minimum requirements for browsers (Javascript / CSS wise). I am using emby server 3.3.1.0 on FreeBSD 11.1-STABLE but couldn't find any hint about such issues being fixed in the meantime inside the changelogs. Feel free to correct me if I am wrong. So, does anyone have an idea how to fix this?
  5. hey, hi kk, there some way to put device custom name to web app, most time i using 2 or 3 clients they are chrome web apps, so its impossible to know which is that one i wanna control in the cast feature, please add at least what user is using that web client, that would help aloooot, and at the best, some kind of naming, i dont know, by some how to indentify the chrome client or the ip adress that client is using, mac adress of the pc, i dont know something like that, but the user that is using that client, it would be so much help.
  6. Hey guys, when I update an actor image in the web client of Emby Server (3.2.26) it gets removed instantly. Reloading the metadata doesn't bring them back. This just happens to my anime section. Updating my movie or tv show actors works fine. Please help. EDIT: I just found out that this just happens to some of the japanese actors. Still don't know why.
  7. Good Evening, I am submitting this issue as I can't seem to find a way have the chromecast maximum bit-rate respected. There is an option in the web browser and the android client to specify the max bit-rate however it doesn't seem to actually pay attention to it. Below there is a screenshot where I have specified a max bit-rate as 3mbps and the server dashboard shows that it is trans-coding at 5.6mbps, the same happens from the web app on android and from the native android app. I have attached the full server lot and some of the relevant trans-coding logs. Please let me know if there is anything else that I can submit to assist. server-63635846400.txt ffmpeg-remux-4de2156a-7532-4988-959a-f02839ad183a.txt ffmpeg-transcode-a341d09a-6f12-4705-97da-dc47265cf1dd.txt ffmpeg-transcode-ca113fd6-f9bb-4c3e-a869-6a41719c86c0.txt ffmpeg-transcode-ee51c2b7-dd04-480a-8c50-7100f4b023f6.txt
  8. Blueeyiz702

    Actor Images Not Matching up with Imdb

    When i try to identify a actor image that does not show on movie,and input imdb id it keeps returning a blank like actor does not exist and it has to be done manually. Its happened multiple time over past couple of weeks. Even tho there is a imdb id for Sienna Nanue when i input to identify with id and name it does not work and image stays blank?
  9. Hi, you can use a CSS Code to chance the login screen, ie, the first, the second image ? I already have a large number of external users and see the need for change. If possible, I would also have an image right at the top of the login screen. It would be even better if it were possible to have an edit field 'messages' at the bottom of the screen, justifiably.
  10. Is there a way to allow the chapter extract to take a snapshot of each chapter 5 seconds into each chapter? Many of my TV shows and a few movies only have black images due to scene transitions in the shows. This will not only make for a more aesthetic view, but make it much easier to find were one left off.
  11. EDIT: I finally made my own version inspired from emby theater, it's still on progress.. You can try it by using this css: @import url('https://opiu.ms/css/netflix_login_page.css'); @import url('https://opiu.ms/css/home_theater.css'); It is also compatible with Emby Dark Themes
  12. Nick's MCE

    Question about my library setup

    Hi I am just started to notice that my web client is showing everyhting as offline, I can select items and there is metadata but cannot play anything. The server is running and I can access my media on my local network through Emby Theatre. I have been having trouble with the server on start up and there has been absolutley no fanart showing. I can however play media. I have attached the screen shot of the web client and also the log I found for server startup. There seem to bbe multiple problems so not exactly which section this should be posted in. The whole system is completely unusable, this is all just 10 days after I dropped win 8 and Emby and changed to win 10 and Emby Theatre. Please help Nickserver-63603653753.txt
  13. ItsTheDutchGuy

    Bug: Incorrect episode plays in web client

    I'm using Google Chrome (auto-updated) on Windows 7 Ultimate (auto-updated) to use the Emby Web Client on my HTPC setup. If I open the TV Shows main screen, and click on a series "play" button, it will play the latest unwatched episode, as expected. On other screens, however (like the Emby Home screen, under "Latest Media", but also on the "Latest" screen under TV Shows), clicking the play button will always start Season 1, Episode 1, instead of the first unwatched episode. Kind of defeats the whole purpose of the "Latest" moniker. Note: behavior is the same in different browsers, on two separate PCs... please fix.
  14. ThermoDust

    Additional Bulk Edit Options

    Give ability to bulk edit the watch status.
  15. I occasionally watch live TV at work from my Emby server at home using Chrome. I'll go through the guide, select a show, then click play. The Live TV stream starts and plays for about 3 seconds then freezes. I change the quality from 360p to 240p and then the video streams normally. It doesn't matter if I start the stream at 240p either. If I start at 240p it will also stop after 3 seconds, then I change to 360p and it streams fine. Not a big deal since I know how to get it to work, but thought somebody may offer a setting change that may keep this from happening. I have tried on Firefox with the same results.
  16. I've been trying to figure out how to get a list of TV/Movies that I have marked as favorites, but I can't seem to find it. Any help is appreciated. Thanks for a great system. --Allan
  17. miquelx

    Music shuffle

    Hello, Is there any way to shuffle the currently play list? Like the shuffle button in any music player. I've searched every where and I can't find it. The only workaround I found to do this was creating a playlist and shuffling from there but this involves creating the playlist instead of just Queuing and shuffling from there. Thank you
  18. kfonda

    Next Episode

    Would it be possible to add the next episode air date to the main page of each TV show when that information is available? Like This...
  19. NO LONGER SUPPORTED Tested primarily with Google Chrome Available for Emby stable and beta releases Complete dark themes for Emby web client in 9 different accent colors RED, ORANGE, ORANGE PLEX, YELLOW, GREEN, BLUE, PURPLE, GRAY & PINK I find it more consistent to have a same color everywhere instead of the blue/green default. Even the logos and icons are changed to fit with the proper accent color. You also have the option to have a light version of the theme. Just read and follow instructions HERE for both, stable and beta releases. Note that I'm not using Live TV and this section might not be perfect and/or completed. I hope you like it! CREDITS : Special thanks @@Happy2Play Shaefurr's Disparity Icons
  20. Hi, I am really new to CSS but I managed to get something I like (see dark & red theme attached image). Can you actually change the green default color I see everywhere like those circles or check marks (see green circles attached image)? I don't know how to do it... I would like to get it in red. I checked the dashboard-ui folder but it seems that my solution isn't there. Any help please?
  21. Hi, I've been experimenting with Emby (and comparing plex/kodi) over the past couple of days for my existing ~500 movie collection of mixed formats including about half in ripped-dvd MovieName>VIDEO_TS>MovieFiles structure. Would you please be able to help me with the following final problem which I have: • movies structured as "moviename > VIDEO_TS > VOBfiles" show up in library yet do not play (tested on web client and android app) [screenshots attached] • movies structured as "moviename > VOBfiles" show up in library and DO play just fine • I would like to figure out how to use the first hierarchy since that's dvd standard and how my files currently exist What I've tried: • I deleted that xml file visible in the screenshot • the emby naming guidelines suggest that a video_ts folder or a video_ts.ifo file will work, however I have not been able to make the folder route work. • searching google and the forums, I've only found people having the reverse problem • a similar problem in Kodi was solved by editing the regex; however, I have not been able to locate that in emby Thanks! -Adrik my testing setup: emby server 3 downloaded yesterday mac mini 2014 model; 2.6ghz intel core i5; 8gb ram; osx 10.10.2 viewing in android app and web client on chrome Version 46.0.2490.86 (64-bit) after i get everything working, putting emby on my freeNAS
  22. I'm really new to CSS personalisation. I did the following as modifications to css: /*Enable vertical scrolling on the custom css text box*/ #txtCustomCss{ overflow-y:scroll !important; height: 500px !important; } /*Remove 'Missing Trailer' icon in metadata editor, I don't use trailers*/ img[src='css/images/editor/missingtrailer.png'] { display:none; } /*Red border and glow for userview cards */ div[data-itemtype="CollectionFolder"] .cardContent, div[data-itemtype="UserView"] .cardContent, div[data-itemtype="PlaylistsFolder"] .cardContent{ border: 1px solid rgba(232,17,35,.5); -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(232,17,35,.6); box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(232,17,35,.6); } /* Deeper red in links/bottom border to match Disparity*/ .libraryViewNav .ui-btn-active { border-bottom-color: #E81123; } .libraryViewNav a:not(.ui-btn-active):hover { color: #E81123 !important; } .ui-page-theme-b a:visited, html .ui-bar-b a:visited, html .ui-body-b a:visited, html body .ui-group-theme-b a:visited { color: #E81123; } .ui-page-theme-b a:hover, html .ui-bar-b a:hover, html .ui-body-b a:hover, html body .ui-group-theme-b a:hover { color: #E81123; } It seems that the changes only work when I go to my web server from 192.xxx.x.xxx:8096. When I try to connect from app.emby.media (any users), it doesn't do anything. Am I missing something? I attached some pics.
  23. geotux

    May be transcode problem but ...

    Hi, installed Emby last night as I want to replace Plex (don't like closed source). Quite impressed up to now although still haven't managed to see one film yet. Can't see film in web client or android client, both saying "There was an error playing the video.".Music plays correctly. Emby Version 3.0.5781.0 with ffmpeg version 0.8.17-6:0.8.17-1 (basically a fully updated Debian Wheezy to a few minutes ago) Now, this I think it's a transcode problem as I see "Unrecognized option 'codec:v:0'" in the transcode log (see below). One thing that I did like of Plex is the "Direct streaming" option which i think Emby doesn't have. It tries to transcode even videos that are not transcoded on Plex (I have Plex also running on the same machine). Am i correct in thinking that there is no direct streaming with Emby? Thanks Antonio TRANSCODE LOG (also attached) http://192.168.1.3:8096/emby/videos/6920af97c4418d11be79207c0722539b/stream.webm?DeviceId=434bb81cd4e118556dc1d12dd153978d13b005c7&MediaSourceId=6920af97c4418d11be79207c0722539b&VideoCodec=vpx&AudioCodec=vorbis&VideoBitrate=426538666&AudioBitrate=128000&MaxHeight=1080&ClientTime=635826086455268210&PlaySessionId=731ea850d5c84351bea90945b1f93770&api_key=f3f331d238e44921a1e2401c4216a9e1{"Protocol":"File","Id":"6920af97c4418d11be79207c0722539b","Path":"/exports/zeusmedia/Movies/Good Copy Bad Copy (2007)/Good Copy Bad Copy (2007).mp4","Type":"Default","Container":"mp4","Name":"","ReadAtNativeFramerate":false,"SupportsTranscoding":true,"SupportsDirectStream":true,"SupportsDirectPlay":true,"RequiresOpening":false,"RequiresClosing":false,"VideoType":"VideoFile","MediaStreams":[],"PlayableStreamFileNames":[],"Formats":[],"RequiredHttpHeaders":{}}/usr/bin/ffmpeg -loglevel debug -fflags +genpts -i file:"/exports/zeusmedia/Movies/Good Copy Bad Copy (2007)/Good Copy Bad Copy (2007).mp4" -sn -codec:v:0 libvpx -force_key_frames expr:gte(t,n_forced*5) -vf "scale=trunc(oh*a/2)*2:min(ih\,1080)" -pix_fmt yuv420p -speed 16 -quality good -profile:v 0 -slices 8 -crf 10 -qmin 0 -qmax 50 -maxrate:v 426538666 -bufsize:v (426538666*2) -b:v 426538666 -vsync vfr -map_metadata -1 -threads 2 -codec:a:0 libvorbis -ab 128000 -af "aresample=async=1" -y "/exports/zeusmedia/Transcode/transcoding-temp/cccb19f385a90c3a51960df3b51d1b23.webm"ffmpeg version 0.8.17-6:0.8.17-1, Copyright (c) 2000-2014 the Libav developers built on Mar 15 2015 17:31:12 with gcc 4.7.2 configuration: --arch=i386 --enable-pthreads --enable-runtime-cpudetect --extra-version='6:0.8.17-1' --libdir=/usr/lib/i386-linux-gnu --prefix=/usr --enable-bzlib --enable-libdc1394 --enable-libdirac --enable-libfreetype --enable-frei0r --enable-gnutls --enable-libgsm --enable-libmp3lame --enable-librtmp --enable-libopencv --enable-libopenjpeg --enable-libpulse --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-vaapi --enable-vdpau --enable-libvorbis --enable-libvpx --enable-zlib --enable-gpl --enable-postproc --enable-swscale --enable-libcdio --enable-x11grab --enable-libx264 --enable-libxvid --shlibdir=/usr/lib/i386-linux-gnu --enable-shared --disable-static avutil configuration: --arch=i386 --enable-pthreads --enable-runtime-cpudetect --extra-version='6:0.8.17-1' --libdir=/usr/lib/i386-linux-gnu --prefix=/usr --enable-bzlib --enable-libdc1394 --enable-libdirac --enable-libfreetype --enable-frei0r --enable-gnutls --enable-libgsm --enable-libmp3lame --enable-librtmp --enable-libopencv --enable-libopenjpeg --enable-libpulse --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-vaapi --enable-vdpau --enable-libvorbis --enable-libvpx --enable-zlib --enable-gpl --enable-postproc --enable-swscale --enable-libcdio --enable-x11grab --enable-libx264 --enable-libxvid --shlibdir=/usr/lib/i386-linux-gnu/i686/cmov --cpu=i686 --enable-shared --disable-static avcodec configuration: --arch=i386 --enable-pthreads --enable-runtime-cpudetect --extra-version='6:0.8.17-1' --libdir=/usr/lib/i386-linux-gnu --prefix=/usr --enable-bzlib --enable-libdc1394 --enable-libdirac --enable-libfreetype --enable-frei0r --enable-gnutls --enable-libgsm --enable-libmp3lame --enable-librtmp --enable-libopencv --enable-libopenjpeg --enable-libpulse --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-vaapi --enable-vdpau --enable-libvorbis --enable-libvpx --enable-zlib --enable-gpl --enable-postproc --enable-swscale --enable-libcdio --enable-x11grab --enable-libx264 --enable-libxvid --shlibdir=/usr/lib/i386-linux-gnu/i686/cmov --cpu=i686 --enable-shared --disable-static avformat configuration: --arch=i386 --enable-pthreads --enable-runtime-cpudetect --extra-version='6:0.8.17-1' --libdir=/usr/lib/i386-linux-gnu --prefix=/usr --enable-bzlib --enable-libdc1394 --enable-libdirac --enable-libfreetype --enable-frei0r --enable-gnutls --enable-libgsm --enable-libmp3lame --enable-librtmp --enable-libopencv --enable-libopenjpeg --enable-libpulse --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-vaapi --enable-vdpau --enable-libvorbis --enable-libvpx --enable-zlib --enable-gpl --enable-postproc --enable-swscale --enable-libcdio --enable-x11grab --enable-libx264 --enable-libxvid --shlibdir=/usr/lib/i386-linux-gnu/i686/cmov --cpu=i686 --enable-shared --disable-static avdevice configuration: --arch=i386 --enable-pthreads --enable-runtime-cpudetect --extra-version='6:0.8.17-1' --libdir=/usr/lib/i386-linux-gnu --prefix=/usr --enable-bzlib --enable-libdc1394 --enable-libdirac --enable-libfreetype --enable-frei0r --enable-gnutls --enable-libgsm --enable-libmp3lame --enable-librtmp --enable-libopencv --enable-libopenjpeg --enable-libpulse --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-vaapi --enable-vdpau --enable-libvorbis --enable-libvpx --enable-zlib --enable-gpl --enable-postproc --enable-swscale --enable-libcdio --enable-x11grab --enable-libx264 --enable-libxvid --shlibdir=/usr/lib/i386-linux-gnu/i686/cmov --cpu=i686 --enable-shared --disable-static avfilter configuration: --arch=i386 --enable-pthreads --enable-runtime-cpudetect --extra-version='6:0.8.17-1' --libdir=/usr/lib/i386-linux-gnu --prefix=/usr --enable-bzlib --enable-libdc1394 --enable-libdirac --enable-libfreetype --enable-frei0r --enable-gnutls --enable-libgsm --enable-libmp3lame --enable-librtmp --enable-libopencv --enable-libopenjpeg --enable-libpulse --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-vaapi --enable-vdpau --enable-libvorbis --enable-libvpx --enable-zlib --enable-gpl --enable-postproc --enable-swscale --enable-libcdio --enable-x11grab --enable-libx264 --enable-libxvid --shlibdir=/usr/lib/i386-linux-gnu/i686/cmov --cpu=i686 --enable-shared --disable-static swscale configuration: --arch=i386 --enable-pthreads --enable-runtime-cpudetect --extra-version='6:0.8.17-1' --libdir=/usr/lib/i386-linux-gnu --prefix=/usr --enable-bzlib --enable-libdc1394 --enable-libdirac --enable-libfreetype --enable-frei0r --enable-gnutls --enable-libgsm --enable-libmp3lame --enable-librtmp --enable-libopencv --enable-libopenjpeg --enable-libpulse --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-vaapi --enable-vdpau --enable-libvorbis --enable-libvpx --enable-zlib --enable-gpl --enable-postproc --enable-swscale --enable-libcdio --enable-x11grab --enable-libx264 --enable-libxvid --shlibdir=/usr/lib/i386-linux-gnu/i686/cmov --cpu=i686 --enable-shared --disable-static postproc configuration: --arch=i386 --enable-pthreads --enable-runtime-cpudetect --extra-version='6:0.8.17-1' --libdir=/usr/lib/i386-linux-gnu --prefix=/usr --enable-bzlib --enable-libdc1394 --enable-libdirac --enable-libfreetype --enable-frei0r --enable-gnutls --enable-libgsm --enable-libmp3lame --enable-librtmp --enable-libopencv --enable-libopenjpeg --enable-libpulse --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-vaapi --enable-vdpau --enable-libvorbis --enable-libvpx --enable-zlib --enable-gpl --enable-postproc --enable-swscale --enable-libcdio --enable-x11grab --enable-libx264 --enable-libxvid --shlibdir=/usr/lib/i386-linux-gnu/i686/cmov --cpu=i686 --enable-shared --disable-static libavutil 51. 22. 3 / 51. 22. 3 libavcodec 53. 35. 0 / 53. 35. 0 libavformat 53. 21. 1 / 53. 21. 1 libavdevice 53. 2. 0 / 53. 2. 0 libavfilter 2. 15. 0 / 2. 15. 0 libswscale 2. 1. 0 / 2. 1. 0 libpostproc 52. 0. 0 / 52. 0. 0The ffmpeg program is only provided for script compatibility and will be removedin a future release. It has been deprecated in the Libav project to allow forincompatible command line syntax improvements in its replacement called avconv(see Changelog for details). Please use avconv instead.[mov,mp4,m4a,3gp,3g2,mj2 @ 0x81008e0] Probed with size=2048 and score=100[mov,mp4,m4a,3gp,3g2,mj2 @ 0x81008e0] ISO: File Type Major Brand: mp42[h264 @ 0x81030c0] err{or,}_recognition separate: 1; 1[h264 @ 0x81030c0] err{or,}_recognition combined: 1; 1[h264 @ 0x81030c0] Unsupported bit depth: 0[aac @ 0x8105240] err{or,}_recognition separate: 1; 1[aac @ 0x8105240] err{or,}_recognition combined: 1; 1[aac @ 0x8105240] Unsupported bit depth: 0[mov,mp4,m4a,3gp,3g2,mj2 @ 0x81008e0] All info foundInput #0, mov,mp4,m4a,3gp,3g2,mj2, from 'file:/exports/zeusmedia/Movies/Good Copy Bad Copy (2007)/Good Copy Bad Copy (2007).mp4': Metadata: major_brand : mp42 minor_version : 0 compatible_brands: isommp42 creation_time : 2014-02-07 03:47:34 Duration: 00:58:35.36, start: 0.000000, bitrate: 559 kb/s Stream #0.0(und), 13, 1/50: Video: h264 (Constrained Baseline), yuv420p, 640x356 [PAR 801:800 DAR 9:5], 1/50, 461 kb/s, 25 fps, 25 tbr, 50 tbn, 50 tbc Stream #0.1(und), 1, 1/44100: Audio: aac, 44100 Hz, stereo, s16, 96 kb/s Metadata: creation_time : 2014-02-07 03:48:00Unrecognized option 'codec:v:0'Failed to set value 'libvpx' for option 'codec:v:0' TranscodeLog.txt ServerLog.txt
  24. gillmacca

    Images not displaying

    Some of the primary images for tv episodes are not showing up, even though they have been downloaded (tried downloaded different ones and manually adding images). https://www.dropbox.com/s/qk7bkis6hzdxaof/Screenshot%202015-11-05%2013.03.24.png?dl=0 server ,log: https://www.dropbox.com/s/nfcsbys9peq8nx1/server-63582294630.txt?dl=0
  25. yardameus

    Image editor drop down

    Version 3.0.5768.6 Firefox 41.0.2 I've noticed in the last couple of versions that I am not able to select the different types of artwork when searching for new images in the image editor. I click on the drop down and nothing happens. If I have a lot of images to choose from and hit the arrow to go to the next set of images and then go back, I am able to click the menu. Doesn't seem to be an issue in Chrome. Wondering if there is some plugin that may not be active in Firefox that could cause this?
×
×
  • Create New...