กลับไปที่ช่วงพักโฆษณาที่ข้าม
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
ในฐานะผู้เผยแพร่วิดีโอ คุณอาจต้องการป้องกันไม่ให้ผู้ชม
ที่ผ่านโฆษณาตอนกลางของคุณ เมื่อผู้ใช้กรอผ่านช่วงพักโฆษณา
คุณสามารถนำหน่วยโฆษณากลับไปยังจุดเริ่มต้นของช่วงพักโฆษณา แล้วค่อยกลับมาที่หน้านี้
ไปยังตำแหน่งที่ผู้ใช้ค้นหาหลังจากช่วงพักโฆษณาสิ้นสุดลง ช่วงเวลานี้
ที่เรียกว่า "snapback"
โปรดดูแผนภาพด้านล่างเป็นตัวอย่าง ผู้ชมของคุณกำลังดูวิดีโอ
และตัดสินใจค้นหาจากช่วง 5 นาทีจนถึง 15 นาที
อย่างไรก็ตาม มีช่วงพักโฆษณาในช่วงเวลา 10 นาทีที่คุณต้องการ
ในการรับชมก่อนที่จะได้รับชมเนื้อหาหลังจากนั้น:

หากต้องการแสดงช่วงพักโฆษณา ให้ทำตามขั้นตอนต่อไปนี้
- ตรวจสอบว่าผู้ใช้ทำการค้นหาที่ข้ามผ่านช่วงพักโฆษณาที่ยังไม่ได้ดูหรือไม่
ให้ย้อนกลับไปที่ช่วงพักโฆษณา
- หลังจากช่วงพักโฆษณาสิ้นสุดลง ให้นำโฆษณากลับไปยังกรอวิดีโอเดิม
ในรูปแบบแผนภาพ จะมีลักษณะดังนี้

ต่อไปนี้เป็นวิธีการนำ Snapback ไปใช้ IMA DAI SDK ดังที่แสดงใน
ตัวอย่างขั้นสูง
ป้องกันไม่ให้ระบบเลิกดูช่วงพักโฆษณา
ตรวจสอบว่าผู้ใช้ได้ทำการค้นหาที่ผ่านช่วงพักโฆษณาที่ไม่ได้ดูไปแล้วหรือไม่
ให้ย้อนกลับไปที่ช่วงพักโฆษณา
ใน HTML5 SDK ให้ตั้งค่า Listener เหตุการณ์ในเหตุการณ์ seeked
ของโปรแกรมเล่นวิดีโอ
เพื่อทริกเกอร์ onSeekEnd()
วิธีการดังกล่าว (แสดงอยู่ด้านล่าง) จะตรวจสอบจุดเริ่มโฆษณา
ก่อนถึงเวลาที่ผู้ใช้ค้นหา หากยังไม่ได้เล่น ให้ข้ามไปที่ตอนเริ่มต้น
แทนจุดกรอโฆษณาที่ต้องการในตอนแรก และบันทึก
จุดกรอไปยัง snapForwardTime
function onSeekEnd() {
if (isLiveStream) { return; }
if (isSnapback) {
isSnapback = false;
return;
}
var currentTime = videoElement.currentTime;
var previousCuePoint =
streamManager.previousCuePointForStreamTime(currentTime);
if (previousCuePoint && !previousCuePoint.played) {
isSnapback = true;
snapForwardTime = currentTime;
videoElement.currentTime = previousCuePoint.start;
}
นำผู้ใช้กลับไปยังการค้นหาเดิม
ตอนนี้เมื่อได้รับเหตุการณ์ AD_BREAK_ENDED
ให้ตรวจสอบว่าsnapForwardTime
ได้รับการตั้งค่าแล้ว ถ้ามี ให้นำผู้ใช้ไปยังจุดนั้นในสตรีม เนื่องจากโฆษณา
ผลจาก Snapback คือ
function onAdBreakEnded(e) {
videoElement.controls = true;
clickElement.style.display = 'none';
adUiDiv.style.display = 'none';
if (snapForwardTime && snapForwardTime > videoElement.currentTime) {
videoElement.currentTime = snapForwardTime;
snapForwardTime = null;
}
}
เนื้อหาของหน้าเว็บนี้ได้รับอนุญาตภายใต้ใบอนุญาตที่ต้องระบุที่มาของครีเอทีฟคอมมอนส์ 4.0 และตัวอย่างโค้ดได้รับอนุญาตภายใต้ใบอนุญาต Apache 2.0 เว้นแต่จะระบุไว้เป็นอย่างอื่น โปรดดูรายละเอียดที่นโยบายเว็บไซต์ Google Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-08-21 UTC
[null,null,["อัปเดตล่าสุด 2025-08-21 UTC"],[[["\u003cp\u003eSnapback prevents viewers from skipping mid-roll ads by returning them to the start of the ad break if they seek past it.\u003c/p\u003e\n"],["\u003cp\u003eWhen a viewer seeks past an unwatched ad, snapback takes them back to the ad and then returns them to their intended location after the ad completes.\u003c/p\u003e\n"],["\u003cp\u003eImplementing snapback involves checking for seeks past unwatched ad breaks and redirecting the viewer accordingly using the IMA DAI SDK.\u003c/p\u003e\n"],["\u003cp\u003eDevelopers can use the \u003ccode\u003eseeked\u003c/code\u003e event and \u003ccode\u003epreviousCuePointForStreamTime\u003c/code\u003e function to detect and manage snapback scenarios within their video players.\u003c/p\u003e\n"],["\u003cp\u003eAfter an ad break initiated by snapback, the \u003ccode\u003eAD_BREAK_ENDED\u003c/code\u003e event and \u003ccode\u003esnapForwardTime\u003c/code\u003e variable are used to return the viewer to their original seek position.\u003c/p\u003e\n"]]],[],null,["# Return to a skipped ad break\n\nAs a video publisher, you may want to prevent your viewers from\nseeking past your mid-roll ads. When a user seeks past an ad break,\nyou can take them back to the start of that ad break, and then return\nthem to their seek location after that ad break has completed. This\nfeature is called \"snapback.\"\n\nAs an example, see the diagram below. Your viewer is watching a video,\nand decides to seek from the 5-minute mark to the 15-minute mark.\nThere is, however, an ad break at the 10-minute mark that you want\nthem to watch before they can watch the content after it:\n\nIn order to show this ad break, take the following steps:\n\n1. Check if the user ran a seek that jumped past an unwatched ad break, and if so, take them back to the ad break.\n2. After the ad break completes, return them to their original seek.\n\nIn diagram form, that looks like this:\n\nHere's how to implement snapback using the IMA DAI SDK, as demonstrated in\n[Advanced Example](https://github.com/googleads/googleads-ima-html5-dai/tree/master/hls_js/advanced).\n\nPrevent a seek from leaving an ad break unwatched\n-------------------------------------------------\n\nCheck if the user has run a seek that went past an unwatched ad break,\nand if so, take them back to the ad break.\nIn the HTML5 SDK, set an event listener on the content player's `seeked` event\nto trigger `onSeekEnd()`. That method (presented below) checks the cue point\nprior to the user's seek time. If it is unplayed, seek to the beginning of that\nad break instead of their initial desired seek point, and save that desired\nseek point in `snapForwardTime`. \n\n function onSeekEnd() {\n if (isLiveStream) { return; }\n if (isSnapback) {\n isSnapback = false;\n return;\n }\n var currentTime = videoElement.currentTime;\n var previousCuePoint =\n streamManager.previousCuePointForStreamTime(currentTime);\n if (previousCuePoint && !previousCuePoint.played) {\n isSnapback = true;\n snapForwardTime = currentTime;\n videoElement.currentTime = previousCuePoint.start;\n }\n\nPut the user back to their original seek\n----------------------------------------\n\nNow when you get an `AD_BREAK_ENDED` event, check to see if `snapForwardTime`\nis set. If so, take the user to that point in the stream, because the ad\nbreak they just watched was the result of snapback: \n\n function onAdBreakEnded(e) {\n videoElement.controls = true;\n clickElement.style.display = 'none';\n adUiDiv.style.display = 'none';\n if (snapForwardTime && snapForwardTime \u003e videoElement.currentTime) {\n videoElement.currentTime = snapForwardTime;\n snapForwardTime = null;\n }\n }"]]