We provide full production and line production services for TV shows, commercials, documentaries, series, music videos and testimonials as well as corporate and product videos to local and foreign brands, agencies, TV networks while meeting all expectations of high quality and cost effectiveness. We find the best, most efficient and convenient ways to help your ideas come alive.
For legal matters: legal@istanbulproductions.com
function introaudio(){
// Kullanıcı etkileşimi kontrolü
if (document.hasUserInteracted) {
$("#audiointro").trigger("play");
}
}
// Kullanıcı etkileşimi takibi
document.addEventListener('click', function() {
document.hasUserInteracted = true;
// İlk tıklamada sesi başlat
if (!document.audioStarted) {
document.audioStarted = true;
$("#audiointro").trigger("play");
}
});
$(document).ready(function() {
// Otomatik ses başlatmayı kaldırdık - kullanıcı etkileşimi gerekiyor
// setTimeout(introaudio,3000);
});
//setTimeout(introaudio,3000);