INTERACT FORUM

Please login or register.

Login with username, password and session length
Advanced search  
Pages: [1]   Go Down

Author Topic: Searching for files based on resolution - 1080p  (Read 2604 times)

daveman

  • Galactic Citizen
  • ****
  • Posts: 427
  • I am still a baby user of JRiver :)
Searching for files based on resolution - 1080p
« 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
Logged

6233638

  • Regular Member
  • Citizen of the Universe
  • *****
  • Posts: 5353
Re: Searching for files based on resolution - 1080p
« Reply #1 on: September 09, 2014, 09:27:38 am »

Search for "height=1080" or create a view that uses "height is 1080" ?
Logged

daveman

  • Galactic Citizen
  • ****
  • Posts: 427
  • I am still a baby user of JRiver :)
Re: Searching for files based on resolution - 1080p
« Reply #2 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?
Logged

6233638

  • Regular Member
  • Citizen of the Universe
  • *****
  • Posts: 5353
Re: Searching for files based on resolution - 1080p
« Reply #3 on: September 17, 2014, 02:46:46 pm »

The Width, Height, and Dimensions tags cover "Resolution" entirely.
Logged

connersw

  • Citizen of the Universe
  • *****
  • Posts: 661
Re: Searching for files based on resolution - 1080p
« Reply #4 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.   
Logged

daveman

  • Galactic Citizen
  • ****
  • Posts: 427
  • I am still a baby user of JRiver :)
Re: Searching for files based on resolution - 1080p
« Reply #5 on: September 17, 2014, 03:32:38 pm »

So in which field would you place this information?
Logged

6233638

  • Regular Member
  • Citizen of the Universe
  • *****
  • Posts: 5353
Re: Searching for files based on resolution - 1080p
« Reply #6 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,)
Logged

BartMan01

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 1513
Re: Searching for files based on resolution - 1080p
« Reply #7 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.
Logged

fitbrit

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 4877
Re: Searching for files based on resolution - 1080p
« Reply #8 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.
Logged

jctcom

  • Citizen of the Universe
  • *****
  • Posts: 654
  • Rush - Styx - Yes - Porcupine Tree - Staple Food!
Re: Searching for files based on resolution - 1080p
« Reply #9 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.

6233638

  • Regular Member
  • Citizen of the Universe
  • *****
  • Posts: 5353
Re: Searching for files based on resolution - 1080p
« Reply #10 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.
Logged

fitbrit

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 4877
Re: Searching for files based on resolution - 1080p
« Reply #11 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!
Logged
Pages: [1]   Go Up