Need anymore help? Get in touch!
+49 (0) 30 589933-23Mo - Thu: 9am to 5pm | Fr: 9am to 4pm
$(".is-zoomable img").on("click", function(event){
$(this).closest(".is-zoomable").find(".popup-image").css("display", "block");
});
$(".popup-image .popup-image__close").on("click", function(event){
$(this).closest(".is-zoomable").find(".popup-image").css("display", "none");
});
$(".video__play").on("click", function(event){
$(this).closest(".video-xcontainer").find(".video__poster-wrapper").css("display", "none");
$(this).closest(".video-xcontainer").find(".video__wrapper").css("display", "block");
var iframe = $(this).closest(".video-xcontainer").find("iframe").get(0);
if(iframe){
try {
let video = iframe.contentWindow.document.querySelector('video');
if(video){
video.play();
} else {
setUrlToAutoplay(iframe);
}
} catch (error) {
setUrlToAutoplay(iframe);
}
} else {
var localVideo = $(this).closest(".video-xcontainer").find("video").get(0);
if(localVideo) {
localVideo.play();
}
}
});
function setUrlToAutoplay(iframe){
var url = new URL(iframe.src);
url.searchParams.set("autoplay", "1");
iframe.src = url.toString();
}
You can download the user manual as a PDF .
And yes, there is an API for the sound file upload. You can access the documentation at GEMA sound file API.
And yes, there is an API for the sound file upload. You can access the documentation at GEMA sound file API.
Further questions
-
SoundfilesCan I also upload the entire score of a film and a...
-
SoundfilesCan I revoke approvals that I have given for monit...
-
SoundfilesCan I upload several sound files or metadata in bu...
-
SoundfilesCan I upload several soundfiles for a GEMA work nu...
-
SoundfilesWhat do I have to consider when I upload a sound f...
-
SoundfilesWhat do the individual status details in the ‘appr...
-
SoundfilesWhat is a sound file and when should I upload it?
-
SoundfilesWhere is the data saved and where do the sound fil...