/*! elementor-pro - v3.26.0 - 17-12-2024 */ (()=>{"use strict";class Screenshot extends elementorModules.ViewModule{getDefaultSettings(){return{empty_content_headline:"Empty Content.",crop:{width:1200,height:1500},excluded_external_css_urls:["https://kit-pro.fontawesome.com"],external_images_urls:["https://i.ytimg.com"],timeout:15e3,render_timeout:5e3,timerLabel:null,timer_label:`${ElementorScreenshotConfig.post_id} - timer`,image_placeholder:"data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=",isDebug:elementorCommonConfig.isElementorDebug,isDebugSvg:!1,...ElementorScreenshotConfig}}getDefaultElements(){const e=jQuery(ElementorScreenshotConfig.selector),t=e.find(".elementor-section-wrap > .elementor-section, .elementor > .elementor-section");return{$elementor:e,$sections:t,$firstSection:t.first(),$notElementorElements:elementorCommon.elements.$body.find("> *:not(style, link)").not(e),$head:jQuery("head")}}onInit(){return super.onInit(),this.log("Screenshot init","time"),this.timeoutTimer=setTimeout(this.screenshotFailed.bind(this),this.getSettings("timeout")),this.captureScreenshot()}captureScreenshot(){return this.elements.$elementor.length||(elementorCommon.helpers.consoleWarn("Screenshots: The content of this page is empty, the module will create a fake conent just for this screenshot."),this.createFakeContent()),this.removeUnnecessaryElements(),this.handleIFrames(),this.removeFirstSectionMargin(),this.handleLinks(),this.loadExternalCss(),this.loadExternalImages(),Promise.resolve().then(this.createImage.bind(this)).then(this.createImageElement.bind(this)).then(this.cropCanvas.bind(this)).then(this.save.bind(this)).then(this.screenshotSucceed.bind(this)).catch(this.screenshotFailed.bind(this))}createFakeContent(){this.elements.$elementor=jQuery("
").css({height:this.getSettings("crop.height"),width:this.getSettings("crop.width"),display:"flex",alignItems:"center",justifyContent:"center"}),this.elements.$elementor.append(jQuery("

").css({fontSize:"85px"}).html(this.getSettings("empty_content_headline"))),document.body.prepend(this.elements.$elementor)}loadExternalCss(){const e=[this.getSettings("home_url"),...this.getSettings("excluded_external_css_urls")].map((e=>`[href^="${e}"]`)).join(", ");jQuery("link").not(e).each(((e,t)=>{const s=jQuery(t),n=s.clone();n.attr("href",this.getScreenshotProxyUrl(s.attr("href"))),this.elements.$head.append(n),s.remove()}))}loadExternalImages(){const e=this.getSettings("external_images_urls").map((e=>`img[src^="${e}"]`)).join(", ");jQuery(e).each(((e,t)=>{const s=jQuery(t);s.attr("src",this.getScreenshotProxyUrl(s.attr("src")))}))}handleIFrames(){this.elements.$elementor.find("iframe").each(((e,t)=>{const s=jQuery(t),n=jQuery("
",{css:{background:"gray",width:s.width(),height:s.height()}});s.before(n),s.remove()}))}removeUnnecessaryElements(){let e=0;this.elements.$sections.filter(((t,s)=>{let n=!1;return e>=this.getSettings("crop.height")&&(n=!0),e+=jQuery(s).outerHeight(),n})).each(((e,t)=>{t.remove()})),this.elements.$notElementorElements.remove()}handleLinks(){elementorCommon.elements.$body.find("a").attr("href","/")}removeFirstSectionMargin(){this.elements.$firstSection.css({marginTop:0})}createImage(){const e=new Promise((e=>{window.addEventListener("load",(()=>{e()}))})),t=new Promise((e=>{setTimeout((()=>{e()}),this.getSettings("render_timeout"))}));return Promise.race([e,t]).then((()=>{if(this.log("Start creating screenshot."),this.getSettings("isDebugSvg"))return domtoimage.toSvg(document.body,{imagePlaceholder:this.getSettings("image_placeholder")}).then((e=>this.download(e))),Promise.reject("Debug SVG.");return/^((?!chrome|android).)*safari/i.test(window.userAgent)?(this.log('Creating screenshot with "html2canvas"'),html2canvas(document.body).then((e=>e.toDataURL("image/png")))):(this.log('Creating screenshot with "dom-to-image"'),domtoimage.toPng(document.body,{imagePlaceholder:this.getSettings("image_placeholder")}))}))}download(e){const t=jQuery("",{href:e,download:"debugSvg.svg",html:"Download SVG"});elementorCommon.elements.$body.append(t),t.trigger("click")}createImageElement(e){const t=new Image;return t.src=e,new Promise((e=>{t.onload=()=>e(t)}))}cropCanvas(e){const t=this.getSettings("crop.width"),s=this.getSettings("crop.height"),n=document.createElement("canvas"),i=n.getContext("2d"),o=t/e.width;return n.width=t,n.height=s>e.height?e.height:s,i.drawImage(e,0,0,e.width,e.height,0,0,e.width*o,e.height*o),Promise.resolve(n)}save(e){return new Promise(((t,s)=>{elementorCommon.ajax.addRequest("screenshot_save",{data:{post_id:this.getSettings("post_id"),screenshot:e.toDataURL("image/png")},success:e=>{this.log(`Screenshot created: ${encodeURI(e)}`),t(e)},error:()=>{this.log("Failed to create screenshot."),s()}})}))}markAsFailed(){return new Promise(((e,t)=>{elementorCommon.ajax.addRequest("screenshot_failed",{data:{post_id:this.getSettings("post_id")},success:()=>{this.log("Marked as failed."),e()},error:()=>{this.log("Failed to mark this screenshot as failed."),t()}})}))}getScreenshotProxyUrl(e){return`${this.getSettings("home_url")}?screenshot_proxy&nonce=${this.getSettings("nonce")}&href=${e}`}screenshotSucceed(e){this.screenshotDone(!0,e)}screenshotFailed(e){this.log(e,null),this.markAsFailed().then((()=>this.screenshotDone(!1)))}screenshotDone(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;clearTimeout(this.timeoutTimer),this.timeoutTimer=null,window.parent.postMessage({name:"capture-screenshot-done",success:e,id:this.getSettings("post_id"),imageUrl:t},"*"),this.log(`Screenshot ${e?"Succeed":"Failed"}.`,"timeEnd")}log(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"timeLog";this.getSettings("isDebug")&&(console.log("string"==typeof e?`${this.getSettings("post_id")} - ${e}`:e),t&&console[t](this.getSettings("timer_label")))}}jQuery((()=>{new Screenshot}))})(); Sora Turbo features Archives - The Tach https://thetach.com/?tag=sora-turbo-features Thu, 12 Dec 2024 17:11:08 +0000 en-US hourly 1 https://wordpress.org/?v=6.7.1 OpenAI Releases Text-to-Video Model Sora https://thetach.com/?p=908 https://thetach.com/?p=908#respond Tue, 10 Dec 2024 16:40:12 +0000 https://thetach.com/?p=908 Sora, a new AI text-to-video model has been launched by OpenAI, an industry leader in artificial intelligence. This new feature is currently accessible to ChatGPT Plus and Pro, and it is a giant leap in AI writer and editor technology. Intended to turn linear text instructions into high-quality videos, Sora Turbo configures its users with ... Read more

The post OpenAI Releases Text-to-Video Model Sora appeared first on The Tach.

]]> Sora, a new AI text-to-video model has been launched by OpenAI, an industry leader in artificial intelligence. This new feature is currently accessible to ChatGPT Plus and Pro, and it is a giant leap in AI writer and editor technology. Intended to turn linear text instructions into high-quality videos, Sora Turbo configures its users with tools that remove the complexity of video making and expression. It marks OpenAI’s increasing market leadership in the field of multimodal AI solutions in which it collaborates with Meta, Google, and Stability AI.

In this way, OpenAI guarantees that the implementation of Sora Turbo features will allow users to create videos with the assistance of ChatGPT without much effort.  This development not only enhances the creative experience for users but also sets new standards in AI video generation.

The Launch of Sora

Sora Turbo’s release shows that OpenAI is more than willing to push boundaries while also making things available to the general public. Ever since it started commercialization in mid-2022, with the help of Microsoft, OpenAI has been paving new ways in the realm of AI by liberating ChatGPT in November of 2022, which fueled global interest in generative AI.

Initially, Sora Turbo was introduced in February during a research preview phase. During this period, access was restricted to a select group of safety testers to ensure that the model met stringent ethical and technical standards. Following months of refinement, Sora has now been made available to a wider audience, giving ChatGPT Plus and Pro users free access to its innovative capabilities.

Cutting-Edge Features of Sora

Sora’s standout features place it among the most versatile tools in the AI text-to-video model market. Users can generate videos up to 20 seconds long in stunning 1080p resolution. Additionally, Sora supports three aspect ratios widescreen, vertical, and square catering to a broad range of content needs across platforms such as TikTok, YouTube, and Instagram.

These Sora Turbo features provide immense value to content creators, marketers, and businesses. There is no denying that creating polished videos from scratch, especially if the user lacks film industry experience, pushes this tool into the forefront of the AI movement in content creation. In addition, through connection with ChatGPT, users can utilize conversational AI together with video creation.

Availability and Regional Restrictions

While Sora has been widely praised for its capabilities, its availability is currently limited to specific regions. The AI text-to-video model is not yet accessible in EU countries, Switzerland, and the UK due to ongoing compliance and safety measures. However, Sora is operational in other regions where ChatGPT is available. Ensuring a significant user base can benefit from its features.

OpenAI has expressed its commitment to expanding access to these restricted regions once legal and ethical guidelines have been met. This phased rollout approach demonstrates OpenAI’s focus on ensuring global accessibility. While adhering to the highest safety standards in multimodal AI technologies.

Competing in the AI Video Landscape

The launch of Sora Turbo signals OpenAI’s intent to dominate the competitive market of text-to-video tools. With this release, OpenAI enters the arena alongside established players like Meta and Google. Who have already developed robust solutions in AI video generation. Another competitor with interesting tools for content creators is Stability AI’s Stable Video Diffusion.

The advantage of the Sora is that it works in harmony with ChatGPT and is very easy to use. In doing so, the very powerful capabilities are harmonized with simplicity, making OpenAI stand out as it is aimed at artists. And designers as well as ordinary users who would like to experiment with an AI-based text generator.

Safeguards and Ethical Measures

OpenAI has taken extensive measures to ensure that Sora’s capabilities are used responsibly. Recognizing the potential for misuse, the company has implemented robust safeguards to block harmful content such as child abuse materials and sexual deepfakes.

To further mitigate risks, OpenAI has restricted the ability to upload videos featuring people during the initial phase. It is this conservative strategy that enables the company to fine-tune its deepfake defense technologies while at the same gaining people’s confidence. OpenAI has placement towards ethical use of its product. Hence they are on a mission to make sure AI text-to-video tools are used responsibly.

Tailored Pricing Plans for Broader Access

Currently, the Sora Turbo features are offered at no additional cost to ChatGPT Plus and Pro users. However, OpenAI has announced plans to introduce tailored pricing options early next year. 

To this end, flexibly priced models are made available in the market by OpenAI. This plan is in line with the company’s mission of providing the masses with the advantages of applying artificial intelligence in content production and promoting the use of the technology by other businesses.

The Impact of Sora on Content Creation

With the new Sora Turbo, one can expect a complete paradigm shift not only in the creation of digital content. With the increased need for video content, Sora will help creators fulfill this need efficiently.

AI text-to-video model Sora Turbo features
Source: tribune.com

The fields of marketing, education, and entertainment will likely see the greatest advantage of the AI text-to-video model. Sora makes the creation of videos more accessible while automating the difficult aspects of video creation editing to simply require user input while the AI does the work.

The Future of Sora

OpenAI’s plans for Sora extend beyond its current capabilities. In the upcoming updates that exist in the pipeline, the potential changes can be extended video duration. Higher video quality, and sophisticated customization. These improvements will also help make Sora one of the best AI tools in content creation even more established.

By constantly updating and actively listening to the needs of users. OpenAI is now guaranteeing that Sora will grow to adapt to all the latest trends in creating content digitally. Stating that OpenAI will contribute to the future development of multimodal Artificial Intelligence technologies with its focus on safety, accessibility, and user’’ satisfaction.

Conclusion

Sora Turbo is an exceptional example of AI text-to-video that opens impressive opportunities shortly. With high-end features incorporated along with measures for ethical usage of the AI system. OpenAI has felt the bar immeasurably high for creating AI videos. The fact that the tool works with ChatGPT and its main target is accessibility turns it into a really useful tool for content creation.

As you read this, Sora is evolving at the hands of OpenAI which opens up new opportunities for future advancement across various sectors and facilitates life-changing opportunities for users across the globe. Due to the innovation, Ethics, and User satisfaction policies adopted by the company. It is well placed to continue leading in the use of Artificial Intelligence in content creation.

FAQs

What is OpenAI’s Sora model used for?

Sora generates videos from text, simplifying video creation for various users.

Who can access Sora Turbo features?

Sora is available for ChatGPT Plus and Pro users worldwide, excluding certain regions.

What video quality does Sora support?

Sora creates videos up to 20 seconds in 1080p resolution with flexible aspect ratios.

Is Sora available in all countries?

Sora isn’t available in the EU, UK, or Switzerland due to compliance issues.

How does OpenAI ensure Sora is used responsibly?

OpenAI uses safeguards to block harmful content and refine deepfake prevention.

The post OpenAI Releases Text-to-Video Model Sora appeared first on The Tach.

]]>
https://thetach.com/?feed=rss2&p=908 0