/** Codec Vídeo: en nombre fichero **/ def codecVideo = (any{vc}{0} =~ /HEVC|265|ATEME/ ) ? 'HEVC' : (any{vc}{0} =~ /264/) ? 'AVC' : vc /**************/ /******* Calidad ******/ def calidad = (vf =~ '2160.') ? //4K (peso > 30 && numericBps >= 26000000) ? "UHDRemux" : (peso > 15) ? "UHDRip" : "microUHD" : es1080 ? //1080 es1080Remux ? vf+" BDRemux" : (numericBps > 8000000) ? vf : "microHD" : vf def fuente = {try{ source } catch(err){null}}() if (fuente!=null) calidad = calidad.startsWith("micro") ? calidad : vf /***************************/ /** Formato distribución **/ formato_distribucion = fuente!=null ? fuente : relocation ? '' : fn=~/(?i)\bblu.?ray\b|\bbdrip\b/ ? (calidad=~/(?i).+rip/ ? '' : 'BDRip') : fn=~/(?i)remux/ ? (calidad=~/(?i).+remux/ ? '' : 'BDRemux') : fn=~/(?i)\bWEB.??(DL|RIP)\b/ ? 'WEB-DL' : '' if (formato_distribucion=='WEB-DL') { def plataforma = fn.find( //coge el contenido que encaja /(?i)\bAMZN?\b|\bNF\b|\bHBO\b|\bHBO.?MAX\b|\bHMAX\b|\bHULU\b|\bA3P\b|\bDPLY\b|\bSTARZ\b|\bFILMIN\b|\bFLMN\b|\bNETFLIX\b|\bDSN.?\b|\bDSP+?\b|\bRTVE\b|\bFLIXOL.\b|\bM\+\b/ ) if (plataforma!=null) plataforma = plataforma.replace("MVPLUS","MV+") formato_distribucion = formato_distribucion+(plataforma!=null?(' '+plataforma.toUpperCase()):'') } if (formato_distribucion!='') formato_distribucion=' '+formato_distribucion /**********************************/ /**** HDR ********/ def hdr_info='' try{ def mHDRCol = ["BT.709" : "NO", "BT.2020" : "YES"] def _HDRMap = ["HDR10": "HDR10", "SMPTE ST 2086": "HDR10", "SMPTE ST 2094 App 4": "HDR10+", "Dolby Vision / SMPTE ST 2086": "Dolby Vision", "Dolby Vision / HDR10": "Dolby Vision",] def vid = video.first() String _HDR switch (bitdepth) { case { it > 8 }: _HDR = any { vid["HDR_Format_Commercial"] } { vid["HDR_Format"] } { hdr } { null } break default: "$bitdepth-bit" break } hdr_info = _HDRMap.find { k, v -> k =~ _HDR }?.value if (hdr_info!=null) hdr_info=' '+hdr_info else hdr_info='' } catch (err) {} /*****************/ /**** Profundidad vídeo ****/ def myBitrate = 'noBRdef' try{ myBitrate = mbps.replace(/.0/,'').replace(' Mbps','M') }catch(err){} def myFps = ' FRvar' try { myFps = ' '+fps.replace(/.0/,'').replace(' fps','f') }catch(err){} /***************************/ /* BLOQUE VIDEO */ def bloqueCalidadVideo = calidad + formato_distribucion def bloqueDescVideo = myBitrate + myFps + hdr_info def bloqueVideo = ' ['+codecVideo+' '+bloqueCalidadVideo+' '+bloqueDescVideo+']' /**********************************************************************************************************/