Se ha producido un error al procesar la plantilla.
The following has evaluated to null or missing:
==> cmsEntity.getLocalizedField(profile, "/entity/fields/title")  [in template "20116#20152#259373" at line 10, column 25]

----
Tip: If the failing expression is known to be legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??
----

----
FTL stack trace ("~" means nesting-related):
	- Failed at: #assign productTitle = cmsEntity.getL...  [in template "20116#20152#259373" at line 10, column 1]
----
1<#include "${templatesPath}/227222">  
2 
3<#if cmsEntity?has_content> 
4 
5<#assign mainImage = "" > 
6<#if cmsEntity.getLocalizedField(profile, "/entity/assets/mainImage")?has_content> 
7    <#assign mainImage = cmsEntity.getLocalizedField(profile, "/entity/assets/mainImage") > 
8</#if> 
9 
10<#assign productTitle = cmsEntity.getLocalizedField(profile, "/entity/fields/title")> 
11<#assign products = [] > 
12<#if cmsEntity.getField(profile, "/entity/relationships/bundles")?has_content> 
13    <#assign bundles = cmsEntity.getField(profile, "/entity/relationships/bundles") > 
14    <#assign products = cmsBundleService.getProductsInBundle(profile, bundles.get(0).id)> 
15</#if> 
16 
17<#assign mobileImg = ""> 
18<#if  cmsEntity.getLocalizedField(profile, "/entity/assets/mobileMainImage")?has_content> 
19    <#assign mobileMainImage = cmsEntity.getLocalizedField(profile, "/entity/assets/mobileMainImage") > 
20    <#if mobileMainImage.url?has_content> 
21        <#assign mobileImg = mobileMainImage.url> 
22    </#if> 
23</#if> 
24 
25<#assign portalUrl = themeDisplay.getPortalURL() > 
26<#assign currentURL = portalUrl + themeDisplay.getURLCurrent()  > 
27<@appendHTMLMetas currentURL cmsEntity /> 
28 
29<div class="main-image-container"> 
30 
31<div class="parallax-window" data-parallax="scroll"></div> 
32 
33<#if cmsEntity.getField(profile, "/entity/fields/summary")?has_content > 
34    <#assign summary = cmsContentFormatterService.getMarkdown(cmsEntity.getLocalizedField(profile, "/entity/fields/summary"))> 
35</#if> 
36 
37 
38    <@sectionHeader title="${title}" menuTitle="${menuTitle}" cssClasses="background" id="solutions-main-image"/>  
39    <div class="gradient-layer-black-left"></div> 
40 
41    <div class="bg-content">  
42        <div class="first-section">  
43            <h1 class="product-page-heading text-light">${productTitle}</h1> 
44            <div class="row justify-content-between"> 
45                <div class="col-12 col-md-7 article-content"> 
46                    <#if summary?has_content> 
47                        <div class="product-page-intro text-light">${summary}</div>             
48                    </#if> 
49                     
50                     
51                    <#if cmsEntity.getField(profile, "/entity/relationships/bundleSpecifications/properties/shortTermMaxSpl")?has_content > 
52                        <#assign spl = cmsEntity.getField(profile, "/entity/relationships/bundleSpecifications/properties/shortTermMaxSpl") > 
53                        <div class="row text-white mb-4">  
54                            <div class="col-12 col-xl-6">  
55                                <div class="media product-page-media">  
56                                    <@imageThumbnail src="${getProductSpecificationIconUrl('SPL_white')}" id="" cssClasses="mr-3" thumbnail="techSpecIcon"/> 
57                                    <div class="media-body"> <p class="mt-0 text-bolder"><@liferay.language key="spl"/></p> <p class="small">${spl} dB</p></div> 
58                                </div>  
59                            </div> 
60                    </#if> 
61 
62                    <#assign  
63                        frequencyResponseAccuracy = "" 
64                        frequencyResponseLowCutoff = "" 
65                        frequencyResponseHighCutoff = "" 
66
67                     
68                    <#if cmsEntity.getField(profile, "/entity/relationships/bundleSpecifications/properties/frequencyResponseAccuracy")?has_content >  
69                        <#assign frequencyResponseAccuracy = cmsEntity.getField(profile, "/entity/relationships/bundleSpecifications/properties/frequencyResponseAccuracy")> 
70                    </#if> 
71                    <#if cmsEntity.getField(profile, "/entity/relationships/bundleSpecifications/properties/frequencyResponseLowCutoff")?has_content >  
72                        <#assign frequencyResponseLowCutoff = cmsEntity.getField(profile, "/entity/relationships/bundleSpecifications/properties/frequencyResponseLowCutoff")> 
73                    </#if> 
74                    <#if cmsEntity.getField(profile, "/entity/relationships/bundleSpecifications/properties/frequencyResponseHighCutoff")?has_content >  
75                        <#assign frequencyResponseHighCutoff = cmsEntity.getField(profile, "/entity/relationships/bundleSpecifications/properties/frequencyResponseHighCutoff")> 
76                    </#if>                             
77 
78                    <#if frequencyResponseAccuracy?has_content && frequencyResponseLowCutoff?has_content && frequencyResponseHighCutoff?has_content> 
79                            <div class="col-12 col-xl-6">  
80                                <div class="media product-page-media">  
81                                    <@imageThumbnail src="${getProductSpecificationIconUrl('AccuracyOfFrequencyResponse_white')}" id="" cssClasses="mr-3" thumbnail="techSpecIcon"/> 
82                                    <div class="media-body">  
83                                        <p class="mt-0 text-bolder"><@liferay.language key="accuracy-of-frequency-response"/></p>  
84                                        <p class="small"> 
85                                            ${frequencyResponseLowCutoff} Hz -  
86                                            ${frequencyResponseHighCutoff/1000} kHz   
87                                            &#xB1;${frequencyResponseAccuracy} dB </p> 
88                                    </div> 
89                                </div>  
90                            </div>  
91                        </div> 
92                    </#if> 
93 
94                    <hr class="bg-white"> 
95                     
96                    <#if products?has_content> 
97                        <p class="mt-4 text-bolder text-light"><@liferay.language key="products-in-this-solution"/></p> 
98                        <#list products as product> 
99                            <#assign i = product?index> 
100                            <#assign quantity = bundles.get(0).relationships.productEntries.get(i).properties.quantity> 
101                            <#assign image = product.getLocalizedField(profile, "/entity/assets/listingImage")> 
102                            <#assign alt = ""> 
103                             
104                            <#assign listingImageRel =  product.getLocalizedField(profile, "/entity/relationships/listingImage/locales")!"" > 
105                             
106                            <#if listingImageRel?has_content && !listingImageRel.properties.isNull("altText")> 
107                                 <#assign alt = localizeField(listingImageRel.properties.altText, profile.getCMSLangCode())> 
108                            </#if> 
109                             
110                            <#assign name = product.getLocalizedField(profile, "/entity/fields/title")> 
111                             
112                            <div class="solution-products"> 
113                                 
114                                <div class="media"> 
115                                    <div class="media-img mr-2"> 
116                                        <img alt="${alt}" src="${image.url}?w=70&fm=png&fl=png8"> 
117                                    </div> 
118                                    <div class="media-body align-self-center"> 
119                                        <span class="h2 text-bold text-light">  
120                                            ${quantity} 
121                                        </span> 
122                                        <span class="text-light"> × </span> 
123                                        <span class="text-bold text-light">${name}</span> 
124                                    </div> 
125                                </div> 
126                            </div> 
127                        </#list> 
128                    </#if> 
129                </div>  
130            </div>  
131        </div>  
132    </div> 
133     
134    <@sectionFooter/>  
135 
136    <@printSubmenu /> 
137 
138    <#if mainImage?has_content && mainImage.url?has_content> 
139        <@parallaxBackground url="${mainImage.url}?w=1250&fm=jpg&q=85" speed="0.4" mobileUrl="${mobileImg}"/> 
140    </#if> 
141 
142</div> 
143     
144    <style> 
145    .solution-products >span{ 
146       vertical-align: middle; 
147
148 
149    .background { 
150            background: none; 
151
152 
153    .bg-content { 
154        position: relative; 
155        min-height: 90vh; 
156
157     
158.background { 
159    position: relative; 
160}  
161 
162@media (min-width: 992px) { 
163    .background { 
164        min-height: calc(100vh - 80px); 
165
166
167 
168    /* 
169    .has-control-menu .background {  
170        height: calc(100vh - 56px - 50px + 500px);  
171
172    */ 
173 
174    .solution-products .media-img { 
175        text-align: center; 
176
177 
178    .solution-products .media-body span { 
179        vertical-align: middle; 
180
181 
182    /* yliajaa olemassaolevan */ 
183    #mainImage .container-padding hr { 
184        margin: 1rem auto; 
185        border: 1px solid black; 
186
187 
188    .text-link { 
189        cursor: pointer; 
190
191 
192    @media (min-width: 992px){ 
193        .first-section .row { 
194            width: 100% !important; 
195
196
197 
198    @media (min-width: 992px) { 
199        .first-section > .row, .first-section .product-page-heading { 
200            width: 50%; 
201
202
203     
204    </style> 
205 
206</#if> 

8340A

SPL

110 dB

Respuesta en frecuencia

38 Hz - 22 kHz (-6dB)

Dimensiones

H 365 x W 237 x D 223 mm, with Iso-Pod™ (ver en pulgadas)

7370A

SPL

113 dB

Respuesta en frecuencia

19 Hz - 150 Hz (-6dB)

Dimensiones

H 625 x W 555 x D 496 mm, (ver en pulgadas)

Active Crossovers

Directivity Control Waveguide (DCW™) Technology

Intelligent Signal Sensing (ISS™) Technology

Iso-Pod™ Stand

Minimum Diffraction Enclosure (MDE™) Technology

Optimised Amplifiers

Protection Circuitry

Reflex Port Design

Smart Active Monitoring (SAM™) and GLM™ calibration technology

Versatile Mountings

Bass Management System

Laminar Spiral Enclosure (LSE™) Technology

Encuentra tu representante

Introduce tu ciudad para encontrar el representante más cercano

Filters
X Filters
All
Monitores de estudio
Audio para casa
Instalación AV
Servicio técnico
Sala de demostración
Centro de experiencia
SAM Certified
Smart IP Certified
País

Preguntas frecuentes

The Classic 8000 Series monitors have an analogue input. The 7200 Series SAM subwoofers have AES/EBU digital outputs only. However, other 7300 Series SAM subwoofers have analogue inputs and outputs and can be used also with analogue monitors.

Which SAM™ Products You Are Going to Mix With the Classic 8000 Series?
Mixing 8000 Series and SAM™ monitors is not recommended

We do not recommend mixing Classic 8000 Series monitors with SAM™ Monitors.
If the analogue input sensitivity of 8000 Series and SAM™ Series monitors are the same, Genelec SAM™ Monitors exhibit a slightly larger latency (< 5 ms) than 8000 Series monitors. Therefore Classic 8000 Series and SAM™ Series monitors should not be mixed in a stereo pair or multichannel setup.

It is alright to mix Classic 8000 Series with SAM™ Subwoofers

However, it is okay to mix the Classic 8000 Series monitors with SAM™ Subwoofers. Any Classic 8000 Series monitors can be used with SAM™ Subwoofers, in any stereo or multichannel setup.

Setting the room response calibration controls

Genelec monitors are calibrated flat in anechoic free field conditions. When the monitor is placed in a room close to walls or other boundaries, the low frequency output of the monitor increases. To achieve a flat low frequency response an adjustment of typically -4 dB on the bass tilt control is used. Genelec also provides a bass roll-off control to compensate for any remaining excessive LF energy around the low cut-off frequency.
Genelec GLM AutoCal can implement a more precise compensation after measuring the acoustic effects produced by the monitor’s installation location.

Differences in room reverberation time and listening distance can lead to changes being required in the treble region so treble tilt is fitted to most of the models in the Genelec range.

In three-way monitors and large main systems there are additional driver controls for the bass level, mid level and treble level which enable very fine adjustment of the frequency response so that the monitors can be placed in many different listening environments, whilst still achieving a consistent and neutral sound reproduction.

The best way to set the room response controls of a Genelec monitor is by taking an acoustical measurement at the listening location, using a measurement system for those products that offer local controls (DIP switches) on the monitor or subwoofer, or by using GLM AutoCal for the SAM™ (Smart Active Monitoring) products.