Search found 146 matches

by atamariya
Thu Dec 13, 2018 10:39 pm
Forum: Feature Suggestions
Topic: Mix photo & video
Replies: 13
Views: 24544

Re: Mix photo & video

rmanal wrote: Thu Dec 13, 2018 8:25 pm So is it your TV that mix both file types?
Yes, it's the function of renderer to either include or exclude media types while displaying.
by atamariya
Mon Dec 10, 2018 7:58 pm
Forum: Media Renderers
Topic: Panasonic DP-UB820 support
Replies: 1
Views: 4291

Re: Panasonic DP-UB820 support

For documentation, start here https://github.com/UniversalMediaServer/UniversalMediaServer/wiki/Creating-a-custom-device-configuration . Also there's lot of in-code documentation in ums/src/main/external-resources/renderers/DefaultRenderer.conf . Look at the section "SUPPORTED MEDIA FORMATS"
by atamariya
Mon Dec 10, 2018 3:50 pm
Forum: Feature Suggestions
Topic: Mix photo & video
Replies: 13
Views: 24544

Re: Mix photo & video

My LG TV uses one app for handling photo and video, and another one for audio. So ideally I don't see how putting photo and video in a single folder be any issue. What problem are you facing?
by atamariya
Sat Dec 08, 2018 4:56 pm
Forum: Help and Support
Topic: Trying to figure a format that works with my Roku 1
Replies: 4
Views: 5955

Re: Trying to figure a format that works with my Roku 1

You don't need to permanently convert the files - UMS can do that on the fly. Use an appropriate renderer configuration (use existing one to start) which is supported by Roku 1.
TranscodeVideo = MPEGTS-MPEG2-AC3
by atamariya
Sun Dec 02, 2018 6:08 pm
Forum: Help and Support
Topic: Stops working when it checks folder for the first time
Replies: 1
Views: 3296

Re: Stops working when it checks folder for the first time

Follow the same process as listed on top of the page. Debug logs are the only way developers can help point out the issue.
by atamariya
Thu Nov 15, 2018 4:51 pm
Forum: Help and Support
Topic: player can not connect
Replies: 1
Views: 2761

Re: player can not connect

Please follow " Problem Reporting Guidelines " at the top.
by atamariya
Wed Nov 14, 2018 8:41 pm
Forum: Help and Support
Topic: FreeBSD Configuration
Replies: 10
Views: 17005

Re: FreeBSD Configuration

Though I can't guarantee it to work, you can try renaming the path com\sun\jna\linux-x86-64\ to com\sun\jna\freebsd-x86-64\ inside ums.jar. Use any zip utility to do that. Remember to keep a backup of ums.jar.
by atamariya
Tue Nov 13, 2018 3:08 am
Forum: General Discussion
Topic: Subtitle translation
Replies: 1
Views: 8205

Subtitle translation

If you're looking for translating SRT subs, http://www.syedgakbar.com/projects/subtitles-translate provides a handy utility for the same. It uses Google translate or Bing to perform translation. Hope people will find it useful.
by atamariya
Mon Oct 29, 2018 4:30 pm
Forum: Help and Support
Topic: Docker
Replies: 15
Views: 27539

Re: Docker

by atamariya
Thu Oct 25, 2018 5:08 pm
Forum: Help and Support
Topic: Docker
Replies: 15
Views: 27539

Re: Docker

You need to mount /profile (containing UMS.conf - this ensures your customization is not lost on restart) and /media (containing media files) to directories in local system. A sample below:

Code: Select all

docker run -it -p 5002:5002 -p 9001:9001 -v /c/Users/Downloads/:/media -v /c/Users/profile/:/profile ums