How to Pronounce the Word OR

Tagged With: OR Reduction

Study the OR reduction.  There are many reductions in conversational American English. It’s important to know what they are to improve listening comprehension, but also to use the reductions in speech yourself.  They are a key part to sounding natural.

YouTube blocked? Click here to see the video.

Video Text:

In this American English pronunciation video, we’re going to discuss how to pronounce the little word ‘or’. The word ‘or’ is written in IPA with the ‘aw’ as in ‘law’ sound followed by the R consonant sound. But I find actually, the vowel sound is more closed than that— o, o, o, or, or. However, this word will generally be unstressed in a sentence. It is a conjunction. That is a function word. And function words will normally be unstressed. In this case, it will be pronounced er, er. Very short, very low in pitch, the schwa-R sound: er, er.

Let’s look at some examples. He’ll come at 6 or 6:30, 6 or, er, er, 6 or, 6 or 6:30. Now, the thing to note, when you reduce a word, you must link it to the words that come around. You don’t want to say 6—or—6:30. Six-er, six-er. 6 or 6:30. Very connected, very smooth. He’ll come at 6 or 6:30.

Do you want to leave now, or wait a while? Er-wait, er-wait. Did you notice? I did put a gap before the word ‘or’. That’s ok. Just make sure that it links to either the word before or the word after. Do you want to leave now, or wait a while? I don’t eat beef or chicken. Beef-er, beef-er, beef or chicken, beef or chicken. I don’t eat beef or chicken. Come here, or you’ll be sorry! Er-you’ll, er-you’ll, or you’ll be sorry. Come here, or you’ll be sorry.

Reduction and linking are important concepts in American English. Saying ‘or’ this way will help to smooth out your language, and will help you to be understood.

That’s it, and thanks so much for using Rachel’s English.

Video:

How to Pronounce the Word OR的更多相关文章

  1. How to Pronounce the Word ARE

    How to Pronounce the Word ARE Share Tweet Share Tagged With: ARE Reduction Study the ARE reduction. ...

  2. How to Pronounce the word BECAUSE

    How to Pronounce the word BECAUSE Share Tweet Share Tagged With: BECAUSE Reduction Study the BECAUSE ...

  3. How to Pronounce the Word ‘TO’

    How to Pronounce the Word ‘TO’ Share Tweet Share Tagged With: TO Reduction Study the TO reduction.   ...

  4. How to Pronounce the Word SOMETHING

    How to Pronounce the Word SOMETHING Share Tweet Share Something tells me you’re going to like this v ...

  5. How to Pronounce the Word THEM

    How to Pronounce the Word THEM Share Tweet Share Tagged With: THEM Reduction Study the THEM reductio ...

  6. Reduction: the word AT

    Reduction: the word AT Share Tweet Share Tagged With: AT Reduction Study the AT reduction.  There ar ...

  7. Examples: How to Pronounce T

    Examples: How to Pronounce T Share Tweet Share Tagged With: Flap T, Stop T The [t] sound is not alwa ...

  8. 为什么“how to say”是错的?

    2018-04-26 15:53 英语口语 吉米老师前言:如果让老外评选十大Chinglish之最,老师猜"how to say"一定榜上有名.几乎每一位学习英语的童鞋,都曾有过脱 ...

  9. English Conversation – Checking in at an airport

    English Conversation – Checking in at an airport Share Tweet Share Tagged With: Ben Franklin Exercis ...

随机推荐

  1. [UE4]运行模式

    Selected Viewport和Simulate都可以在游戏模式和漫游模式之间切换. Selected Viewport:默认是游戏模式. Simulate:默认是漫游模式. 按Ctrl+F1后, ...

  2. [UE4]Replications,复制

    关于进程 1.进程:运行中的程序 虚幻4游戏进程的四种网络模式 1.StandAlone:单机模式,不联网 2.Client,网络游戏中的客户端. 3.ListenServer,服务器和一个客户端 4 ...

  3. [UE4]给Widget增加参数,Pre Construct和Construct的区别

    使用Pre Construct事件可以在编辑器中实时显示出选择的背景图片. 如果使用的是“Construct”事件则只能在游戏运行时把图片显示出来.

  4. 虚幻4:2D游戏中实现二级或多级跳跃

    转自:http://www.52vr.com/article-729-1.html 闲来无事,想做个二级跳跃或者多级跳跃的方法.. 如下所示.即可实现.   第一步:角色蓝图中.设置跳跃事件 第二部: ...

  5. spark streaming的有状态例子

    import org.apache.spark._ import org.apache.spark.streaming._ /** * Created by code-pc on 16/3/14. * ...

  6. 第2章 GNS3和PacketTracer网络模拟器(3)_搭建Packet tracer实验环境

    3. Packet tracer实验环境 3.1 设置网络拓扑图 (1)配置路由器局域网和广域网接口,如上图(可双击相应的图标,然后在命令行或图形界面上进行IP地址等配置) ①本例采用“Generic ...

  7. JS一个算法题

    题目:实现超出整数存储范围的两个大整数想加function(a,b).注意:参数a和b以及函数返回值都是字符串. 目的:考算法, 基本逻辑. 我实现的基本思路是: ①两个数字字符串长度补成一样,用字符 ...

  8. (转)wsdl文件用SoapUI快速创建WebService,CXF生成客户端代码

    原文地址:http://blog.csdn.net/fjekin/article/details/62234861 一.前言 最近项目接触到2C的很多接口,提供接口文档和WSDL文件,一开始测试接口都 ...

  9. C语言:传值,传地址

    形参:形式参数实参:实际参数 传值: 把实参的值复制给形参, 修改函数内的形参,不会影响实参. 传地址: 指针传值,形参为指向实参地址的指针 当对形参的指向操作时,相当于对实参本身进行的操作 #inc ...

  10. python-简单的sqlite3使用

    # 导入SQLite驱动: >>> import sqlite3 # 连接到SQLite数据库 # 数据库文件是test.db # 如果文件不存在,会自动在当前目录创建: >& ...