INTERACT FORUM

More => Old Versions => JRiver Media Center 20 for Windows => Topic started by: daveman on September 09, 2014, 09:00:46 am

Title: Searching for files based on resolution - 1080p
Post by: daveman on September 09, 2014, 09:00:46 am
Hi There,

I have started to obtain 1080p video files for my library and am trying to figure out the best way to be able to search for movies based on resolution.  I have standard hd, 720p and 1080p movies. 

I want to know how others organize their libraries.  If I want to search only for 1080p movies, how should I do it? Currently, I am adding 1080p to the movie title (e.g., "Gladiator - 1080p") but this is not the best way.

thoughts?

Dave
Title: Re: Searching for files based on resolution - 1080p
Post by: 6233638 on September 09, 2014, 09:27:38 am
Search for "height=1080" or create a view that uses "height is 1080" ?
Title: Re: Searching for files based on resolution - 1080p
Post by: daveman on September 17, 2014, 02:44:33 pm
Any chance we could get a new tag - maybe something like "resolution"?

this could also be autofilled based on title of the file or some other parameters?
Title: Re: Searching for files based on resolution - 1080p
Post by: 6233638 on September 17, 2014, 02:46:46 pm
The Width, Height, and Dimensions tags cover "Resolution" entirely.
Title: Re: Searching for files based on resolution - 1080p
Post by: connersw on September 17, 2014, 03:29:14 pm
Currently, I am adding 1080p to the movie title (e.g., "Gladiator - 1080p") but this is not the best way.

No it is not.  I would always recommend against cramming additional information into the Name Field. 

MC has excellent stock Fields as well as the ability to create your own.  Combined with the ability to customize any View, it is much easier in the long run to put the information in the appropriate Field and then organize your Views accordingly.   
Title: Re: Searching for files based on resolution - 1080p
Post by: daveman on September 17, 2014, 03:32:38 pm
So in which field would you place this information?
Title: Re: Searching for files based on resolution - 1080p
Post by: 6233638 on September 17, 2014, 03:43:42 pm
So in which field would you place this information?
Since I use Thumbnail views for films, I just use:

Code: (Thumbnail Text) [Select]
Delimit([Height], p,)
Title: Re: Searching for files based on resolution - 1080p
Post by: BartMan01 on September 17, 2014, 09:48:13 pm
Personally I just throw the 'dimensions' library field on any view where I am needing to filter/sort/search by resolution.
Title: Re: Searching for files based on resolution - 1080p
Post by: fitbrit on September 17, 2014, 09:56:42 pm
Height is 1080, OR Width is 1920.
Ripped 'Scope' movies with greater than 16:9 are considered 1080p, even if the movie's resolution is less than 1080 vertical pixels.
Title: Re: Searching for files based on resolution - 1080p
Post by: jctcom on September 18, 2014, 12:53:20 am
Personally I would use a "Panes" view and add either "Height" or "Width" as one of the panes.  Then just click on "1080" or "1920" (Depending on which one you use) under the respective "Pane" and voila.  Only 1080P movies (Maybe 1080i?) will be shown.

Carl.
Title: Re: Searching for files based on resolution - 1080p
Post by: 6233638 on September 18, 2014, 08:58:22 am
Height is 1080, OR Width is 1920.
Ripped 'Scope' movies with greater than 16:9 are considered 1080p, even if the movie's resolution is less than 1080 vertical pixels.
Well 1080p can have less than 1920 horizontal resolution, though it's rare.
Personally I just rip my Blu-rays to MKV without conversion, so everything is just 1920x1080 (or a DVD)
 
You could use something like:
Code: [Select]
If(IsRange([Height], 721-1080), 1080p, Delimit([Height], p,))

You can also nest these if you want to cover several ranges, such as:
Code: [Select]
If(IsRange([Height], 721-1080), 1080p,
If(IsRange([Height], 577-720), 720p,
If(IsRange([Height], 481-576), 576p,
If(IsRange([Height], 1-480), 480p,
Delimit([Height], p,)))))

You could build a similar rule based on width if you preferred.
Title: Re: Searching for files based on resolution - 1080p
Post by: fitbrit on September 18, 2014, 10:57:12 am
Well 1080p can have less than 1920 horizontal resolution, though it's rare.
Personally I just rip my Blu-rays to MKV without conversion, so everything is just 1920x1080 (or a DVD)
 
You could use something like:
Code: [Select]
If(IsRange([Height], 721-1080), 1080p, Delimit([Height], p,))

You can also nest these if you want to cover several ranges, such as:
Code: [Select]
If(IsRange([Height], 721-1080), 1080p,
If(IsRange([Height], 577-720), 720p,
If(IsRange([Height], 481-576), 576p,
If(IsRange([Height], 1-480), 480p,
Delimit([Height], p,)))))

You could build a similar rule based on width if you preferred.

Thanks for those!