community_icon_html = """"""
loading_icon_html = """"""
share_js = """
async () => {
async function uploadFile(file){
const UPLOAD_URL = 'https://huggingface.co/uploads';
const response = await fetch(UPLOAD_URL, {
method: 'POST',
headers: {
'Content-Type': file.type,
'X-Requested-With': 'XMLHttpRequest',
},
body: file, /// <- File inherits from Blob
});
const url = await response.text();
return url;
}
async function getInputVideoFile(videoEl){
const res = await fetch(videoEl.src);
const blob = await res.blob();
const videoId = Date.now() % 200;
const fileName = `gpt-talking-portrai-${{videoId}}.mp4`;
return new File([blob], fileName, { type: 'video/mp4' });
}
const gradioEl = document.querySelector("gradio-app").shadowRoot || document.querySelector('body > gradio-app');
const whisper_input = gradioEl.querySelector('#text_inp textarea').value;
const outputVideo = gradioEl.querySelector('#video_out video');
const outputVideo_src = gradioEl.querySelector('#video_out video').src;
console.log(outputVideo_src)
const outputVideo_name = outputVideo_src.split('/').pop();
const video_url = `https://fffiloni-gpt-talking-portrait.hf.space/file=https://fffiloni-one-shot-talking-face.hf.space/file=/tmp/${outputVideo_name}`;
let titleTxt = outputVideo_name;
const shareBtnEl = gradioEl.querySelector('#share-btn');
const shareIconEl = gradioEl.querySelector('#share-btn-share-icon');
const loadingIconEl = gradioEl.querySelector('#share-btn-loading-icon');
if(!outputVideo){
return;
};
shareBtnEl.style.pointerEvents = 'none';
shareIconEl.style.display = 'none';
loadingIconEl.style.removeProperty('display');
const videoFile = await getInputVideoFile(outputVideo);
const dataOutputVideo = await uploadFile(videoFile);
const descriptionMd = `
#### What i asked for:
${whisper_input}
#### Video:
${dataOutputVideo}
`;
const params = new URLSearchParams({
title: titleTxt,
description: descriptionMd,
});
const paramsStr = params.toString();
window.open(`https://huggingface.co/spaces/fffiloni/gpt-talking-portrait/discussions/new?${paramsStr}`, '_blank');
shareBtnEl.style.removeProperty('pointer-events');
shareIconEl.style.removeProperty('display');
loadingIconEl.style.display = 'none';
}"""