INTERACT FORUM

Please login or register.

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

Author Topic: Need help to Group movies by runtime  (Read 559 times)

arcspin

  • Galactic Citizen
  • ****
  • Posts: 379
Need help to Group movies by runtime
« on: September 29, 2019, 05:04:36 am »

Hi all,
We had some friends over last night and I got the chance to show the JRiver Theater view for our friends.
One thing that we come to discuss is that sometimes it would be nice to be able to group movies by runtime. For example yesterday we were looking for a movie that were around two hours long to watch.

Soooo, I need some help creating an expression in Theater view.
This is what I would like to sort my movies by: Duration of the movie, aka Runtime

I would like to sort my movies into these runtime groups.

----> up to 1h30m
1h31m - 1h50m
1h51m - 2h10m
2h11m - 2h30m
2h31m - 2h50m
2h51m - 3h10m
3h11m ---->


Can someone please help me out creating this expression?




Greatly appreciate any help,
//arcspin
Logged
Hardware: Intel Core i5-8600K 16GB RAM, ASUS GeForce RTX 2080 8GB DUAL OC
Software: Windows 10 Home 64-bit, version 2004, JRiver MC 29, MadVr 0.92.17 (Beta 113), NVIDIA driver 457.09
Projector: JVC DLA-I X5500 (RS420, X570R) -
Screen: DNP Supernova 08-85
Processor: Anthem AVM 70
Power amp: XTZ A2-400 for Front & Center - XTZ A2-300 for Surround & Height channels
Speakers: Arendal 1723 S Monitor for Front & Center, Linn Unik for Front Height, Rear Height, Surround & Surround back. Elipson Planet M for Top Middle.
Sub: Arendal 1723 1S

Moe

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 695
  • Hi
Re: Need help to Group movies by runtime
« Reply #1 on: September 29, 2019, 10:21:11 am »

https://yabb.jriver.com/interact/index.php/topic,107001.msg743344.html#msg743344

You’ll have to tweak it to get the groups you want. But it should be obvious how to do so once you see the expression.
Logged

arcspin

  • Galactic Citizen
  • ****
  • Posts: 379
Re: Need help to Group movies by runtime
« Reply #2 on: September 29, 2019, 12:04:31 pm »

Thank you Moe for the help.
I will most certainly look into this and make my own tweaks.

Cheers,

//arcspin
Logged
Hardware: Intel Core i5-8600K 16GB RAM, ASUS GeForce RTX 2080 8GB DUAL OC
Software: Windows 10 Home 64-bit, version 2004, JRiver MC 29, MadVr 0.92.17 (Beta 113), NVIDIA driver 457.09
Projector: JVC DLA-I X5500 (RS420, X570R) -
Screen: DNP Supernova 08-85
Processor: Anthem AVM 70
Power amp: XTZ A2-400 for Front & Center - XTZ A2-300 for Surround & Height channels
Speakers: Arendal 1723 S Monitor for Front & Center, Linn Unik for Front Height, Rear Height, Surround & Surround back. Elipson Planet M for Top Middle.
Sub: Arendal 1723 1S

Moe

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 695
  • Hi
Re: Need help to Group movies by runtime
« Reply #3 on: September 29, 2019, 02:13:17 pm »

I was without power when I posted earlier.

FYI, this was the final expression that I ended up using.

ifelse(isrange([duration,0],1-1800),Less Than 30:00,
            isrange([duration,0],1800-2700),30:00 - 45:00,
            isrange([duration,0],2700-3600),45:00 - 60:00,
            isrange([duration,0],3600-4500),1:00:00 - 1:15:00,
            isrange([duration,0],4500-5400),1:15:00 - 1:30:00,
            isrange([duration,0],5400-6300),1:30:00 - 1:45:00,
            isrange([duration,0],6300-7200),1:45:00 - 2:00:00,
            isrange([duration,0],7200-8100),2:00:00 - 2:15:00,
            isrange([duration,0],8100-9000),2:15:00 - 2:30:00,
            isrange([duration,0],9000-9900),2:30:00 - 2:45:00,
            isrange([duration,0],9900-10800),2:45:00 - 3:00:00,
            1,3:00:00+)
Logged

arcspin

  • Galactic Citizen
  • ****
  • Posts: 379
Re: Need help to Group movies by runtime
« Reply #4 on: September 29, 2019, 03:15:21 pm »

Thank you Moe,
I ended up with these groups:

Code: [Select]
ifelse(isrange([duration,0],1-3600),0:00 - 60:00,
            isrange([duration,0],3600-5400),1:00 - 1:30,
            isrange([duration,0],5400-6600),1:30 - 1:50,
            isrange([duration,0],6600-7800),1:50 - 2:10,
            isrange([duration,0],7800-9000),2:10 - 2:30,
            isrange([duration,0],9000-10200),2:30 - 2:50,
            isrange([duration,0],10200-11400),2:50 - 3:10,
            1,3:10+)

I will try out some more variants to see what I like but for now this is just great.


Again, much appreciate the support,

//arcspin
Logged
Hardware: Intel Core i5-8600K 16GB RAM, ASUS GeForce RTX 2080 8GB DUAL OC
Software: Windows 10 Home 64-bit, version 2004, JRiver MC 29, MadVr 0.92.17 (Beta 113), NVIDIA driver 457.09
Projector: JVC DLA-I X5500 (RS420, X570R) -
Screen: DNP Supernova 08-85
Processor: Anthem AVM 70
Power amp: XTZ A2-400 for Front & Center - XTZ A2-300 for Surround & Height channels
Speakers: Arendal 1723 S Monitor for Front & Center, Linn Unik for Front Height, Rear Height, Surround & Surround back. Elipson Planet M for Top Middle.
Sub: Arendal 1723 1S
Pages: [1]   Go Up