'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Chingo Bling

Pedro Herrera III (born September 5, 1979 in Houston, Texas), better known by his stage name Chingo Bling, is an American rapper and producer of Mexican descent.

Early life and education

Chingo attended Peddie School, a private college preparatory boarding school in Hightstown, New Jersey, on a scholarship. Chingo graduated from Trinity University in San Antonio, Texas with a bachelor's degree in Marketing in 2001.

Career

Podcasts:

Chingo Bling

  • Chingo Bling feat 3am “CRUNK CUMBIA AINT DEAD”

    Thank you for supporting the channel! NEW MUSIC ON THE WAY Special thanks to Additional footage shot by Ducky @duckymane @producesoundstudios @eldusty @producegoods Slingshots appear courtesy of Slingshots y Amigos @ssamigos2023 Produced by DJ Quality Mixed and mastered by FM producer 713 Second song at end BOOM BOOM feat Ratcheton and Dirtbag - from the Versace Mariachi album 💿 For Tickets to Upcoming Comedy Tour Dates: CHINGOBLING.COM/LIVE Get your merch at chingodemerch.com GRACIAS !!!

    published: 09 Dec 2023
  • Chingo Bling | Hotline Bling | Parody

    Thank you for supporting the channel! Upcoming Comedy Tour Dates: West palm beach, FL 4/3 Tacoma, Wa 4/7 Nashville, TN 4/14 Corpus Christi, TX 5/5-5/7 Arlington, TX 5/12-5/15 New braunfels, TX 5/20/22 Lubbock, TX 5/22/22 Bryan, TX 5/28/22 (2shows) San Angelo, TX 6/3/22 Odessa, TX 6/4/22 Austin, TX 6/9 Albuquerque, NM 6/15 El Paso, TX 6/16-6/18 Irvine, Ca 7/6 Ontario, CA 7/7 Denver, CO 7/14-7/16 OKC, ok 7/28 Chicago 8/4 zanies rosemont Phoenix, AZ 8/11 San Jose, CA 8/24 Brea, Ca 9/14 Oxnard, CA 9/15 San Antonio 9/29-10/2 Addison, TX 11/4-11/6 CHINGOBLING.COM/LIVE for tickets

    published: 02 Apr 2022
  • Chingo Bling Comedy - Crossing The Border Be Like - Netflix Special 2017 "They Can't Deport Us All"

    Subscribe to the Channel CBTV & Hit the Bell Notification. You can watch the full 2017 comedy special on Netflix https://www.netflix.com/title/80139214 Sign up to the newsletter on for exclusive updates on upcoming comedy tour dates, New Music, & more! SIGN UP HERE: https://www.chingobling.com/

    published: 03 Feb 2020
  • Like This N Like That

    Provided to YouTube by Ingrooves Like This N Like That · Chingo Bling They Can’t Deport Us All ℗ Big Chile Enterprises/SoSouth Released on: 2007-08-14 Writer, Composer: Pedro Herrera III Auto-generated by YouTube.

    published: 11 May 2015
  • LiL MoCo - STARTED FROM THE BORDER FT. CHINGO BLING ( Drake - Started From The Bottom Parody )

    Buy on iTunes! https://itunes.apple.com/us/album/started-from-border-single/id618307213 Started From The Border Shirts! Only @ http://www.TheCancunLife.Com Click Here To Share http://bit.ly/YJ8CJW Directed,Shot & Edited By - http://YouTube.Com/Qbanguy & http://twitter.com/Qbnguy Starring Lil' Moco - http://facebook.com/MocoTheGreat - http://twitter.com/spacejamgardenz Chingo Bling - http://facebook.com/officialchingobling - http://twitter.com/chingobling Get your Started From The Border Shirts! Only @ http://TheCancunLife.Com Johnny Boy (Cook/OG) - http://youtube.com/Johnnyboy702 DJ RonDizzle (Cook) - http://youtube.com/rondizzletv Border Patrol (Black) Mike - http://facebook.com/michaelallen7047 Border Patrol (White) Alex - facebook.com/alexmaneiro Girl Ordering Taco - Tatiana...

    published: 08 Mar 2013
  • Chingo Bling - "PURO PARI" - (Official Music Video)

    Whats up guys we brought this one back from the vault! It got lost along with my old channel but we managed to salvage this throwback! Its an oldie but goodie. Also quick reminder, tour kicks off in a few days! HERE ARE THE DATES! 1/30- Salt Lake City 2/5- Nashville,TN 2/6- Huntsville, AL 2/21- Long Beach 2/22- Fresno 2/27- Kansas City 3/8- Naples 3/13- Phoenix 3/26- Atlanta 4/3- Victoria 4/4- Austin 4/16- Abilene 4/17- Midland 4/24- San Angelo 4/25- Waco 5/7-5/9- Corpus Christi 5/21- west palm beach 5/29-5/31- Arlington 6/18- Ontario,Ca 6/25- Oxnard 6/26-6/28- Pleasanton, Ca 7/2- Irvine 7/9- Hollywood 7/16-7/18- San Diego 7/23- Burbank 7/30- Brea 8/6- San Jose 8/21-8/23- Denver 9/5- McAllen, TX 9/11-9/13- Houston 9/24-9/26- San Antonio 10/17- Albuquerque 10/18- Portland 10/25- Raleigh,...

    published: 26 Jan 2020
  • Chingo Bling - Call Me Maybe (Pos Why Ju Hating?)

    Song available now on iTunes: https://itunes.apple.com/us/album/call-me-maybe-pos-why-ju-hating/id577976270... Video Directed, Shot & Chopped by Edward "E-Dub" Rios for Silent Giant Entertainment

    published: 11 Dec 2012
  • Chingo Bling - Im In Love With Your Sister (LYRICS)

    Chingo Bling - Im In Love With Your Sister Lyrics oye vieja ven paca porque estas enojada eh y u mad? well maybe if you stayed home more and didnt go out with your friends id be more happier so now i got to depend on your sister dont get crazy with her she just helping me out oye i wrote a song about her mira once a week she cooks tamales in her cocina in the kitchen there i see ju girl tell me can we start eating me dijo no you see my jaina dont like she is doin cause her hermana gets attention now my lady wants to throw me out the house because i mentiond that im in love with her sister shes cookin shes lookin real firme baby please take it easy im in love with your sister she washes the dishes with soap and she washes my socks a...

    published: 20 Jul 2009
  • NEW CHINGO BLING: "QVO?" (Official Music Video)

    Thank you for supporting the channel! Shout out to Tony Cedillo of Dot Video Design in El Paso! VERSACE MARIACHI DROPS Black Friday! CHINGOBLING.COM for tour tickets and exclusive MERCHANDISE.

    published: 06 Nov 2020
  • CHINGO BLING -PALETERO MAN (video official )2011 HD

    HIP-HOP , RAP , REGGEATON CHINGO BLING PLEASE SUBSCRIBE LIKE AND COMMENT!!!!!!!

    published: 30 Dec 2011
developed with YouTube
Chingo Bling feat 3am “CRUNK CUMBIA AINT DEAD”
3:40

Chingo Bling feat 3am “CRUNK CUMBIA AINT DEAD”

  • Order:
  • Duration: 3:40
  • Uploaded Date: 09 Dec 2023
  • views: 16599
Thank you for supporting the channel! NEW MUSIC ON THE WAY Special thanks to Additional footage shot by Ducky @duckymane @producesoundstudios @eldusty @producegoods Slingshots appear courtesy of Slingshots y Amigos @ssamigos2023 Produced by DJ Quality Mixed and mastered by FM producer 713 Second song at end BOOM BOOM feat Ratcheton and Dirtbag - from the Versace Mariachi album 💿 For Tickets to Upcoming Comedy Tour Dates: CHINGOBLING.COM/LIVE Get your merch at chingodemerch.com GRACIAS !!!
https://wn.com/Chingo_Bling_Feat_3Am_“Crunk_Cumbia_Aint_Dead”
Chingo Bling | Hotline Bling | Parody
2:20

Chingo Bling | Hotline Bling | Parody

  • Order:
  • Duration: 2:20
  • Uploaded Date: 02 Apr 2022
  • views: 74391
Thank you for supporting the channel! Upcoming Comedy Tour Dates: West palm beach, FL 4/3 Tacoma, Wa 4/7 Nashville, TN 4/14 Corpus Christi, TX 5/5-5/7 Arlington, TX 5/12-5/15 New braunfels, TX 5/20/22 Lubbock, TX 5/22/22 Bryan, TX 5/28/22 (2shows) San Angelo, TX 6/3/22 Odessa, TX 6/4/22 Austin, TX 6/9 Albuquerque, NM 6/15 El Paso, TX 6/16-6/18 Irvine, Ca 7/6 Ontario, CA 7/7 Denver, CO 7/14-7/16 OKC, ok 7/28 Chicago 8/4 zanies rosemont Phoenix, AZ 8/11 San Jose, CA 8/24 Brea, Ca 9/14 Oxnard, CA 9/15 San Antonio 9/29-10/2 Addison, TX 11/4-11/6 CHINGOBLING.COM/LIVE for tickets
https://wn.com/Chingo_Bling_|_Hotline_Bling_|_Parody
Chingo Bling Comedy - Crossing The Border Be Like - Netflix Special 2017 "They Can't Deport Us All"
4:08

Chingo Bling Comedy - Crossing The Border Be Like - Netflix Special 2017 "They Can't Deport Us All"

  • Order:
  • Duration: 4:08
  • Uploaded Date: 03 Feb 2020
  • views: 174620
Subscribe to the Channel CBTV & Hit the Bell Notification. You can watch the full 2017 comedy special on Netflix https://www.netflix.com/title/80139214 Sign up to the newsletter on for exclusive updates on upcoming comedy tour dates, New Music, & more! SIGN UP HERE: https://www.chingobling.com/
https://wn.com/Chingo_Bling_Comedy_Crossing_The_Border_Be_Like_Netflix_Special_2017_They_Can't_Deport_US_All
Like This N Like That
3:59

Like This N Like That

  • Order:
  • Duration: 3:59
  • Uploaded Date: 11 May 2015
  • views: 1196265
Provided to YouTube by Ingrooves Like This N Like That · Chingo Bling They Can’t Deport Us All ℗ Big Chile Enterprises/SoSouth Released on: 2007-08-14 Writer, Composer: Pedro Herrera III Auto-generated by YouTube.
https://wn.com/Like_This_N_Like_That
LiL MoCo - STARTED FROM THE BORDER FT. CHINGO BLING ( Drake - Started From The Bottom Parody )
5:25

LiL MoCo - STARTED FROM THE BORDER FT. CHINGO BLING ( Drake - Started From The Bottom Parody )

  • Order:
  • Duration: 5:25
  • Uploaded Date: 08 Mar 2013
  • views: 19172022
Buy on iTunes! https://itunes.apple.com/us/album/started-from-border-single/id618307213 Started From The Border Shirts! Only @ http://www.TheCancunLife.Com Click Here To Share http://bit.ly/YJ8CJW Directed,Shot & Edited By - http://YouTube.Com/Qbanguy & http://twitter.com/Qbnguy Starring Lil' Moco - http://facebook.com/MocoTheGreat - http://twitter.com/spacejamgardenz Chingo Bling - http://facebook.com/officialchingobling - http://twitter.com/chingobling Get your Started From The Border Shirts! Only @ http://TheCancunLife.Com Johnny Boy (Cook/OG) - http://youtube.com/Johnnyboy702 DJ RonDizzle (Cook) - http://youtube.com/rondizzletv Border Patrol (Black) Mike - http://facebook.com/michaelallen7047 Border Patrol (White) Alex - facebook.com/alexmaneiro Girl Ordering Taco - Tatiana Chavez (Instagram @tatithebestestt) Special Thanks to Abuela's Taco Shop for lettin' us film there and making bomb ass food!!!!!!! Visit them here @ https://www.facebook.com/?q=#/pages/Abuelas-Tacos/190265317682019?ref=ts&fref=ts Love you guys keep watching and stay tuned for more!
https://wn.com/Lil_Moco_Started_From_The_Border_Ft._Chingo_Bling_(_Drake_Started_From_The_Bottom_Parody_)
Chingo Bling - "PURO PARI" - (Official Music Video)
4:13

Chingo Bling - "PURO PARI" - (Official Music Video)

  • Order:
  • Duration: 4:13
  • Uploaded Date: 26 Jan 2020
  • views: 195750
Whats up guys we brought this one back from the vault! It got lost along with my old channel but we managed to salvage this throwback! Its an oldie but goodie. Also quick reminder, tour kicks off in a few days! HERE ARE THE DATES! 1/30- Salt Lake City 2/5- Nashville,TN 2/6- Huntsville, AL 2/21- Long Beach 2/22- Fresno 2/27- Kansas City 3/8- Naples 3/13- Phoenix 3/26- Atlanta 4/3- Victoria 4/4- Austin 4/16- Abilene 4/17- Midland 4/24- San Angelo 4/25- Waco 5/7-5/9- Corpus Christi 5/21- west palm beach 5/29-5/31- Arlington 6/18- Ontario,Ca 6/25- Oxnard 6/26-6/28- Pleasanton, Ca 7/2- Irvine 7/9- Hollywood 7/16-7/18- San Diego 7/23- Burbank 7/30- Brea 8/6- San Jose 8/21-8/23- Denver 9/5- McAllen, TX 9/11-9/13- Houston 9/24-9/26- San Antonio 10/17- Albuquerque 10/18- Portland 10/25- Raleigh, NC
https://wn.com/Chingo_Bling_Puro_Pari_(Official_Music_Video)
Chingo Bling - Call Me Maybe (Pos Why Ju Hating?)
3:23

Chingo Bling - Call Me Maybe (Pos Why Ju Hating?)

  • Order:
  • Duration: 3:23
  • Uploaded Date: 11 Dec 2012
  • views: 2983299
Song available now on iTunes: https://itunes.apple.com/us/album/call-me-maybe-pos-why-ju-hating/id577976270... Video Directed, Shot & Chopped by Edward "E-Dub" Rios for Silent Giant Entertainment
https://wn.com/Chingo_Bling_Call_Me_Maybe_(Pos_Why_Ju_Hating_)
Chingo Bling - Im In Love With Your Sister (LYRICS)
3:24

Chingo Bling - Im In Love With Your Sister (LYRICS)

  • Order:
  • Duration: 3:24
  • Uploaded Date: 20 Jul 2009
  • views: 1432681
Chingo Bling - Im In Love With Your Sister Lyrics oye vieja ven paca porque estas enojada eh y u mad? well maybe if you stayed home more and didnt go out with your friends id be more happier so now i got to depend on your sister dont get crazy with her she just helping me out oye i wrote a song about her mira once a week she cooks tamales in her cocina in the kitchen there i see ju girl tell me can we start eating me dijo no you see my jaina dont like she is doin cause her hermana gets attention now my lady wants to throw me out the house because i mentiond that im in love with her sister shes cookin shes lookin real firme baby please take it easy im in love with your sister she washes the dishes with soap and she washes my socks and calcones im in love with your sister no complaining im saying she staying she even beat me at playstation im in love with your sister she watches novelas george lopez por favor mija no llorez (memo) shes every vatos dream shes gods gift to earth shes not dat pretty but beauty dont only come in skirts shes not a freaky jaina but she knows aunt jemima girl cook me breakfast she knows memo is a hardcore rhymer not your memo keep it ghetto ven heremana yo te quiero let me see that recipe i want you standing next to me eating rice and menudo she know she got me when crudo thats all i got to say bout that girl that im in love with your sister shes cookin shes lookin real firme baby please take it easy (chingo) im in love with your sister she washes the dishes with soap and she washes my socks and calcones im in love with her sister no complaining im saying she staying she even beat me at playstation im in love with your sister she watches novelas george lopez por favor mija no llorez im i love with you sister (sister1) Diana sabes que? what u been lookin for my man for eh? (sister 2) 'cause u aint got no food at your house (sister1) what chu mean i aint got no food at my house? (sister 2) feedin all those babies u got 'cause u been sleepin around (sister1) dont even b talkin to me about sleeping around! (sister 2) why your man at my house all the time? (sister1) girl didnt u just hear mi i said i got enchaladaz at my house for him (sister 2) enchaladaz made out of what? (sister1)girl u dont need my recipe (sister2)no i think he likes comming to my house 'cause i do his dishez i do his laundry (Sister 1)any ways im the only one that does his laundry and cooks his food (sister2) or so u thought!! 'cause im in love with your sister shes cookin shes lookin real firme baby please take it easy im love with your sister she washes the dishes with soap and she washes my socks and calcones im in love with her sister no complaining im saying she staying she even beat me at playstation im in love with your sister she watches novelas george lopez por favor mija no llorez im in love with your sister (chingo ang jaina talk) so there it is right there mija u understand me dont b mad u noe i luv u so what u gunna do leave? fine il catch u laters (she leaves door slames)
https://wn.com/Chingo_Bling_Im_In_Love_With_Your_Sister_(Lyrics)
NEW CHINGO BLING: "QVO?" (Official Music Video)
2:51

NEW CHINGO BLING: "QVO?" (Official Music Video)

  • Order:
  • Duration: 2:51
  • Uploaded Date: 06 Nov 2020
  • views: 102375
Thank you for supporting the channel! Shout out to Tony Cedillo of Dot Video Design in El Paso! VERSACE MARIACHI DROPS Black Friday! CHINGOBLING.COM for tour tickets and exclusive MERCHANDISE.
https://wn.com/New_Chingo_Bling_Qvo_(Official_Music_Video)
CHINGO BLING -PALETERO MAN (video official )2011 HD
2:14

CHINGO BLING -PALETERO MAN (video official )2011 HD

  • Order:
  • Duration: 2:14
  • Uploaded Date: 30 Dec 2011
  • views: 1298055
HIP-HOP , RAP , REGGEATON CHINGO BLING PLEASE SUBSCRIBE LIKE AND COMMENT!!!!!!!
https://wn.com/Chingo_Bling_Paletero_Man_(Video_Official_)2011_Hd
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
developed with YouTube
PLAYLIST TIME:

Chingo Bling feat 3am “CRUNK CUMBIA AINT DEAD”

Thank you for supporting the channel! NEW MUSIC ON THE WAY Special thanks to Additional footage shot by Ducky @duckymane @producesoundstudios @eldusty @producegoods Slingshots appear courtesy of Slingshots y Amigos @ssamigos2023 Produced by DJ Quality Mixed and mastered by FM producer 713 Second song at end BOOM BOOM feat Ratcheton and Dirtbag - from the Versace Mariachi album 💿 For Tickets to Upcoming Comedy Tour Dates: CHINGOBLING.COM/LIVE Get your merch at chingodemerch.com GRACIAS !!!
3:40
Chingo Bling feat 3am “CRUNK CUMBIA AINT DEAD”
Thank you for supporting the channel! NEW MUSIC ON THE WAY Special thanks to Additiona...
published: 09 Dec 2023
Play in Full Screen
2:20
Chingo Bling | Hotline Bling | Parody
Thank you for supporting the channel! Upcoming Comedy Tour Dates: West palm beach, FL 4/...
published: 02 Apr 2022
Play in Full Screen
4:08
Chingo Bling Comedy - Crossing The Border Be Like - Netflix Special 2017 "They Can't Deport Us All"
Subscribe to the Channel CBTV & Hit the Bell Notification. You can watch the full 2017 co...
published: 03 Feb 2020
Play in Full Screen
3:59
Like This N Like That
Provided to YouTube by Ingrooves Like This N Like That · Chingo Bling They Can’t Deport ...
published: 11 May 2015
Play in Full Screen
5:25
LiL MoCo - STARTED FROM THE BORDER FT. CHINGO BLING ( Drake - Started From The Bottom Parody )
Buy on iTunes! https://itunes.apple.com/us/album/started-from-border-single/id618307213 S...
published: 08 Mar 2013
Play in Full Screen
4:13
Chingo Bling - "PURO PARI" - (Official Music Video)
Whats up guys we brought this one back from the vault! It got lost along with my old chan...
published: 26 Jan 2020
Play in Full Screen
3:23
Chingo Bling - Call Me Maybe (Pos Why Ju Hating?)
Song available now on iTunes: https://itunes.apple.com/us/album/call-me-maybe-pos-why-ju-h...
published: 11 Dec 2012
Play in Full Screen
3:24
Chingo Bling - Im In Love With Your Sister (LYRICS)
Chingo Bling - Im In Love With Your Sister Lyrics oye vieja ven paca porque estas enoja...
published: 20 Jul 2009
Play in Full Screen
2:51
NEW CHINGO BLING: "QVO?" (Official Music Video)
Thank you for supporting the channel! Shout out to Tony Cedillo of Dot Video Design in El ...
published: 06 Nov 2020
Play in Full Screen
2:14
CHINGO BLING -PALETERO MAN (video official )2011 HD
HIP-HOP , RAP , REGGEATON CHINGO BLING PLEASE SUBSCRIBE LIKE AND COMMENT!!!!!!!
published: 30 Dec 2011
Play in Full Screen

Chingo Bling

Pedro Herrera III (born September 5, 1979 in Houston, Texas), better known by his stage name Chingo Bling, is an American rapper and producer of Mexican descent.

Early life and education

Chingo attended Peddie School, a private college preparatory boarding school in Hightstown, New Jersey, on a scholarship. Chingo graduated from Trinity University in San Antonio, Texas with a bachelor's degree in Marketing in 2001.

Career

'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
×