YouTube Embedded Players and Player Parameters

نظرة عامة

يشرح هذا المستند كيفية تضمين مشغّل YouTube في تطبيقك، ويحدد أيضًا المعلمات المتوفرة في مشغّل YouTube المضمّن.

من خلال إلحاق المعلمات بعنوان URL لإطار iframe، يمكنك تخصيص تجربة التشغيل في تطبيقك. على سبيل المثال، يمكنك تشغيل الفيديوهات تلقائيًا باستخدام المَعلمة autoplay أو التسبب في تشغيل فيديو بشكل متكرر باستخدام المَعلمة loop. ويمكنك أيضًا استخدام المَعلمة enablejsapi لتفعيل إمكانية التحكّم بالمشغّل من خلال IFRAME Player API.

تحدّد هذه الصفحة حاليًا كل المعلّمات المتوافقة في أي مشغّل مضمّن في YouTube. يحدّد كل تعريف معلّمة المشغّلات التي تتيح المعلّمة المقابلة.

ملاحظة: يجب أن تشتمل المشغّلات المضمّنة على إطار عرض 200 بكسل في 200 بكسل على الأقل. إذا عرض المشغّل عناصر التحكّم، يجب أن يكون كبيرًا بما يكفي لعرض عناصر التحكّم بالكامل بدون تقليص إطار العرض بحيث يقلّ عن الحد الأدنى للحجم. وننصح بأن يكون عرض المشغّلات 16:9 على الأقل 480 بكسل وطولها 270 بكسل.

تضمين مشغّل YouTube

يمكنك اتّباع أي من الطرق التالية لتضمين مشغّل YouTube في تطبيقك وتحديد معلَمات المشغّل. يُرجى ملاحظة أنّ التعليمات أدناه توضّح كيفية تضمين مشغّل يحمّل فيديو واحدًا. يوضّح القسم التالي كيفية ضبط المشغّل لتحميل قائمة تشغيل أو الفيديوهات التي حمّلها أحد المستخدمين.

تضمين لاعب باستخدام علامة <iframe>

حدِّد علامة <iframe> في تطبيقك يُحدِّد فيها عنوان URL src المحتوى الذي سيحمّله المشغِّل بالإضافة إلى أي مَعلمات أخرى للمشغّل تريد ضبطها. تحدّد المعلّمتَان height وwidth من علامة <iframe> أبعاد المشغّل.

إذا أنشأت العنصر <iframe> بنفسك (بدلاً من استخدام واجهة برمجة تطبيقات مشغّل IFRAME لإنشاءه)، يمكنك إلحاق معلّمات المشغّل مباشرةً بنهاية عنوان URL. يكون عنوان URL بالتنسيق التالي:

https://www.youtube.com/embed/VIDEO_ID

ستؤدي العلامة <iframe> أدناه إلى تحميل مشغّل بحجم 640x360 بكسل لتشغيل فيديو YouTube M7lc1UVf-VE. بما أنّ عنوان URL يضبط المَعلمة autoplay على 1، سيتمّ تشغيل الفيديو تلقائيًا بعد تحميل المشغّل.

<iframe id="ytplayer" type="text/html" width="640" height="360"
  src="https://www.youtube.com/embed/M7lc1UVf-VE?autoplay=1&origin=http://example.com"
  frameborder="0"></iframe>

تضمين لاعب باستخدام واجهة برمجة تطبيقات IFRAME Player

اتّبِع تعليمات واجهة برمجة تطبيقات Player iFrame لإدراج مشغّل فيديو في صفحة الويب أو التطبيق بعد تحميل رمز JavaScript لواجهة برمجة التطبيقات Player API. المعلّمة الثانية في أداة إنشاء مشغّل الفيديو هي عنصر يحدّد خيارات المشغّل. وضمن هذا العنصر، تحدد السمة playerVars معلَمات المشغّل.

يوضّح رمزا HTML وJavaScript أدناه مثالاً بسيطًا يُدرج فيه مشغّل YouTube في عنصر الصفحة الذي تبلغ قيمته id بقيمة ytplayer. يتم استدعاء الدالة onYouTubePlayerAPIReady() المحددة هنا تلقائيًا عند تحميل رمز واجهة برمجة تطبيقات مشغّل إطار iframe. لا يحدّد هذا الرمز أي مَعلمات مشغّل، ولا يحدّد أيضًا معالجات الأحداث الأخرى.

<div id="ytplayer"></div>

<script>
  // Load the IFrame Player API code asynchronously.
  var tag = document.createElement('script');
  tag.src = "https://www.youtube.com/player_api";
  var firstScriptTag = document.getElementsByTagName('script')[0];
  firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);

  // Replace the 'ytplayer' element with an <iframe> and
  // YouTube player after the API code downloads.
  var player;
  function onYouTubePlayerAPIReady() {
    player = new YT.Player('ytplayer', {
      height: '360',
      width: '640',
      videoId: 'M7lc1UVf-VE'
    });
  }
</script>

اختيار المحتوى المطلوب تشغيله

يمكنك ضبط المشغّل المضمّن لتحميل فيديو أو قائمة تشغيل أو فيديوهات حمّلها أحد المستخدمين.

تشرح القائمة التالية هذه الخيارات:

  • تحميل فيديو

    بالنسبة إلى تضمين إطار Google iframe، يتم تحديد معرّف فيديو YouTube للفيديو الذي تريد تحميله في عنوان URL لـ Iإطارات src.

    https://www.youtube.com/embed/VIDEO_ID

    إذا كنت تستخدم YouTube Data API (الإصدار 3)، يمكنك إنشاء عناوين URL هذه آليًا من خلال استرداد معرّفات الفيديوهات من نتائج البحث أو موارد العنصر في قائمة التشغيل أو موارد الفيديو أو غيرها من الموارد. بعد الحصول على معرّف فيديو، استبدِل نص VIDEO_ID في عناوين URL أعلاه بهذه القيمة لإنشاء عنوان URL للمشغّل.

  • تحميل قائمة تشغيل

    يمكنك ضبط مَعلمة مشغّل listType على playlist. بالإضافة إلى ذلك، اضبط مَعلمة مشغّل list على رقم تعريف قائمة تشغيل YouTube التي تريد تحميلها.

    https://www.youtube.com/embed?listType=playlist&list=PLAYLIST_ID

    تجدر الإشارة إلى أنك تحتاج إلى إضافة معرّف قائمة التشغيل بالأحرف PL كما هو موضّح في المثال التالي:

    https://www.youtube.com/embed?listType=playlist&list=PLC77007E23FF423C6

    إذا كنت تستخدم YouTube Data API (الإصدار 3)، يمكنك إنشاء عناوين URL بطريقة آلية من خلال استرداد أرقام تعريف قوائم التشغيل من نتائج البحث أو موارد القناة أو موارد النشاط. بعد الحصول على رقم تعريف قائمة تشغيل، استبدِل القيمة PLAYLIST_ID في عنوان URL أعلاه.

  • تحميل فيديوهات حمَّلها أحد المستخدمين

    يمكنك ضبط مَعلمة مشغّل listType على user_uploads. بالإضافة إلى ذلك، اضبط مَعلمة المشغِّل list على اسم المستخدم على YouTube الذي تريد تحميل الفيديوهات الخاصة به.

    https://www.youtube.com/embed?listType=user_uploads&list=USERNAME

المَعلمات المتوافقة

وجميع المعلّمات التالية اختيارية.

المَعلمات

autoplay

تحدد هذه المعلَمة ما إذا كان سيتم تشغيل الفيديو الأولي تلقائيًا عند تحميل المشغّل. والقيمتان المسموح بإدراجهما هما 0 أو 1. ستكون القيمة التلقائية 0.

في حال تفعيل ميزة "التشغيل التلقائي"، سيتمّ تشغيلها بدون أي تفاعل من المستخدم مع المشغِّل وبالتالي سيتم جمع البيانات ومشاركتها عند تحميل الصفحة.

cc_lang_pref

تحدد هذه المعلمة اللغة التلقائية التي سيستخدمها المشغّل لعرض الترجمة والشرح. اضبط قيمة المَعلمة على رمز لغة يتكوّن من حرفَين وفقًا لمعيار ISO 639-1.

إذا كنت تستخدم هذه المَعلمة أيضًا وضبطت المَعلمة cc_load_policy على 1، سيعرض المشغّل الترجمة والشرح باللغة المحدَّدة عند تحميل المشغّل. إذا لم تضبط أيضًا المَعلمة cc_load_policy، لن يتم عرض الشرح تلقائيًا، ولكن سيتم عرضه باللغة المحدّدة إذا اختار المستخدم تفعيل الشرح.

cc_load_policy

في حال ضبط قيمة المَعلمة على 1، سيتم تلقائيًا عرض مقاطع الترجمة والشرح حتى في حال إيقاف المستخدم للشرح. ويعتمد السلوك التلقائي على تفضيل المستخدم.

color

تحدد هذه المعلّمة اللون الذي سيتم استخدامه في شريط تقدّم الفيديو الخاص بالمشغّل لتمييز مقدار الفيديو الذي سبق أن شاهده المشاهد. وتكون قيم المعلّمات الصالحة red وwhite، ويستخدم تلقائيًا المشغّل اللون الأحمر في شريط تقدّم الفيديو. للمزيد من المعلومات حول خيارات الألوان، يمكنك الاطّلاع على مدوّنة YouTube API.

controls

تشير هذه المعلّمة إلى ما إذا كان سيتم عرض عناصر التحكّم في مشغّل الفيديو:

  • controls=0 – لا تظهر عناصر التحكّم في المشغّل في المشغّل.
  • controls=1 (تلقائي) – تظهر عناصر التحكّم في المشغّل في المشغّل.

disablekb

في حال ضبط قيمة المَعلمة على 1، لا يستجيب المشغِّل لعناصر التحكّم في لوحة المفاتيح. وتكون القيمة التلقائية 0، ما يعني أنّ عناصر التحكّم في لوحة المفاتيح مفعّلة. عناصر التحكّم في لوحة المفاتيح المتوافقة حاليًا هي:

  • مفتاح المسافة أو [k]: تشغيل / إيقاف مؤقت
  • السهم المتجه لليسار: للرجوع إلى الفيديو السابق بمقدار 5 ثوانٍ
  • السهم المتجه لليمين: الانتقال بسرعة إلى العنصر الخامس في الفيديو الحالي
  • السهم المتّجه للأعلى: رفع الصوت
  • السهم المتّجه للأسفل: خفض الصوت
  • [f]: إيقاف/تفعيل العرض بملء الشاشة
  • [j]: الرجوع إلى الخلف بمقدار 10 ثوانٍ في الفيديو الحالي
  • [l]: الانتقال بسرعة إلى 10 ثوانٍ في الفيديو الحالي
  • [m]: كتم صوت الفيديو أو إعادته
  • [0-9]: الانتقال إلى نقطة في الفيديو 0 الانتقال إلى بداية الفيديو، 1 إلى النقطة 10% في الفيديو، 2 الانتقال إلى النقطة 20% من الفيديو، وما إلى ذلك

enablejsapi

وعند ضبط قيمة المَعلمة على 1، يتم تفعيل المشغّل للتحكّم في طلبات بيانات من واجهة برمجة تطبيقات IFRAME Player. والقيمة التلقائية لهذه السمة هي 0، ما يعني أنّه لا يمكن التحكّم في المشغّل باستخدام واجهة برمجة التطبيقات هذه.

للحصول على المزيد من المعلومات حول واجهة برمجة تطبيقات IFRAME وكيفية استخدامها، يُرجى الاطّلاع على مستندات واجهة برمجة تطبيقات IFRAME.

end

تحدد هذه المعلّمة الوقت الذي يتم قياسه بالثواني من بداية الفيديو عندما يتوقف المشغّل عن تشغيل الفيديو. قيمة المَعلمة هي عدد صحيح موجب.

يُرجى العِلم أنّه يتم قياس الوقت من بداية الفيديو وليس من قيمة المَعلمة start أو من المَعلمة startSeconds المستخدَمة في وظائف واجهة برمجة التطبيقات لمشغّل YouTube لتحميل فيديو أو إدراجه في قائمة الانتظار.

fs

يؤدي ضبط هذه المَعلمة على 0 إلى منع عرض زر ملء الشاشة في المشغِّل. وتكون القيمة التلقائية هي 1، ما يؤدي إلى عرض زر ملء الشاشة.

hl

لضبط لغة واجهة المشغّل قيمة المَعلمة هي رمز لغة يتكوّن من حرفَين وفقًا لمعيار ISO 639-1 أو بإحدى اللغات المحدَّدة بالكامل. على سبيل المثال، fr وfr-ca قيمتان صالحتان. وقد يتم أيضًا التعامل مع رموز إدخال اللغة الأخرى، مثل علامات لغة IETF (BCP 47)، بشكل صحيح.

تُستخدم لغة الواجهة لتلميحات التطبيقات في المشغّل وتؤثّر أيضًا في مسار الترجمة التلقائي. يُرجى العِلم أنّ منصة YouTube قد تختار لغة مختلفة لمقاطع الترجمة والشرح استنادًا إلى إعدادات اللغة المفضّلة للمستخدم، ومدى توفّر مسارات الترجمة.

iv_load_policy

يؤدي ضبط قيمة المَعلمة على 1 إلى عرض التعليقات التوضيحية للفيديو بشكل تلقائي، في حين يؤدي ضبطها على 3 إلى عدم عرض التعليقات التوضيحية للفيديو بشكل تلقائي. ستكون القيمة التلقائية 1.

list

تحدّد المَعلمة list، بالإضافة إلى المَعلمة listType، المحتوى الذي سيتم تحميله في المشغّل.

  • إذا كانت قيمة المَعلمة listType هي user_uploads، ستحدّد قيمة المَعلمة list القناة على YouTube التي سيتم تحميل الفيديوهات المحمَّلة إليها.
  • إذا كانت قيمة المَعلمة listType هي playlist، ستحدّد المَعلمة list معرّف قائمة التشغيل على YouTube. في قيمة المَعلمة، عليك إرفاق معرّف قائمة التشغيل بالأحرف PL كما هو موضّح في المثال أدناه.
    https://www.youtube.com/embed?
        listType=playlist
        &list=PLC77007E23FF423C6
  • وإذا كانت قيمة المعلَمة listType هي search، ستحدِّد قيمة المعلَمة list طلب البحث. ملاحظة: تم إيقاف هذه الوظيفة نهائيًا ولن تصبح متاحة اعتبارًا من 15 تشرين الثاني (نوفمبر) 2020.
ملاحظة: في حال تحديد قيم لمَعلمتَي list وlistType، لن يحتاج عنوان URL المضمّن في IFRAME إلى تحديد معرّف فيديو.

listType

تحدّد المَعلمة listType، بالإضافة إلى المَعلمة list، المحتوى الذي سيتم تحميله في المشغّل. قيم المعلّمات الصالحة هي playlist وuser_uploads.

في حال تحديد قيم لمعلّمتَي list وlistType، لا يحتاج عنوان URL المضمّن في إطار iframe إلى تحديد معرّف فيديو.

ملاحظة: تم إيقاف قيمة معلَمة ثالثة، ولن تكون متاحة اعتبارًا من 15 تشرين الثاني (نوفمبر) 2020.search

loop

بالنسبة إلى مشغّل الفيديو الفردي، يؤدي ضبط 1 إلى تشغيل المشغّل الأوّل مرارًا وتكرارًا. بالنسبة إلى مشغّل قوائم التشغيل (أو المشغّل المخصّص)، يشغّل المشغّل قائمة التشغيل بالكامل ثم يبدأ مجددًا عند تشغيل الفيديو الأول.

القيمتان المسموح بإدراجهما هما 0 و1، والقيمة التلقائية هي 0.

ملاحظة: هذه المعلَمة لها دعم محدود في إطارات iframe المضمّنة. لتكرار فيديو واحد، اضبط قيمة المَعلمة loop على 1 واضبط قيمة المَعلمة playlist على معرّف الفيديو نفسه الذي تم تحديده في عنوان URL لواجهة برمجة التطبيقات Player:
https://www.youtube.com/embed/VIDEO_ID?playlist=VIDEO_ID&loop=1

modestbranding

ملاحظة: تم إيقاف هذه المَعلمة نهائيًا وليس لها أي تأثير. يمكنك الاطّلاع على إشعار الإيقاف للحصول على المزيد من المعلومات.

origin

توفّر هذه المَعلمة إجراء أمان إضافيًا لواجهة برمجة تطبيقات Iframe، ولا تتوفّر إلا مع عمليات تضمين IFRAME. إذا كنت تستخدم واجهة برمجة تطبيقات IFRAME، ما يعني أنك تضبط قيمة المَعلمة enablejsapi على 1، عليك دائمًا تحديد نطاقك كقيمة المَعلمة origin.

playlist

تحدِّد هذه المعلّمة قائمة بمعرّفات الفيديو المطلوب تشغيلها مفصولة بفواصل. وإذا حدّدت قيمة، سيكون الفيديو الأول الذي يتم تشغيله هو VIDEO_ID المحدّد في مسار عنوان URL، وسيتم تشغيل الفيديوهات المحدّدة في المعلّمة playlist بعد ذلك.

playsinline

تتحكّم هذه المعلّمة في ما إذا كان سيتم تشغيل الفيديوهات بشكل مضمّن أو بملء الشاشة على نظام التشغيل iOS. القيم الصالحة هي:

  • 0: يؤدي ذلك إلى تشغيل الفيديو في وضع ملء الشاشة. وهذه هي القيمة التلقائية حاليًا، إلا أنّ القيمة التلقائية تخضع للتغيير.
  • 1: يؤدي هذا الإجراء إلى تشغيل مضمّن في المتصفّحات المتوافقة مع الأجهزة الجوّالة وWebViews التي يتم إنشاؤها باستخدام السمة allowsInlineMediaPlayback التي تم ضبطها على YES.

rel

ملاحظة: يتم تغيير هذه المعلّمة في 25 أيلول (سبتمبر) 2018 أو بعد هذا التاريخ.

قبل تطبيق التغيير، تحدّد هذه المعلّمة ما إذا كان على المشغّل أن يعرض فيديوهات ذات صلة عند انتهاء تشغيل الفيديو الأولي.
  • وإذا تم ضبط قيمة المعلَمة على 1، وهي القيمة التلقائية، سيعرض المشغِّل الفيديوهات ذات الصلة.
  • في حال ضبط قيمة المَعلمة على 0، لن يعرض المشغِّل الفيديوهات ذات الصلة.
بعد إجراء التغيير، لن تتمكّن من إيقاف الفيديوهات ذات الصلة. بدلاً من ذلك، إذا تم ضبط المَعلمة rel على 0، ستظهر الفيديوهات ذات الصلة من القناة نفسها التي تم فيها تشغيل الفيديو للتو.

start

تؤدي هذه المعلّمة إلى بدء المشغّل في تشغيل الفيديو بعدد الثواني المحدد من بداية الفيديو. قيمة المَعلمة هي عدد صحيح موجب. لاحظ أنّه مشابهة للدالة seekTo، سيبحث المشغّل عن أقرب إطار رئيسي في الوقت الذي تحدّده. وهذا يعني أنّه قد يتم في بعض الأحيان طلب تشغيل الفيديو مباشرةً قبل الوقت المحدَّد، أي عادةً ما لا يزيد عن ثانيتَين.

widget_referrer

تحدد هذه المعلمة عنوان URL الذي يتم تضمين المشغّل فيه. وتُستخدم هذه القيمة في تقارير "إحصاءات YouTube" عندما يكون مشغّل YouTube مضمّنًا في أداة، ثم يتم تضمين هذه الأداة في صفحة ويب أو تطبيق. في هذه الحالة، تحدِّد المعلّمة origin نطاق موفّر الأداة، ولكن يجب ألا تحدّد "إحصاءات YouTube" مقدّم الأداة باعتباره مصدرًا فعليًا للزيارات. بدلاً من ذلك، تستخدم "إحصاءات YouTube" قيمة المعلَمة widget_referrer لتحديد النطاق المرتبط بمصدر الزيارات.

سجلّ النُسخ السابقة

August 15, 2023

Note: This is a deprecation announcement for the modestbranding parameter.

The modestbranding parameter is deprecated and will have no effect. To align with YouTube's branding requirements, the player now determines the appropriate branding treatment based on a combination of factors, including player size, other API parameters (e.g. controls), and additional signals.

April 27, 2021

The playsinline parameter definition has been updated slightly to explain that the parameter pertains to both mobile browsers on iOS and iOS WebViews.

October 15, 2020

The autoplay parameter definition has been updated to explain that if you enable Autoplay, playback will occur without any user interaction with the player; playback data collection and sharing will therefore occur upon page load.

October 13, 2020

Note: This is a deprecation announcement for the embedded player functionality that lets you configure the player to load search results. This announcement affects the player's list and listType parameters.

This change will become effective on or after 15 November 2020. After that time, setting the listType parameter value to search will generate a 4xx response code, such as 404 (Not Found) or 410 (Gone).

As an alternative, you can use the YouTube Data API's search.list method to retrieve search results and then load selected videos in the player.

In addition to the change described above, the showinfo parameter, which was deprecated in 2018, has been removed from this document.

August 23, 2018

Note: This is a deprecation announcement for the showinfo parameter. In addition, the behavior for the rel parameter is changing. Titles, channel information, and related videos are an important part of YouTube’s core user experience, and these changes help to make the YouTube viewing experience consistent across different platforms.

  • The behavior for the rel parameter is changing on or after September 25, 2018. The effect of the change is that you will not be able to disable related videos. However, you will have the option of specifying that the related videos shown in the player should be from the same channel as the video that was just played.

    To be more specific:
    • Prior to the change, if the parameter's value is set to 0, then the player does not show related videos.
    • After the change, if the rel parameter is set to 0, the player will show related videos that are from the same channel as the video that was just played.
  • The showinfo parameter, which indicates whether the player should display information like the video title and uploader before the video starts playing, is also being deprecated. Following the change, the channel avatar and video title will always display before playback begins, when playback is paused, and when playback ends. The avatar being displayed is new behavior that will be consistent across all embedded players.

These changes will become effective on or after September 25, 2018. After that time, the showinfo parameter will be ignored. The behavior following the changes is consistent with the current default behavior for embedded players with the exception of the channel avatar changes mentioned above.

August 16, 2018

The cc_lang_pref parameter can be used to specify the default language that the player will use to display captions. This parameter can be used in conjunction with the cc_load_policy parameter to automatically show captions in the specified language during playback.

September 15, 2017

The controls parameter's definition has been updated to remove references to the deprecated Flash (AS3) player. The value 2 has been deprecated as it was originally designed to provide a performance improvement for embeds that loaded a Flash player.

June 12, 2017

The new widget_referrer parameter helps to enable more accurate YouTube Analytics reporting when the YouTube player is embedded in a widget, and that widget is then embedded in a web page or application.

November 1, 2016

This document has been updated to remove references to the deprecated Flash (AS3) player as well as to parameters only supported by that player. The YouTube Flash player was deprecated in January 2015.

October 20, 2016

This update contains the following changes:

  • The disablekb parameter definition has been corrected to note that the default value is 0, which means that keyboard controls are enabled. A value of 1 indicates that keyboard controls should be disabled.

    The list of keyboard controls that the player supports has also been updated to include the following:

    • [f]: Toggle full-screen display
    • [j]: Jump back 10 seconds in the current video
    • [k]: Play / Pause
    • [l]: Jump ahead 10 seconds in the current video
    • [m]: Mute or unmute the video
    • [0-9]: Jump to a point in the video. 0 jumps to the beginning of the video, 1 jumps to the time 10% into the video, 2 jumps to the point 20% into the video, and so forth.

    In addition, the effect of pressing the [arrow left] or [arrow right] keys has changed. These keys now jump 5 seconds back (arrow left) or ahead (arrow right) in the current video.

August 11, 2016

This update contains the following changes:

  • The newly published YouTube API Services Terms of Service ("the Updated Terms"), discussed in detail on the YouTube Engineering and Developers Blog, provides a rich set of updates to the current Terms of Service. In addition to the Updated Terms, which will go into effect as of February 10, 2017, this update includes several supporting documents to help explain the policies that developers must follow.

    The full set of new documents is described in the revision history for the Updated Terms. In addition, future changes to the Updated Terms or to those supporting documents will also be explained in that revision history. You can subscribe to an RSS feed listing changes in that revision history from a link in that document.

December 18, 2015

European Union (EU) laws require that certain disclosures must be given to and consents obtained from end users in the EU. Therefore, for end users in the European Union, you must comply with the EU User Consent Policy. We have added a notice of this requirement in our YouTube API Terms of Service.

August 19, 2015

  • The autohide parameter has been deprecated for the HTML5 player. In HTML5 players, the video progress bar and player controls display or hide automatically. That behavior corresponds to an autohide setting of 1.

  • The theme parameter has been deprecated for the HTML5 player. HTML5 players now always use the dark theme.

March 9, 2015

  • The document has been updated to reflect the fact that YouTube <object> embeds, the YouTube Flash Player API and the YouTube JavaScript Player API have all been deprecated as of January 27, 2015. A deprecation warning appears in several sections of this document to help point readers to the IFrame Player API as an alternative.

  • The definition of the autohide parameter has been updated to clarify the meaning of the parameter's values. The default behavior (autohide=2) is that if the player has a 16:9 or 4:3 aspect ratio, the player's video progress bar and player controls display or hide automatically. Otherwise, those controls are visible throughout the video.

  • The definition of the hl parameter has been updated to note that the parameter value could be an ISO 639-1 two-letter language code or a fully specified locale. For example, fr and fr-ca are both valid parameter values.

  • The definition of the enablejsapi parameter has been reworded to clarify that the parameter enables a player to be controlled via API calls. The API could be either the IFrame Player API or the JavaScript Player API.

October 14, 2014

July 18, 2014

  • The new hl parameter can be used to set the player's interface language. The interface language is used for tooltips in the player and also affects the default caption track. The selected caption track may also depend on the availability of caption tracks and user's individual language preferences.

    The parameter's value is an ISO 639-1 two-letter language code, though other language input codes, such as IETF language tags (BCP 47) may also be handled properly.

  • The definition of the playsinline parameter, which only affects HTML5 players on iOS, has been modified slightly. The definition now notes that setting the parameter value to 1 causes inline playback only for UIWebViews created with the allowsInlineMediaPlayback property set to TRUE.

January 28, 2014

  • The playsinline parameter controls whether videos play inline or fullscreen in an HTML5 player on iOS. Setting the value to 1 causes inline playback.

  • The Selecting content to play section has been updated to explain how to find YouTube video IDs and playlist IDs using the YouTube Data API (v3) rather than the older API version.

  • The controls parameter's definition has been updated to reflect the fact that the parameter value only affects the time that the Flash player actually loads in IFrame embeds. In addition, for IFrame embeds, the parameter value also determines when the controls display in the player. If you set the parameter's value to 2, then the controls display and the Flash player loads after the user initiates the video playback.

May 10, 2013

This update contains the following changes:

July 20, 2012

This update contains the following changes:

  • The definition of the controls parameter has been updated to reflect support for a parameter value of 2 and to explain that, for AS3 players, the parameter value determines the time when the Flash player actually loads. If the controls parameter is set to 0 or 1, the Flash player loads immediately. If the parameter value is 2, the Flash player does not load until the video playback is initiated.

June 5, 2012

This update contains the following changes:

  • The HTML5 player now supports the color, modestbranding, and rel parameters, and the definitions for these parameters have been updated accordingly.

  • The definition of the showinfo parameter has been updated to explain how that if the player is loading a playlist, and you explicitly set the parameter value to 1, then, upon loading, the player will also display thumbnail images for the videos in the playlist. Note that this functionality is only supported for the AS3 player since that is the only player that can load a playlist.

May 4, 2012

This update contains the following changes:

  • The showinfo parameter's definition has been updated to reflect the fact that the HTML5 player supports this parameter.

May 3, 2012

This update contains the following changes:

  • The new end parameter specifies the time, measured in seconds from the start of the video, when the player should stop playing a video. Note that the time when playback is stopped is measured from the beginning of the video and not from the value of either the start player parameter or the startSeconds parameter, which is used in YouTube Player API functions for loading or queueing a video.

March 29, 2012

This update contains the following changes:

  • The new Embedding a YouTube player section explains different ways to embed a YouTube player in your application. This section covers manual IFrame embeds, IFrame embeds that use the IFrame Player API, and AS3 and AS2 object embeds. This section incorporates information from the old Example usage section, which has been removed.

  • The new Selecting content to play section explains how to configure the player to load a video, a playlist, search results for a specified query, or uploaded videos for a specified user.

  • The new list and listType parameters let you specify the content that the player should load. You can specify a playlist, a search query, or a particular user's uploaded videos.

  • The definitions of the fs and rel parameters have been updated to more clearly explain the default parameter values for the AS3 player.

  • The border, color1, egm, hd, and showsearch parameters, which are all only supported for the deprecated AS2 Player API, have been moved to a new section named deprecated parameters only used in the AS2 Player API.

  • The document no longer provides a way to filter the parameter list to only display parameters supported in either the AS3, AS2, or HTML5 player. Instead, each parameter definition has been updated to identify the players that support that parameter.

August 11, 2011

This update contains the following changes:

  • The new theme and color parameters let you customize the appearance of the embedded player's player controls. See the YouTube API blog for more information.

June 8, 2011

This update contains the following changes:

  • The new modestbranding parameter lets you use a YouTube player that does not show a YouTube logo. As of this release, the parameter was only supported for the AS3 embedded player and for IFrame embeds that loaded the AS3 player. As of June 5, 2012, the HTML5 player also supported this parameter.

February 14, 2011

This update contains the following changes:

  • The documentation has been updated to note that the AS2 Player API has been deprecated. The deprecation of the AS2 Player API was actually announced on October 14, 2009.

February 3, 2011

This update contains the following changes:

  • The documentation has been updated to identify parameters supported in the HTML5 (IFrame) embedded player.

  • The document now displays all of the parameters supported in any of YouTube's embedded players (HTML5, AS3, AS2).

  • The following parameters are supported in the AS2 player but have been deprecated for the newer AS3 and HTML5 players: border, color1, color2, egm, hd, and showsearch.

    In addition, the loop parameter has limited support in the AS3 player and in IFrame embeds, which could load either an AS3 or HTML player. Currently, the loop parameter only works in the AS3 player when used in conjunction with the playlist parameter. To loop a single video, set the loop parameter to 1 and set the playlist parameter value to the same video ID already specified in the Player API URL:

    https://www.youtube.com/v/VIDEO_ID?version=3&loop=1&playlist=VIDEO_ID

    Similarly, the controls and playlist parameters are supported in the AS3 and HTML5 players but are not and will not be supported in the AS2 player.

    As noted above, IFrame embeds can load either an AS3 or HTML5 player. Though some parameters are not supported in both players, an IFrame embed that loads the AS3 player will support all parameters that work with that player and ignore all other parameters. Similarly, an IFrame embed that loads the HTML5 player will support all parameters that work with that player while ignoring all other parameters.

  • The parameter list has been updated to include the autohide parameter, which indicates whether the player's video controls will automatically hide after a video begins playing.

  • The parameter list has been updated to include the controls parameter, which indicates whether the player's video controls will display at all. (Player controls do display by default.)

  • The parameter list has been updated to include the playlist parameter, which specifies a comma-separated list of video IDs to play.

  • The definition of the fs has been updated to note that the fullscreen option will not work if you load the YouTube player into another SWF.

  • The example at the end of the document has been updated to use the embedded AS3 player instead of the embedded AS2 player. The parameters used in the example have also been updated to only include parameters that the AS3 player supports.

    In addition, the instructions for constructing the URLs that contain player parameters have been updated to reflect the URL formats used by the AS3 and AS2 embedded and chromeless players as well as by the HTML5 player.