Search found 4 matches

by martzell
22 Dec 2013, 10:45
Forum: Episode / Movie Naming Scheme
Topic: Regex for lowercase, crop and replace
Replies: 7
Views: 9104

More than one language

Is it possible to add all the audio languages to the filename? "audio.language" only inserts „de“ for german, but there is the original audio stream in english also in the .mkv-file. I’ve looked at the groovy documentation even before you posted the link, but where can I find in this programming lang ...
by martzell
18 Nov 2013, 22:25
Forum: Episode / Movie Naming Scheme
Topic: Regex for lowercase, crop and replace
Replies: 7
Views: 9104

Re: Regex for lowercase, crop and replace

Thanks. Now I've got it. Movie Format: Children of Men.2009.bluray.6ch.dts.23fps.5503kbps.x264.720p.mkv {n}.{y}.{source.lower()}.{af.lower()}.{ac.lower()}.{(int)video.framerate.toFloat()}fps.{(video.bitrate.toFloat()/1000).round()}kbps.{vc.lower()}.{vf} Episode Format: Breaking Bad S03E11 Offene ...
by martzell
17 Nov 2013, 23:51
Forum: Episode / Movie Naming Scheme
Topic: Regex for lowercase, crop and replace
Replies: 7
Views: 9104

Re: Regex for lowercase, crop and replace

Thanks. Where is a complete documentation / reference? .round isn't mentioned here: http://www.filebot.net/naming.html http://www.filebot.net/forums/viewtopic.php?f=5&t=2#p51 I need a function to short the framerate 29.976 without rounding to 29. How to obtain with regex? How to adjust the output ...
by martzell
15 Nov 2013, 01:03
Forum: Episode / Movie Naming Scheme
Topic: Regex for lowercase, crop and replace
Replies: 7
Views: 9104

Regex for lowercase, crop and replace

Hello, which regex-magic is necessary to change the filenames like these? name s00e00 title . year-source . ac-af . mbps-vc . fps-vf . extension Breaking Bad s03e05 Offene Worte . 2010-bluray . dts-6ch . 4.9-avc . 29-720p . mkv Children of Men . 2011-dvd . ac3-2ch . 0.8-xvid . 25-394p . m4v The ...