The Sixteen Machine: Generating Intelligent Rap Lyrics Aaron Bracket, Antonio Tan-Torres

Size: px
Start display at page:

Download "The Sixteen Machine: Generating Intelligent Rap Lyrics Aaron Bracket, Antonio Tan-Torres"

Transcription

1 CS 221 Final report The Sixteen Machine: Generating Intelligent Rap Lyrics Aaron Bracket, Antonio Tan-Torres Introduction: The use of language is a fascinating aspect of humans. Specifically, how language is used in rap lyrics is a uniquely human system defined by blurry rules for what a rapper deems as rap music. Rappers lyrics vary immensely depending on how they employ these rules to define rhyme scheme, rhythm, content, and many other characteristics that makeup the rough structure of a rap verse. This rough structure of a uniquely human system makes it particularly interesting to try and decompose into an actual computational system. Essentially, if we can identify and represent these characteristics of rap lyrics, then we should be able to learn from a rapper s lyrics the unique way that the specific rapper utilizes these characteristics, and then create a new rap verse in a similar style. One of the best rappers alive is Kendrick Lamar, so essentially we want to learn what a characteristic Kendrick Lamar rap verse consists of, and then output new Kendrick Lamar-esque rap verses (in an effort to satiate our K-dot hunger as we wait for his next album, hopefully with J Cole). Task Definition: The task at hand is to build an AI agent that produces rap lyrics based on a specific rapper s lyrics. This is trying to tackle the real-world problem of writing rap lyrics, but using artificial intelligence techniques. Our task involves modeling the process of writing rap lyrics by certain characteristics of rap, then learning that model from a rapper s lyrics as data, and then using that model to output different, but similar, rap lyrics. Our system takes in lyrics of a specific rapper, and outputs a new verse (16 lines) of rap lyrics inspired by that rapper. Scope: The scope of the project is determined by what we specify as characteristics of a rap verse, or what a rap verse should like. The goal of building a system that outputs a rap song, with rap lyrics to a musical beat, would be too broad and complex for the scope of this project. Therefore, we are focusing only on outputting rap lyrics (no music). However, the scope of the differences in structure/characteristics of rap lyrics is also very broad to encompass all of them (like inner-rhyme schemes, context, word-play) in this project. So for this project, we have narrowed the scope to focus on the essential rap characteristics of rhyme and rhythm, and output a 16-line verse using specifically a couplet rhyme scheme, where the ending words of every 2 lines rhyme. This simplifies the problem of structuring the outputted rap verse, while still leaving enough flexibility for the characteristics of the structure to be learned from the dataset.

2 Evaluation: Our evaluation metric will be human-based, since all rap lyrics are evaluated/appreciated by humans. To evaluate rap lyrics as humans is a complex thing, where we can appreciate different aspects of the rap lyrics like content, word choice, flow, etc. For the given scope of the project, our outputted rap verse will be evaluated by humans specifically in terms of rhyme, rhythm/flow, and general likeness to the original rapper. There are no quantifiable metrics for these aspects, and so the evaluation will be a human written evaluation of the rap verse in terms of these characteristics, much like how we evaluate and talk about the aspects of rap. Dataset: Our dataset consists of many rap lyrics from a specific rapper (we used Kendrick Lamar). We scraped all of the rap lyrics of an artist from Genius using the Genius API. Literature Review: While no one had quite focused on doing what we wanted to for rap, some people had dabbled in text generation. One paper we read gave us the idea to use n-grams to help us emulate our favorite rappers [1]. Another group had a nice paper on how to increase variation in text, and we used their section on Naïve Bayes to inform how we chose our words [2]. These two techniques applied in concert are what led to the success of our project, so we owe a lot to them. Infrastructure: In order to accomplish this task, we needed to collect a dataset of raw rap lyrics from a specific rapper. We used the Genius API to scrape all of the Kendrick Lamar rap lyrics on Genius. However, in order to use this dataset of raw rap lyrics, we had to do some pre-processing to remove unnecessary tokens (like [Hook x2] and [Chorus] ), as well as any choruses or skits, so that we just had the actual lyrics. Another part of our infrastructure that we had to establish was the infrastructure of a rap verse. We determined that our system would focus on the essential characteristics of a rap verse, which are rhyme and rhythm, and that the system would output a 16-line verse in a couplet rhyme scheme. To include this rap verse infrastructure into the actual infrastructure of our system, we had to figure out how to computationally represent these characteristics through patterns in the lyrics. We decided to use the Natural Language Toolkit library from Python to assist these efforts. For rhyme, we find out which words the rapper uses to rhyme together based on assuming all of their rap lyrics follow the couplet rhyme scheme, so we assume the last words of every 2 lines to be rhyming words. We scrape these rhyming words from the lyrics dataset and judge how good is the rhyme based on if they appear in the Natural Language Toolkit rhyming corpus (because not all rhyming words are used in the corpus, but if they are then they are sure to be a rhyme).

3 For rhythm, we can measure this as the number of syllables in a line. Using the Natural Language Toolkit, we can count the number of syllables in each line of the rapper s lyrics, and then we can take the average of these syllable counts to be the average rhythm or flow of the rapper. With the computational representations for these characteristics established, we can learn them from the dataset and use them to output a new verse. Approach: The challenges of building the system lie in how we model the rhyme and rhythm of rap lyrics, and how we use the representations of rap characteristics to construct a verse. Using the computational representations of rhyme and rhythm discussed above, our system has to use these representations in a way that outputs a good verse. To do this, we decided to implement a statebased system where the states, actions, and costs would model the lyric-writing process. The states would capture where we are at in the lyrics so far, and the actions would be adding a word/ending a line, and the costs of these actions would be determined by the rhyme/rhythm heuristics. Initially, we tried the approach of making the problem a State-Search Problem where the minimum cost path would be the best verse possible in terms of rhyme/rhythm. However, this proved problematic for our project because we want to create an AI agent that produces different lyrics each time. While this minimum cost path state-search approach did seem to capture the lyric-writing process in terms of using rhyme/rhythm, it would always output the same verse which is not the kind of AI rapper that we wanted. To address this problem, we decided to model the problem as a Markov Decision Process, or an MDP problem. This introduces some randomness to the Search-State problem so that the AI agent can output different verses by solving the problem via different paths. MDP Implementation: States: o Each state is represented by a tuple containing (Current line number, N- gram tuple, rhyming word, string of current lyrics) o This captures all the information we need to know for where we are at in the lyric-writing process Actions: o In each state, the writer can take one of two actions: o Keep Going : continue to add words to line by choosing word from n- gram set o Finish the Line : choose the word to add from the intersection of n-gram set and set of rhyming words Transition Probabilities:

4 o Probability of choosing the word from its respective set (word count / total number of word possibilities) o The number of word possibilities varies depending on if we pick a word from just the n-gram set, or the intersection with the rhyming words Rewards: o Rewards for non-terminal states are zero o Rewards for terminal states are determined by a rhythm heuristic and rhyme heuristic o Rhythm: difference in syllable count between output verse and average syllable count from data o Rhyme: number of rhymes that are recognized by the Natural Language Toolkit library Discount: o We used a discount of factor of 1 Concrete Example (of how the MDP decides on the next word): So in this example, the current state given is represented by the top circle. It s the first line, so the current line metric is 0. The previous 2 words, which we are using as our n-gram, are you and feel. Because this is the first line, there are no previous rhyming words. And the last metric is just a complete set of the lyrics; so far, we have Do you feel. Given the action of Keep Going, we have four possibilities that can happen. These possibilities are all of the words that have ever appeared after the sequence you feel, giving us bad, like, it, and that. Each word is associated with a possible next state, which is much like the previous state, but the n- gram has changed to be feel and the selected word, as well as the lyrics adding the selected word to them. The sequence you feel appeared 120 times, and the probability that we move to each of the states is the number of times the words associated with them appeared after you feel out of 120. The MDP then makes a random weighted decision.

5 Baseline Approach: For our baseline, we implemented a simple 2-gram model with Kendrick lyrics. This model does not take into account any rhyme/rhythm characteristics. As you can see, some of the individual phrases sound very Kendrick like, but it falls woefully flat in terms of both rhythm and rhyme. Sample Baseline output: We all my life on tour, ya bish Crawled under stress days And I'm behind bars That considered the far you believe in time ago Is your mind, you re very welcome Ah yeah, fuck your ways deceitful Church me tell you hit the fucking frightening Hood nigga shopped in the grind for eternity, return of the police relaxed" So many artists gave her soon as fucked up, shut the car then looked at a fuck? We made a meteor speed dial, I think she on fours Enthused by a fight he get a house or die Anybody can water And I'm followed by the street from me with the lions start rhyming,ya bish That's what when we was Making sure your heartbeat, it either caught me Rock on your game right So I see the mirror and y'all fucks never should bite their sorrows Oracle Approach: As an Oracle we tried writing as different rappers, emulating their rhythms, rhyme scheme, and subject matter. Each rapper tended to have a different style, so these variables had a whole spectrum that we could distinguish them by. In this example, we wrote what we thought would be a Kendrick verse. We incorporated a lot of multisyllabic rhymes, and made sure to have a similar subject matter to that of Kendrick, talking about police brutality and killing other rappers on the mic. We also tried to write with syllabic counts that would have a rhythm close to Kendrick s most popular flow. Sample Oracle output: I'm a product of the 80s, grew up on slim shady Having dreams of a Mercedes, no wonder I turned out crazy I used to be blind and underground, something like a mole But now that my eyes are open I don t fuck with nobody but Cole Born sinner, but I still act like I be innocent Kill your favorite rapper, deadly with a pen Pussies liking other pussies, group of lesbians, them But should be fightin' popo till feds be in the pen Cause they shooting first and asking questions never Don t really care whether or not a nigga is clever Where's the logic in that? I'm feeling under pressure They must be jokin', but I'm no Heath Ledger Sick of these clowns runnin round, this aint gotham

6 If a nigga frown, gun 'em down, this is Compton I grew up around Pirus, I was drowning in bloods Now I drown in pussy and all my haters drownin in mud MDP Approach (sample output): No discrimination, she got this is elementary, I'll take your mother Vaca'd in the industry hard when I should cover Yeah, life I put me of us starving, these niggas, tell my ear into beef Feed the police You can feel, like a little nappy-headed nigga don't want it, told you know I'll take your troops at your bitch with gasoline she holding my head slugs go through your info To go after that never respect, pussy frenchin High by myself, my mission Pack a guarantee that trolly, your parents house when She gobble gobble for no whammy on you and your Friends Determination ambition, plus no kills I no cries foreal Punchlines mean I hit the way hell of this game That's some competition on my hormones just forgot y'all on the game Give me BET, I'm holding the channel Man look, yo strap in your daddy on repeat, they got 200 in shambles Error Analysis: While not quite as good as our Oracle, the beginning elements of rap are definitely there. Since our milestone, we limited the maximum amount of syllables it can in a way that was proportional to be approximately double the average syllables, which eliminated any super long run on lines. But, as you can see, the rhyming is definitely pretty good. And for the most part, it flows, with a lot of intraline consistency. Lastly, the verse is undeniably a Kendrick verse, with several phrases sounding distinctly Kendrick-esque, and using the same slant rhymes that he would use and sound best when imagined in his voice. Unfortunately for the quality, we had to make some tradeoffs. The first tradeoff we made was to limit the lyrics we were inputting to just one artist, so that the code could run without taking so long as to crash our computers. This had the fortunate effect of having our verses sound distinguishably like one artist, but overall coherency is generally improved the more data you use. The next tradeoff we had to make was using only 2-grams. This leads to a lot of weird constructions because oftentimes the previous two words are not enough to predict what third word would actually make sense in that next spot. But, we found that even when moving to just 3-grams, whole verses were being determined after just the first two words, as most three word sequences only appeared once, so by our model, they were forced to choose the same fourth word every time, which led to a lyric chain of original lyrics. Another tradeoff we made was to

7 prioritize rhyming over rhythm, perhaps too much, so that while each line rhymes, this is sometimes at the expense of choosing a rhyming word that is within the n-gram. Some errors that have no easy solution include interline consistency, making sure that each line relates to some theme or plays more off of the preceding line. We hypothesized that we could use k-means on the words to put them into clusters, and then prioritize words that were in the same cluster, but we did not have time to do this, and this would no doubt require better computers and more time than we had left to run properly. Further Work: To better fix the rhythm problem, we tried a solution that gave more power to the MDP to allow it to more naturally decide when to end a line, and then using the calculated optimal policy of a given state to choose whether or not to keep going, but this approach sadly proved to be to resource heavy. The beginnings of it are in the attached code. Conclusion: While we may not have produced a Rapping AI that can pass the Turing Test, we still created an AI that proves that this field has some promise. By improving upon the AI using methods described in our Error Analysis and Further Work sections, a future party could definitely get the rapper closer to the goal then we were currently able to do with our time and resources. References: 1. He H., Jin J., Xiong Y., Chen B., Sun W., Zhao L. (2008) Language Feature Mining for Music Emotion Classification via Supervised Learning from Lyrics. In: Kang L., Cai Z., Yan X., Liu Y. (eds) Advances in Computation and Intelligence. ISICA Lecture Notes in Computer Science, vol Springer, Berlin, Heidelberg. 2. T. C. Ferreira, E. Krahmer, S. Wubben. Towards more variation in text generation: Developing and evaluating variation models for choice of referential form. Tilburg University

Composer Style Attribution

Composer Style Attribution Composer Style Attribution Jacqueline Speiser, Vishesh Gupta Introduction Josquin des Prez (1450 1521) is one of the most famous composers of the Renaissance. Despite his fame, there exists a significant

More information

And all that glitters is gold Only shooting stars break the mold. Gonna Be

And all that glitters is gold Only shooting stars break the mold. Gonna Be Allstar Somebody once told me the world is gonna roll me I ain't the sharpest tool in the shed She was looking kind of dumb with her finger and her thumb In the shape of an "L" on her forehead Well the

More information

Rapping Manual Table of Contents

Rapping Manual Table of Contents Rapping Manual Table of Contents 1. Count Music/Bars 14. Draft vs Freelance 2. Rhyme Schemes 15. Song Structure 3. Sound Schemes 16. Rap Chorus 4. Fast Rapping 17. The Sacred Process 5. Compound Rhymes

More information

ARE YOU UNDER SURVEILLANCE?

ARE YOU UNDER SURVEILLANCE? ARE YOU UNDER SURVEILLANCE? This movie contains scenes of violence and gore Memory is fragile. It disappears or subtly changes as time goes by. Perhaps, therefore, we preserve it on the image. Trying to

More information

Automatic Analysis of Musical Lyrics

Automatic Analysis of Musical Lyrics Merrimack College Merrimack ScholarWorks Honors Senior Capstone Projects Honors Program Spring 2018 Automatic Analysis of Musical Lyrics Joanna Gormley Merrimack College, gormleyjo@merrimack.edu Follow

More information

Coolios gangster paradise came out when rap and hip hop was were taking over

Coolios gangster paradise came out when rap and hip hop was were taking over Example of Student Writing Approaching College Ready Coolios gangster paradise came out when rap and hip hop was were taking over becoming very popular all over the world. Why was this song such a big

More information

Hip Hop Robot. Semester Project. Cheng Zu. Distributed Computing Group Computer Engineering and Networks Laboratory ETH Zürich

Hip Hop Robot. Semester Project. Cheng Zu. Distributed Computing Group Computer Engineering and Networks Laboratory ETH Zürich Distributed Computing Hip Hop Robot Semester Project Cheng Zu zuc@student.ethz.ch Distributed Computing Group Computer Engineering and Networks Laboratory ETH Zürich Supervisors: Manuel Eichelberger Prof.

More information

The first song is called Sherane a.k.a. Master Splinter's Daughter - you can feel the repentance Kendrick looks to achieve in this first track

The first song is called Sherane a.k.a. Master Splinter's Daughter - you can feel the repentance Kendrick looks to achieve in this first track This zine was produced by an avid listener of hip-hop with a keen ear for lyrical excellence. have been listening to rap music ever since the day discovered file-sharing. used to drive my mom crazy with

More information

A rhetorical analysis of your favorite song EXTRA CREDIT PROJECT WEIGHT

A rhetorical analysis of your favorite song EXTRA CREDIT PROJECT WEIGHT A rhetorical analysis of your favorite song EXTRA CREDIT PROJECT WEIGHT Select a song to dissect (remember if it is your favorite- it may no longer be so choose wisely). You will analyze this song. You

More information

MAN'S VOICE (V.O.) Today I will find it. Today I will get her back.

MAN'S VOICE (V.O.) Today I will find it. Today I will get her back. THE KILL SWITCH MAN'S VOICE (V.O.) Today I will find it. Today I will get her back. FADE TO: INT. ELEVATOR CAR - ASCENDING A tall man in a black coat, a matching panama hat, and leather gloves, stands

More information

How to Write a Ballad

How to Write a Ballad How to Write a Ballad (with Sample Ballads) - wikihow http://m.wikihow.com/write-a-ballad How to Write a Ballad Ever since the concept of love was defined, people have been writing wonderful ballads about

More information

AN EXAMPLE FOR NATURAL LANGUAGE UNDERSTANDING AND THE AI PROBLEMS IT RAISES

AN EXAMPLE FOR NATURAL LANGUAGE UNDERSTANDING AND THE AI PROBLEMS IT RAISES AN EXAMPLE FOR NATURAL LANGUAGE UNDERSTANDING AND THE AI PROBLEMS IT RAISES John McCarthy Computer Science Department Stanford University Stanford, CA 94305 jmc@cs.stanford.edu http://www-formal.stanford.edu/jmc/

More information

Song Lyrics. The Dover House Singers invite you to an. Wednesday 28th March pm St. Margaret s Church Hall, Putney Park Lane, SW15 5HU

Song Lyrics. The Dover House Singers invite you to an. Wednesday 28th March pm St. Margaret s Church Hall, Putney Park Lane, SW15 5HU The Dover House Singers invite you to an g n o l a g n i S Song Lyrics Wednesday 28th March 7.30-9.30pm St. Margaret s Church Hall, Putney Park Lane, SW15 5HU Visit our website: www.doverhousesingers.co.uk

More information

Sarcasm Detection in Text: Design Document

Sarcasm Detection in Text: Design Document CSC 59866 Senior Design Project Specification Professor Jie Wei Wednesday, November 23, 2016 Sarcasm Detection in Text: Design Document Jesse Feinman, James Kasakyan, Jeff Stolzenberg 1 Table of contents

More information

Take a Break, Bach! Let Machine Learning Harmonize That Chorale For You. Chris Lewis Stanford University

Take a Break, Bach! Let Machine Learning Harmonize That Chorale For You. Chris Lewis Stanford University Take a Break, Bach! Let Machine Learning Harmonize That Chorale For You Chris Lewis Stanford University cmslewis@stanford.edu Abstract In this project, I explore the effectiveness of the Naive Bayes Classifier

More information

Meanor 1. Put in a prison cell, but one time he could-a been The champion of the world.

Meanor 1. Put in a prison cell, but one time he could-a been The champion of the world. Meanor 1 Emma Meanor Mr. Coffin English 621 November 30, 2009 Poetry Analysis Introduction In 1975, Bob Dylan and Jacques Levy co-wrote a song called Hurricane. It is the story of American boxer Rubin

More information

AutoChorale An Automatic Music Generator. Jack Mi, Zhengtao Jin

AutoChorale An Automatic Music Generator. Jack Mi, Zhengtao Jin AutoChorale An Automatic Music Generator Jack Mi, Zhengtao Jin 1 Introduction Music is a fascinating form of human expression based on a complex system. Being able to automatically compose music that both

More information

Foes just scored a goal, but I m not here eating fries cause what robbed me of my appetite is that different weird stomach growl. Maybe gobblin

Foes just scored a goal, but I m not here eating fries cause what robbed me of my appetite is that different weird stomach growl. Maybe gobblin SPACE MAMA Do you remember me? I was your son, I' m real! Do you remember when we used to speak freely? Challenging Newton s law it s really hard to come close. Me and my bros are holding on. Please, come

More information

Marshall Mather s Evaluation. Beginning with his smash hit My Name Is in 1999 Eminem burst onto the music

Marshall Mather s Evaluation. Beginning with his smash hit My Name Is in 1999 Eminem burst onto the music Alexander Russell Mr. Terrell UCA Writing 28 April 2015 Marshall Mather s Evaluation Beginning with his smash hit My Name Is in 1999 Eminem burst onto the music scene and people quickly decided to love

More information

Automatic Music Clustering using Audio Attributes

Automatic Music Clustering using Audio Attributes Automatic Music Clustering using Audio Attributes Abhishek Sen BTech (Electronics) Veermata Jijabai Technological Institute (VJTI), Mumbai, India abhishekpsen@gmail.com Abstract Music brings people together,

More information

TEXT 6 Dear Mama Tupac Shakur

TEXT 6 Dear Mama Tupac Shakur TEXT 6 Dear Mama Tupac Shakur 1 You are appreciated When I was young, me and my mama had beef 17 years old, kicked out on the streets Though back at the time I never thought I'd see her face 5 Ain't a

More information

Feature-Based Analysis of Haydn String Quartets

Feature-Based Analysis of Haydn String Quartets Feature-Based Analysis of Haydn String Quartets Lawson Wong 5/5/2 Introduction When listening to multi-movement works, amateur listeners have almost certainly asked the following situation : Am I still

More information

THE TIN MAN TALKS... THE AARON PARNELL BROWN INTERVIEW. Written by Bill B Saturday, 04 July :51 - Last Updated Saturday, 04 July :18

THE TIN MAN TALKS... THE AARON PARNELL BROWN INTERVIEW. Written by Bill B Saturday, 04 July :51 - Last Updated Saturday, 04 July :18 Without doubt one of the truest "SOUL" albums of 2015 so far has been 'The Tin Man' from AARON PARNELL BROWN. The complex but concise nine tracker has won the hearts of underground soul lovers since UK

More information

MITOCW mit-6-00-f08-lec17_300k

MITOCW mit-6-00-f08-lec17_300k MITOCW mit-6-00-f08-lec17_300k OPERATOR: The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources

More information

Jazz Melody Generation and Recognition

Jazz Melody Generation and Recognition Jazz Melody Generation and Recognition Joseph Victor December 14, 2012 Introduction In this project, we attempt to use machine learning methods to study jazz solos. The reason we study jazz in particular

More information

PEOPLE WHO LIE. written by. Xavier Gonzalez

PEOPLE WHO LIE. written by. Xavier Gonzalez PEOPLE WHO LIE written by Xavier Gonzalez REVISION 10 xgonzalez93@yahoo.com January 15, 2009 Copyright 2009 All Rights Reserved FADE IN: INT. THERAPIST'S OFFICE- DAY (Tall, okay looking, well groomed,

More information

Life After You by Daughtry Examples of: Alliteration, internal rhyme, half/ near rhyme, true rhyme, simile, hyperbole, paradox, and anaphora.

Life After You by Daughtry Examples of: Alliteration, internal rhyme, half/ near rhyme, true rhyme, simile, hyperbole, paradox, and anaphora. Life After You by Daughtry Examples of: Alliteration, internal rhyme, half/ near rhyme, true rhyme, simile, hyperbole, paradox, and anaphora. 34 Can you find any poetic devices? Ten miles from town and

More information

Introduction to the class

Introduction to the class Introduction to the class Music is truly an art form. Like poetry, acting, and painting, it is a means of communicating the thoughts, feelings, and messages of the author or performer. Music, however,

More information

Analysis and Clustering of Musical Compositions using Melody-based Features

Analysis and Clustering of Musical Compositions using Melody-based Features Analysis and Clustering of Musical Compositions using Melody-based Features Isaac Caswell Erika Ji December 13, 2013 Abstract This paper demonstrates that melodic structure fundamentally differentiates

More information

Lyrical Features of Popular Music of the 20th and 21st Centuries: Distinguishing by Decade

Lyrical Features of Popular Music of the 20th and 21st Centuries: Distinguishing by Decade Lyrical Features of Popular Music of the 20th and 21st Centuries: Distinguishing by Decade Cody Stocker, Charlotte Munger, Ben Hannel December 16, 2016 1 Introduction Music has been called the voice of

More information

The History of Rap and Hip Hop

The History of Rap and Hip Hop Introduction Was Eminem s childhood easy? No. Was he able to become an accomplished rapper? Yes. Marshall Bruce Mathers III was born Oct. 17, 1972 in Kansas City, Missouri. On stage he is known as either

More information

Dominque Silva: I'm Dominique Silva, I am a senior here at Chico State, as well as a tutor in the SLC, I tutor math up to trig, I've been here, this

Dominque Silva: I'm Dominique Silva, I am a senior here at Chico State, as well as a tutor in the SLC, I tutor math up to trig, I've been here, this Dominque Silva: I'm Dominique Silva, I am a senior here at Chico State, as well as a tutor in the SLC, I tutor math up to trig, I've been here, this now my fourth semester, I'm graduating finally in May.

More information

Nightswimming REM (Berry/Buck/Mills/Stipe)

Nightswimming REM (Berry/Buck/Mills/Stipe) Nightswimming REM (Berry/Buck/Mills/Stipe) Nightswimming deserves a quiet night The photograph on the dashboard, taken years ago, Turned around backwards so the windshield shows Every streetlight reveals

More information

Have You Seen Him? Jason Bullock

Have You Seen Him? Jason Bullock Have You Seen Him? By Jason Bullock 2013 This screenplay may not be used or reproduced without the express written permission of the author. Jason Bullock jason@backwardsmanproductions.com FADE IN INT.

More information

Why I Chose This Poem. and Ken 101" in class. The reason it sparked my interest so much was because it seemed

Why I Chose This Poem. and Ken 101 in class. The reason it sparked my interest so much was because it seemed A.D.D. by Rafael Casal Nicole Bennett Why I Chose This Poem I found myself trying to listen to all of Rafael Casal's poetry online after watching "Barbie and Ken 101" in class. The reason it sparked my

More information

Hear this song at: (play along with capo at first fret)

Hear this song at:  (play along with capo at first fret) Blue Hawaii Elvis Presley Hear this song at: http://www.youtube.com/watch?v=cyij2vmiudg (play along with capo at first fret) From: Richard s Ukulele Songbook www.scorpex.net/uke.htm [] Night and you and

More information

BBC LEARNING ENGLISH Jamaica Inn 5: Lost on the moor

BBC LEARNING ENGLISH Jamaica Inn 5: Lost on the moor BBC LEARNING ENGLISH Jamaica Inn 5: Lost on the moor This is not a word-for-word transcript Language focus: Zero, 1st, 2nd conditionals narrator There was nothing but a few sacks and the rope in the locked

More information

Laughbot: Detecting Humor in Spoken Language with Language and Audio Cues

Laughbot: Detecting Humor in Spoken Language with Language and Audio Cues Laughbot: Detecting Humor in Spoken Language with Language and Audio Cues Kate Park katepark@stanford.edu Annie Hu anniehu@stanford.edu Natalie Muenster ncm000@stanford.edu Abstract We propose detecting

More information

1999 {Don't worry, I won't hurt you I only want you to have some fun}

1999 {Don't worry, I won't hurt you I only want you to have some fun} INTRO VERSE 1 CHORUS VERSE 2 CHORUS VERSE 3 CHORUS CHORUS BRIDGE {Don't worry, I won't hurt you I only want you to have some fun} I was dreamin' when I wrote this, forgive me if it goes astray But when

More information

Medusa Script. Written By. Collin Cunningham Brendan McLaughlin Ethan Leisie Aiden Fry Erik Schulz. Based on INCEPTION

Medusa Script. Written By. Collin Cunningham Brendan McLaughlin Ethan Leisie Aiden Fry Erik Schulz. Based on INCEPTION Medusa Script Written By Collin Cunningham Brendan McLaughlin Ethan Leisie Aiden Fry Erik Schulz Based on INCEPTION Address, N - a location of residence Phone Number, N - a registered numeral for telephone

More information

How to Obtain a Good Stereo Sound Stage in Cars

How to Obtain a Good Stereo Sound Stage in Cars Page 1 How to Obtain a Good Stereo Sound Stage in Cars Author: Lars-Johan Brännmark, Chief Scientist, Dirac Research First Published: November 2017 Latest Update: November 2017 Designing a sound system

More information

Song: I Want To Hold Your Hand

Song: I Want To Hold Your Hand BEATLES LISTENING Today you are going to be listening to some music by the Beatles. These are songs that we haven t listened to already in music class. Maybe you ve heard them before, maybe you haven t.

More information

Lyrics Classification using Naive Bayes

Lyrics Classification using Naive Bayes Lyrics Classification using Naive Bayes Dalibor Bužić *, Jasminka Dobša ** * College for Information Technologies, Klaićeva 7, Zagreb, Croatia ** Faculty of Organization and Informatics, Pavlinska 2, Varaždin,

More information

They can sing, they can dance After all, miss, this is France And a dinner here is never second best Go on, unfold your menu Take a glance and then

They can sing, they can dance After all, miss, this is France And a dinner here is never second best Go on, unfold your menu Take a glance and then Be our guest Be our guest, be our guest Put our service to the test Tie your napkin 'round your neck, Cherie And we'll provide the rest Soup du jour, hot hors d'oeuvres Why, we only live to serve Try the

More information

A repetition-based framework for lyric alignment in popular songs

A repetition-based framework for lyric alignment in popular songs A repetition-based framework for lyric alignment in popular songs ABSTRACT LUONG Minh Thang and KAN Min Yen Department of Computer Science, School of Computing, National University of Singapore We examine

More information

Fitz s Sonnet Writing Rubric

Fitz s Sonnet Writing Rubric Fitz s Sonnet Writing Rubric It is a cruel task master who asks his or her students to "do" what he or she has not done themselves and so it is with the writing of strict sonnets but it is a task I will

More information

Using Genre Classification to Make Content-based Music Recommendations

Using Genre Classification to Make Content-based Music Recommendations Using Genre Classification to Make Content-based Music Recommendations Robbie Jones (rmjones@stanford.edu) and Karen Lu (karenlu@stanford.edu) CS 221, Autumn 2016 Stanford University I. Introduction Our

More information

Thug Misses By Mercedes Taylor

Thug Misses By Mercedes Taylor Thug Misses By Mercedes Taylor Khia - Thug Misses Lyrics and Tracklist Genius - Thug Misses Tracklist. 1. My Neck, My Back Lyrics. 262K 2. Hater (Skit) Lyrics. 3. Fuck Dem Other Hoes Lyrics. 4. The K-Wang

More information

Creating a New Hit Song A Study Guide for Grades Bierko Productions LLC

Creating a New Hit Song A Study Guide for Grades Bierko Productions LLC Creating a New Hit Song A Study Guide for Grades 2-6 2004 Bierko Productions LLC BIERKO PRODUCTIONS LLC 999 Cliff Road Yorktown Heights, NY 10598 (800) 364-5381 www.bethandscott.net info@bethandscott.net

More information

Can Song Lyrics Predict Genre? Danny Diekroeger Stanford University

Can Song Lyrics Predict Genre? Danny Diekroeger Stanford University Can Song Lyrics Predict Genre? Danny Diekroeger Stanford University danny1@stanford.edu 1. Motivation and Goal Music has long been a way for people to express their emotions. And because we all have a

More information

HOW TO ENJOY LIFE. We didn t ask to be born, but now that we re alive we should enjoy life to the fullest maximum. 1. Make art

HOW TO ENJOY LIFE. We didn t ask to be born, but now that we re alive we should enjoy life to the fullest maximum. 1. Make art HOW TO ENJOY LIFE 2 HOW TO ENJOY LIFE I think I enjoy life more so than other people. Why? And how? First of all, to be alive is a blessing. We didn t ask to be born, but now that we re alive we should

More information

SONG OF THE DAY LXXVIII

SONG OF THE DAY LXXVIII SONG OF THE DAY LXXVIII Today we are going to go back to a song that was never officially released on any Led Zeppelin album, yet, despite this obstacle, it was one of their most popular songs, not only

More information

Laughbot: Detecting Humor in Spoken Language with Language and Audio Cues

Laughbot: Detecting Humor in Spoken Language with Language and Audio Cues Laughbot: Detecting Humor in Spoken Language with Language and Audio Cues Kate Park, Annie Hu, Natalie Muenster Email: katepark@stanford.edu, anniehu@stanford.edu, ncm000@stanford.edu Abstract We propose

More information

DOCUMENT NAME/INFORMANT: PETER CHAMBERLAIN #2 INFORMANT'S ADDRESS: INTERVIEW LOCATION: TRIBE/NATION: OOWEKEENO HISTORY PROJECT

DOCUMENT NAME/INFORMANT: PETER CHAMBERLAIN #2 INFORMANT'S ADDRESS: INTERVIEW LOCATION: TRIBE/NATION: OOWEKEENO HISTORY PROJECT DOCUMENT NAME/INFORMANT: PETER CHAMBERLAIN #2 INFORMANT'S ADDRESS: INTERVIEW LOCATION: TRIBE/NATION: LANGUAGE: ENGLISH DATE OF INTERVIEW: 09/3-9/76 INTERVIEWER: DAVID STEVENSON INTERPRETER: TRANSCRIBER:

More information

INT. BERNIE'S PRIVATE DETECTIVE OFFICE -- DAY (1942)

INT. BERNIE'S PRIVATE DETECTIVE OFFICE -- DAY (1942) Poison or Lead - A Crime Noir Copyright 2012 Rob Milliken (Rob@YourDayHasArrived.com) INT. 'S PRIVATE DETECTIVE OFFICE -- DAY (1942) The scene is of 's office. Although it's daytime, the office is dark

More information

Sudhanshu Gautam *1, Sarita Soni 2. M-Tech Computer Science, BBAU Central University, Lucknow, Uttar Pradesh, India

Sudhanshu Gautam *1, Sarita Soni 2. M-Tech Computer Science, BBAU Central University, Lucknow, Uttar Pradesh, India International Journal of Scientific Research in Computer Science, Engineering and Information Technology 2018 IJSRCSEIT Volume 3 Issue 3 ISSN : 2456-3307 Artificial Intelligence Techniques for Music Composition

More information

Anne Hathaway By Carol Ann Duffy

Anne Hathaway By Carol Ann Duffy Anne Hathaway By Carol Ann Duffy Background and Narrative Voice Anne Hathaway was married to William Shakespeare. When Shakespeare died, despite being wealthy, all he left her in his will was his second

More information

Chorus Cheat Sheet 7 Types of Choruses and How to Write Them. Part I: The Chorus

Chorus Cheat Sheet 7 Types of Choruses and How to Write Them. Part I: The Chorus Chorus Cheat Sheet 7 Types of Choruses and How to Write Them Part I: The Chorus In order to fully understand choruses and how to write them, we need to break the chorus down into its basic fundamentals.

More information

Building a Better Bach with Markov Chains

Building a Better Bach with Markov Chains Building a Better Bach with Markov Chains CS701 Implementation Project, Timothy Crocker December 18, 2015 1 Abstract For my implementation project, I explored the field of algorithmic music composition

More information

Melody classification using patterns

Melody classification using patterns Melody classification using patterns Darrell Conklin Department of Computing City University London United Kingdom conklin@city.ac.uk Abstract. A new method for symbolic music classification is proposed,

More information

MIMes and MeRMAids: On the possibility of computeraided interpretation

MIMes and MeRMAids: On the possibility of computeraided interpretation MIMes and MeRMAids: On the possibility of computeraided interpretation P2.1: Can machines generate interpretations of texts? Willard McCarty in a post to the discussion list HUMANIST asked what the great

More information

15 Sure-Fire Tips to Wake Up and Feel Positive Every Day!

15 Sure-Fire Tips to Wake Up and Feel Positive Every Day! 2 15 Sure-Fire Tips to Wake Up and Feel Positive Every Day! Folks usually are as happy as they make up their minds to be ~Abraham Lincoln Did you ever wake up wishing that you could just turn over and

More information

Student Sample, Rhetorical Analysis 2

Student Sample, Rhetorical Analysis 2 Student Sample, Rhetorical Analysis 2 Nas Message: One Chance As a result of being raised in different places, belonging to a certain economic class, religion and culture, we all have different ways to

More information

Note: Please use the actual date you accessed this material in your citation.

Note: Please use the actual date you accessed this material in your citation. MIT OpenCourseWare http://ocw.mit.edu 18.06 Linear Algebra, Spring 2005 Please use the following citation format: Gilbert Strang, 18.06 Linear Algebra, Spring 2005. (Massachusetts Institute of Technology:

More information

Worship Songwriting. the ultimate beginner's guide BY TIA BROWN

Worship Songwriting. the ultimate beginner's guide BY TIA BROWN Worship Songwriting the ultimate beginner's guide BY TIA BROWN TABLE OF CONTENTS Introduction...2 Me?...3 More Worship Songs?...5 The Basics...8 The Lyrics...10 The Music...14 That's a Wrap!...25 Sources...26

More information

...so you don't just sit! POB Ames, IA / / fax 4

...so you don't just sit! POB Ames, IA / / fax 4 ...so you don't just sit! POB 742 4 Ames, IA 4 50010-0742 4 515/232-1247 4 515/232-3729 fax 4 al@alsmusic.com Al tackles one of the toughest questions a DJ ever has to answer: What kind of music do you

More information

Meanwhile, folk artists from the Caribbean Islands were also telling stories in rhyme.

Meanwhile, folk artists from the Caribbean Islands were also telling stories in rhyme. History of Rap More than a century before rap exploded onto the American music scene, West African musicians were telling stories rhythmically, with just the beat of a drum for accompaniment. Meanwhile,

More information

Bluegrass Music: Chopping and Singing Songs of Sorrow A Smithsonian Folkways Lesson Designed by: Claire M. Anderson University of Washington

Bluegrass Music: Chopping and Singing Songs of Sorrow A Smithsonian Folkways Lesson Designed by: Claire M. Anderson University of Washington Bluegrass Music: Chopping and Singing Songs of Sorrow A Smithsonian Folkways Lesson Designed by: Claire M. Anderson University of Washington Summary: This lesson is intended to introduce students to the

More information

Our Dad is in Atlantis

Our Dad is in Atlantis Our Dad is in Atlantis by Javier Malpica Translated by Jorge Ignacio Cortiñas 4 October 2006 Characters Big Brother : an eleven year old boy Little Brother : an eight year old boy Place Mexico Time The

More information

LearnEnglish Elementary Podcast Series 02 Episode 08

LearnEnglish Elementary Podcast Series 02 Episode 08 Support materials Download the LearnEnglish Elementary podcast. You ll find all the details on this page: http://learnenglish.britishcouncil.org/elementarypodcasts/series-02-episode-08 While you listen

More information

LLT 180 Lecture 8 1. We're over on page 194. We had just gotten done. We had Wart saying clearly

LLT 180 Lecture 8 1. We're over on page 194. We had just gotten done. We had Wart saying clearly LLT 180 Lecture 8 1 We're over on page 194. We had just gotten done. We had Wart saying clearly what we all knew and we beat it up that he much preferred the geese to the ant. And now finally we get rid

More information

Composer Identification of Digital Audio Modeling Content Specific Features Through Markov Models

Composer Identification of Digital Audio Modeling Content Specific Features Through Markov Models Composer Identification of Digital Audio Modeling Content Specific Features Through Markov Models Aric Bartle (abartle@stanford.edu) December 14, 2012 1 Background The field of composer recognition has

More information

YOU VE GOT A SMILE THAT COULD LIGHT UP THE WHOLE TOWN!

YOU VE GOT A SMILE THAT COULD LIGHT UP THE WHOLE TOWN! 3 - HYPERBOLE. A hyperbole ( hy-per-buh-lee ) is a an exaggeration so dramatic that it is obviously not true. Many singers and songwriters use hyperboles in their music to create a vivid image. Directions:

More information

Carl Wiser (Songfacts): We got an with some great pictures from the '70s of the Bella Vista.

Carl Wiser (Songfacts): We got an  with some great pictures from the '70s of the Bella Vista. http://www.songfacts.com/blog/interviews/pegi_young/ Pegi Young has been married to Neil Young since 1978. Their son Ben has cerebral palsy, and Pegi spent many years helping to establish the Bridge School,

More information

THE CIVIL SERVANT. Ayodeji Oluwaseyi Isaac

THE CIVIL SERVANT. Ayodeji Oluwaseyi Isaac THE CIVIL SERVANT by Ayodeji Oluwaseyi Isaac 09051448124 sicincayodeji@gmail.com FADE IN: INT. BAR- DAY The room is barely alive. Business just opened. Louis Armstrong's Weather bird hums softly BOBODE

More information

IMPLEMENTATION OF SIGNAL SPACING STANDARDS

IMPLEMENTATION OF SIGNAL SPACING STANDARDS IMPLEMENTATION OF SIGNAL SPACING STANDARDS J D SAMPSON Jeffares & Green Inc., P O Box 1109, Sunninghill, 2157 INTRODUCTION Mobility, defined here as the ease at which traffic can move at relatively high

More information

Download BasicSynth Epub

Download BasicSynth Epub Download BasicSynth Epub Books on music synthesizers explain the theory of music synthesis, or show you how to use an existing synthesizer, but don't cover the practical details of constructing a custom

More information

Automatic Polyphonic Music Composition Using the EMILE and ABL Grammar Inductors *

Automatic Polyphonic Music Composition Using the EMILE and ABL Grammar Inductors * Automatic Polyphonic Music Composition Using the EMILE and ABL Grammar Inductors * David Ortega-Pacheco and Hiram Calvo Centro de Investigación en Computación, Instituto Politécnico Nacional, Av. Juan

More information

If you are searching for a book Rap: The Lyrics in pdf format, then you've come to the correct website. We present utter option of this book in epub,

If you are searching for a book Rap: The Lyrics in pdf format, then you've come to the correct website. We present utter option of this book in epub, Rap: The Lyrics If you are searching for a book Rap: The Lyrics in pdf format, then you've come to the correct website. We present utter option of this book in epub, PDF, DjVu, doc, txt forms. You can

More information

CHAPTER 3. Melody Style Mining

CHAPTER 3. Melody Style Mining CHAPTER 3 Melody Style Mining 3.1 Rationale Three issues need to be considered for melody mining and classification. One is the feature extraction of melody. Another is the representation of the extracted

More information

Exploring the Language of Poetry: Structure. Ms. McPeak

Exploring the Language of Poetry: Structure. Ms. McPeak Exploring the Language of Poetry: Structure Ms. McPeak Poem Structure: The Line is A Building Block The basic building-block of prose (writing that isn't poetry) is the sentence. But poetry has something

More information

What I know now. True to Me / Five Sessions / Worksheet

What I know now. True to Me / Five Sessions / Worksheet PERSONAL CHALLENGE True to Me / Five Sessions / Worksheet What I know now 1 What would you say to your younger self to warn against the negative effects of chasing the appearance ideal and convince yourself

More information

OK, so when did you change your mind and decide to make a career from music?

OK, so when did you change your mind and decide to make a career from music? Last year the soul community got to know about Toronto-based soul singer TANIKA CHARLES via a lovely ear-worm of a tune, 'Endless Chain'. Investigation revealed that the cut came from her album 'Soul Run'

More information

P3 Hold On Tight. Do you want to have some fun? Dah dah dah dah Do you want to have some fun? Then come along with me.

P3 Hold On Tight. Do you want to have some fun? Dah dah dah dah Do you want to have some fun? Then come along with me. P3 Hold On Tight Do you want to have some fun? Dah dah dah dah Do you want to have some fun? Then come along with me. The rollercoaster goes up The rollercoaster goes down Ahh ooh whee Come on let s ride

More information

Free Ebooks The Disney Fake Book, 3rd Edition

Free Ebooks The Disney Fake Book, 3rd Edition Free Ebooks The Disney Fake Book, 3rd Edition (Fake Book). This third edition features even more Disney favorites, including hits from their most recent movie and television releases. 240 songs in all,

More information

Automatic Music Genre Classification

Automatic Music Genre Classification Automatic Music Genre Classification Nathan YongHoon Kwon, SUNY Binghamton Ingrid Tchakoua, Jackson State University Matthew Pietrosanu, University of Alberta Freya Fu, Colorado State University Yue Wang,

More information

Night of the Cure. TUCKER, late 20s. ELI, mid-40s. CHRIS, mid-30s

Night of the Cure. TUCKER, late 20s. ELI, mid-40s. CHRIS, mid-30s Night of the Cure TUCKER, late 20s. ELI, mid-40s. CHRIS, mid-30s Setting: A heavy door. Above, a flickering neon sign that reads "Touche" or "Sidetrack." Something not nearly clever enough. Time: Six months

More information

It's Wonderful to Sing... for Life

It's Wonderful to Sing... for Life It's Wonderful to Sing... for Life (item # 4430) Hannony College Show, 2001 It's Wonderful to Sing... for Life Stage set with chorus risers, down stage to main curtain, suitable back drop and/or eye lights

More information

I HAD TO STAY IN BED. PRINT PAGE 161. Chapter 11

I HAD TO STAY IN BED. PRINT PAGE 161. Chapter 11 PRINT PAGE 161. Chapter 11 I HAD TO STAY IN BED a whole week after that. That bugged me; I'm not the kind that can lie around looking at the ceiling all the time. I read most of the time, and drew pictures.

More information

œ œ œ œ œ œ œ œ œ œ œ œ œ bœ bœ. œ œ œ œ œ œ œ œ œ œ œ!! œ œ œ œ œ œ œ œ œ œ! œ œ bœ . œ œ œ œ œ œ œ œ œ! œ œ œ œ œ! œ œ œ! œ œ œ œ œ D(4-1) D(4-1)

œ œ œ œ œ œ œ œ œ œ œ œ œ bœ bœ. œ œ œ œ œ œ œ œ œ œ œ!! œ œ œ œ œ œ œ œ œ œ! œ œ bœ . œ œ œ œ œ œ œ œ œ! œ œ œ œ œ! œ œ œ! œ œ œ œ œ D(4-1) D(4-1) The Emancipation of Metric Displacement Dissonance in Hip-Hop Music Ben Duinker, McGill University benamin.duinker@mail.mcgill.ca Eample 1: ecerpt from Award Tour (A Tribe Called Quest, 199). Bass and

More information

By Natalie Miano (photos on this page by Natalie Miano)

By Natalie Miano (photos on this page by Natalie Miano) BUMBERSHOOT 2016 Top 6 Performances: Third Eye Blind Duh. They killed it like always. It was their last show on their tour and they brought the energy all our 90s rock souls needed. Anderson.Paak and the

More information

Aaah just some additional questions that-that we had and we wanted to talk to you in person, okay?

Aaah just some additional questions that-that we had and we wanted to talk to you in person, okay? November 11, 2014 1:14 p.m. Special Agent () Federal Bureau of Investigation = AU = AU DOJ Trial Attorney = Unintelligible= Ul AU Today is Wednesday, November l2 1 h, 2014, 1:14 p.m. I am Special Agent,

More information

arxiv: v1 [cs.cl] 9 Dec 2016

arxiv: v1 [cs.cl] 9 Dec 2016 Evaluating Creative Language Generation: The Case of Rap Lyric Ghostwriting Peter Potash, Alexey Romanov, Anna Rumshisky University of Massachusetts Lowell Department of Computer Science {ppotash,aromanov,arum}@cs.uml.edu

More information

Introduction to Natural Language Processing This week & next week: Classification Sentiment Lexicons

Introduction to Natural Language Processing This week & next week: Classification Sentiment Lexicons Introduction to Natural Language Processing This week & next week: Classification Sentiment Lexicons Center for Games and Playable Media http://games.soe.ucsc.edu Kendall review of HW 2 Next two weeks

More information

Big stories and small stories: reflections on methodological issues in narrative research

Big stories and small stories: reflections on methodological issues in narrative research Big stories and small stories: reflections on methodological issues in narrative research Mike Baynham (University of Leeds) Alexandra Georgakopoulou (Kings College London) Abstract For us methodological

More information

arxiv: v1 [cs.lg] 15 Jun 2016

arxiv: v1 [cs.lg] 15 Jun 2016 Deep Learning for Music arxiv:1606.04930v1 [cs.lg] 15 Jun 2016 Allen Huang Department of Management Science and Engineering Stanford University allenh@cs.stanford.edu Abstract Raymond Wu Department of

More information

FADE IN: A dimly lit, musty, basement. Water drips from old rusted pipes. Rats scurry across the room.

FADE IN: A dimly lit, musty, basement. Water drips from old rusted pipes. Rats scurry across the room. 1 FADE IN: INT. BASEMENT - DAY A dimly lit, musty, basement. Water drips from old rusted pipes. Rats scurry across the room. Here, hanging from the ceiling, is a brown haired man; BOB. He has looks to

More information

File No WORLD TRADE CENTER TASK FORCE INTERVIEW EMT JULIO MARRERO. Interview Date: October 25, Transcribed by Laurie A.

File No WORLD TRADE CENTER TASK FORCE INTERVIEW EMT JULIO MARRERO. Interview Date: October 25, Transcribed by Laurie A. File No. 9110162 WORLD TRADE CENTER TASK FORCE INTERVIEW EMT JULIO MARRERO Interview Date: October 25, 2001 Transcribed by Laurie A. Collins J. MARRERO 2 MS. BASTEDENBECK: Today is October 25th, 2001.

More information

MITOCW max_min_second_der_512kb-mp4

MITOCW max_min_second_der_512kb-mp4 MITOCW max_min_second_der_512kb-mp4 PROFESSOR: Hi. Well, I hope you're ready for second derivatives. We don't go higher than that in many problems, but the second derivative is an important-- the derivative

More information

Composite Video vs. Component Video

Composite Video vs. Component Video Composite Video vs. Component Video Composite video is a clever combination of color and black & white information. Component video keeps these two image components separate. Proper handling of each type

More information