'+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; })); }); -->

Tina Sinatra

Christina "Tina" Sinatra (born June 20, 1948 in Los Angeles) is the youngest child of the American singer and actor Frank Sinatra and his first wife, Nancy Barbato Sinatra. She has two full siblings, Nancy (born 1940) and Frank Jr. (born 1944). Her parents divorced when she was three years old.

In 1968 Tina appeared on the album The Sinatra Family Wish You a Merry Christmas with her father and siblings. She contributed to five tracks on the album, including "Santa Claus Is Coming to Town" and a duet on "O Bambino (One Cold and Blessed Winter)", with her sister. Tina also appeared with her siblings on an episode of Dean Martin's television show with Martin's children.

Sinatra never wished to be a singer like her father and siblings, but took acting classes with Jeff Corey, and appeared in a television mini-series in Germany, where she lived for several years. After returning to the United States, she took more classes with Corey, and appeared in episodes of It Takes a Thief, and Mannix. In her memoir Sinatra wrote of her acting career that though her reviews were generally favourable, she lacked the ambition and confidence to become an actress. Sinatra remained in the entertainment industry, becoming a theatrical agent under Arnold Stiefel, and at one stage represented Robert Blake.

Podcasts:

  • Harvey Brownstone Interview with Tina Sinatra, Daughter of the Legendary Frank Sinatra

    Harvey Brownstone conducts an in-depth Interview with Tina Sinatra, Daughter of the Legendary Frank Sinatra About Harvey's guest: Today’s special guest, Tina Sinatra, is a member of Hollywood royalty. She’s the youngest child of the most beloved vocalist and entertainer of all time – Frank Sinatra. As an actress, she appeared in a number of TV shows including “Romeo and Julia ‘70”, “It Takes a Thief”, “Adam-12”, “Mannix” and “Fantasy Island”. But she has devoted most of her life and career to managing, advancing and honouring the spectacular legacy and body of work of her father’s monumental career. She was the executive producer of the fabulous, star-studded TV Special “Sinatra 75: The Best is Yet to Come”, celebrating her father’s 75th birthday. She also executive produced th...

    published: 25 Apr 2024
  • Tina Sinatra Joins Us To Reveal How She’s Keeping Her Fathers Memory Alive | Loose Women

    She’s dedicated her life to keeping her father, Frank Sinatra’s legacy alive, and today Tina Sinatra will be joining us for the first time to discuss her latest project - ‘Sinatra The Musical’! The show, which she has produced, documents the earlier life of her beloved father Frank, showing audiences parts of the man that were previously unknown .She will also be sharing with us her own special memories of her father, and what it was really like to be the daughter of a true Hollywood star! Subscribe now for more! http://bit.ly/1VGTPwA From series 27, broadcast on 29/09/2023 Watch Loose Women on the ITV Hub: http://daytimelink.itv.com/WatchLWYT Like, follow and subscribe to Loose Women! Subscribe now for more! http://bit.ly/1VGTPwA Website: http://bit.ly/1EDGFp5 YouTube: http://bit.ly...

    published: 29 Sep 2023
  • Nancy Sinatra - These Boots Are Made For Walkin' (Official Music Video)

    https://link.lightintheattic.net/BOOTS-PO Director/Choreographer: Robert Sidney Additional Editing: Chelsea Christer Celebrated archival reissue label Light in the Attic (LITA) is proud to announce the second release in their Nancy Sinatra Archival Series, the definitive version of her inimitable debut LP, Boots. Originally released in 1966, the enduringly iconic, million-selling album not only catapulted the career of singer, actress, activist, and cultural icon, Nancy Sinatra, it contained within its grooves an enduring anthem of empowerment that continues to resonate with new audiences today with no signs of slowing down. Boots marks Sinatra’s transformation from “Nancy nice lady,” as she says, to a fully-formed and self-assured figure of empowerment both in appearance and in perform...

    published: 06 Jun 2023
  • After 25 Years, Frank Sinatra's Daughter Tina Sinatra Revealed His Last Words Before Father Death

    Francis Albert Sinatra was an American singer and actor. Nicknamed the "Chairman of the Board" and later called "Ol' Blue Eyes", he is regarded as one of the most popular entertainers of the mid-20th century. Sinatra is among the world's best-selling music artists with an estimated 150 million record sales. Christina Sinatra is an American businesswoman, producer, talent agent, actress, singer and author. She is best known as the daughter of Frank Sinatra. #franksinatra ★ Click to SUBSCRIBE for more awesome! https://www.youtube.com/channel/UCoKqksOBPKABvA2jqrrog9g ★ Thank you for stopping by the channel! If you enjoyed, I try to do videos every day! Check us out at: https://www.youtube.com/channel/UCoKqksOBPKABvA2jqrrog9g

    published: 25 Dec 2023
  • Tina Sinatra Exclusive Interview

    In anticipation of Frank Sinatra’s birthday on December 12th, Bulova celebrates one of the world’s most iconic vocalists with an exclusive video discussion with Frank’s daughter, Tina Sinatra. Former singer, actress, film producer, memoirist and Frank Sinatra’s daughter, Tina Sinatra, says, “No one respected time more than my father, he never liked to keep an audience waiting. He often said, ‘If you’re not early, you’re late.’ Dad’s association with Bulova spans over six decades and we are proud to continue the relationship into the 21st Century." To view the multimedia release go to: https://www.multivu.com/players/English/8825951-bulova-celebrates-frank-sinatra-birthday-video-interview-with-tina-sinatra/

    published: 09 Dec 2020
  • Tina Sinatra

    Christina "Tina" Sinatra is an American businesswoman, producer, Hollywood agent, and memoirist.

    published: 27 May 2022
  • Nancy Sinatra Confirms the Rumors About Her Father

    Nancy Sinatra, born on June 8, 1940, in Jersey City, New Jersey, is a multifaceted American icon renowned for her contributions to music, film, and television. Her life and career are intertwined with her famous father, Frank Sinatra, yet she managed to forge her own unique path in the entertainment world. ▬Contents of this video▬ 00:00 - Intro 00:53 - Nancy’s Early Life 02:54 - Nancy and Frank 04:44 - The “Terrible” Song 07:11 - Paternity Rumors 07:48 - Outro Like this content? Subscribe here: https://www.youtube.com/factsverse?sub_confirmation=1 Or, watch more videos here: https://www.youtube.com/playlist?list=PLkXAntdjbcSJlJnpP4FgdU0swKbnkNgJj Become a Facts Verse member and get access to all videos that contain mature content. Use the link below to get access to even more videos, ...

    published: 25 Dec 2023
  • Frank Sinatra’s Wife Was Responsible for His Death (Daughter Reveals All)

    Did you know that Frank Sinatra stole comedic actor Zeppo Marx’s wife and that Frank’s kids blame the woman in question for their father’s death? Frank Sinatra was married four times over the course of his life, and his marriage to his final wife Barbara seems from the outside to have been the most successful of them all. Frank’s marriage to Barbara was his longest, and he died with her by his side. However, Frank’s children, all of whom came from the crooner’s first marriage, never liked Barbara. In fact, one of them even blames Barbara for their father’s death! ▬Contents of this video▬ 00:00 - Intro 00:20 - Nancy Sinatra Jr. Feels Her Father Could’ve Lived Longer 01:40 - Frank’s Last Marriage Was His Longest 02:28 - Frank and Barbara Met Years Before Their Marriage 03:43 - Frank and Bar...

    published: 26 Jun 2022
  • What Happened to Frank Sinatra's Children? His Legacy Continues

    If you were the child of a star like Frank Sinatra, do you think you would try to follow in their footsteps by pursuing a career in the spotlight or would you try to do your own thing out of the public eye? Also, which one of Frank Sinatra's children do you think best carried on their father's legacy? Let us know in the comments. ▬Contents of this video▬ 00:00 - Intro 00:49 - Nancy Sinatra 03:54 - Frank Sinatra Jr 06:03 - Tina Sinatra 07:48 - Outro Like this content? Subscribe here: https://www.youtube.com/factsverse?sub_confirmation=1 Or, watch more videos here: https://www.youtube.com/playlist?list=PLkXAntdjbcSKgHx6EQVOwNKVz1cR2hKV Do you think you know a lot about TV? Try our quiz and enter to win $500! Click below to check the trivia question https://bit.ly/3rEeMxk Crooner and...

    published: 23 Jan 2022
  • Tina Sinatra Interview

    This Saturday, Dec. 12 marks what would have been the 100th birthday of legendary performer Frank Sinatra. While it has been several decades since the man with the unmistakable blue eyes commanded the stage at iconic venues up and down the Las Vegas Strip, it is undeniable that his presence and impact are still felt. The momentous centennial celebration brought many of those who knew Sinatra best back to Las Vegas, his home away from home, including his youngest daughter, Tina Sinatra, and granddaughter, Amanda Erlinger. The pair spoke on a variety of Sinatra’s brightest Las Vegas performances, his favorite Las Vegas hot spots and how Sinatra would perceive the transformation of the glittering Strip into the Las Vegas of today. “Any trip to Las Vegas with my dad was always great, always ev...

    published: 10 Dec 2015
Harvey Brownstone Interview with Tina Sinatra, Daughter of the Legendary Frank Sinatra
1:00:58

Harvey Brownstone Interview with Tina Sinatra, Daughter of the Legendary Frank Sinatra

  • Order:
  • Duration: 1:00:58
  • Uploaded Date: 25 Apr 2024
  • views: 66110
Harvey Brownstone conducts an in-depth Interview with Tina Sinatra, Daughter of the Legendary Frank Sinatra About Harvey's guest: Today’s special guest, Tina Sinatra, is a member of Hollywood royalty. She’s the youngest child of the most beloved vocalist and entertainer of all time – Frank Sinatra. As an actress, she appeared in a number of TV shows including “Romeo and Julia ‘70”, “It Takes a Thief”, “Adam-12”, “Mannix” and “Fantasy Island”. But she has devoted most of her life and career to managing, advancing and honouring the spectacular legacy and body of work of her father’s monumental career. She was the executive producer of the fabulous, star-studded TV Special “Sinatra 75: The Best is Yet to Come”, celebrating her father’s 75th birthday. She also executive produced the highly acclaimed miniseries, “Sinatra” which was nominated for 9 Emmy awards and won 2, in addition to winning a Golden Globe Award for best television miniseries. And she served as executive producer on the TV movie “Young at Heart” and was a producer of the 2004 remake of the movie “The Manchurian Candidate”. In addition, our guest has been instrumental in a number of initiatives and projects which have kept Frank Sinatra’s historic contribution to pop culture relevant and current, such as establishing the Frank Sinatra Hall at the USC Campus, arranging for her father’s film, TV and audiotape collection to be donated to the UCLA archives, and orchestrating a terrific Grammy museum exhibit called “Sinatra: An American Icon”, which toured across America. She’s been involved in bringing us wonderful multimedia concert productions at Radio City Music Hall and the London Palladium, as well as the Twyla Tharp dance extravaganza “Come Fly Away”, which had hugely successful runs on Broadway and in Las Vegas. In her role as senior Board member of Frank Sinatra Enterprises, which manages the licensing and usage of her father’s name, likeness, recordings and films, she’s been a tremendous support in the creation of the Emmy-nominated, 2-part HBO documentary “Sinatra: All or Nothing at All”. She was instrumental in the launch of the immensely popular Siriusly Sinatra channel, which is channel 70 on SiriusXM, as well as the iconic Sinatra Bar and Lounge in Nashville, AND the exciting new show, “Sinatra: The Musical”, which made its world premiere last year in England. And if all of that weren’t enough, she wrote a highly compelling, insightful and poignant New York Times Bestselling book entitled, “My Father’s Daughter: A Memoir”, which was revised in 2015 to commemorate Frank Sinatra’s 100th birthday. For more interviews and podcasts go to: https://www.harveybrownstoneinterviews.com/ To learn more about Tina Sinatra, go to: https://www.sinatra.com/ https://www.instagram.com/tinasinatra.rp #TinaSinatra #harveybrownstoneinterviews
https://wn.com/Harvey_Brownstone_Interview_With_Tina_Sinatra,_Daughter_Of_The_Legendary_Frank_Sinatra
Tina Sinatra Joins Us To Reveal How She’s Keeping Her Fathers Memory Alive | Loose Women
9:11

Tina Sinatra Joins Us To Reveal How She’s Keeping Her Fathers Memory Alive | Loose Women

  • Order:
  • Duration: 9:11
  • Uploaded Date: 29 Sep 2023
  • views: 41775
She’s dedicated her life to keeping her father, Frank Sinatra’s legacy alive, and today Tina Sinatra will be joining us for the first time to discuss her latest project - ‘Sinatra The Musical’! The show, which she has produced, documents the earlier life of her beloved father Frank, showing audiences parts of the man that were previously unknown .She will also be sharing with us her own special memories of her father, and what it was really like to be the daughter of a true Hollywood star! Subscribe now for more! http://bit.ly/1VGTPwA From series 27, broadcast on 29/09/2023 Watch Loose Women on the ITV Hub: http://daytimelink.itv.com/WatchLWYT Like, follow and subscribe to Loose Women! Subscribe now for more! http://bit.ly/1VGTPwA Website: http://bit.ly/1EDGFp5 YouTube: http://bit.ly/1C7hxMy Facebook: http://on.fb.me/1KXmWdc Twitter: http://bit.ly/1Bxfxts Catch Loose Women every weekday from 12.30pm on ITV, STV and the ITV Hub. Join our panellists as they share their lives and talk about everything from friendships to relationships, parenting to politics, mental health and much, much more. Tune in to find out what your favourite Loose Women have been up to, watch exclusive interviews with showbiz stars, and get a much needed laugh at lunchtime. http://www.itv.com http://www.stv.tv #loosewomen
https://wn.com/Tina_Sinatra_Joins_US_To_Reveal_How_She’S_Keeping_Her_Fathers_Memory_Alive_|_Loose_Women
Nancy Sinatra - These Boots Are Made For Walkin' (Official Music Video)
2:50

Nancy Sinatra - These Boots Are Made For Walkin' (Official Music Video)

  • Order:
  • Duration: 2:50
  • Uploaded Date: 06 Jun 2023
  • views: 32063387
https://link.lightintheattic.net/BOOTS-PO Director/Choreographer: Robert Sidney Additional Editing: Chelsea Christer Celebrated archival reissue label Light in the Attic (LITA) is proud to announce the second release in their Nancy Sinatra Archival Series, the definitive version of her inimitable debut LP, Boots. Originally released in 1966, the enduringly iconic, million-selling album not only catapulted the career of singer, actress, activist, and cultural icon, Nancy Sinatra, it contained within its grooves an enduring anthem of empowerment that continues to resonate with new audiences today with no signs of slowing down. Boots marks Sinatra’s transformation from “Nancy nice lady,” as she says, to a fully-formed and self-assured figure of empowerment both in appearance and in performance, making her forever synonymous with the album’s titular subject in the process. A top 5 album at the time of its release, Sinatra scored a No.1 hit on both sides of the Atlantic with “These Boots Are Made For Walkin’,” which earned three GRAMMY® nominations and sold over a million copies of the single. The album marked her first full-length release with writer, producer, and collaborator, Lee Hazlewood, which features a mixture of Hazlewood-penned tunes and selections from heavyweights The Beatles, Bob Dylan, The Rolling Stones, and more. The successful collage of 60s material hangs beautifully together with support from the famed Los Angeles session musicians, The Wrecking Crew, who set the stage for Nancy’s vocals with their raw, jangly, exuberance and cohesion. Tying it all together is arranger and longtime collaborator Billy Strange, whose innovative arrangements provided the perfect sound to help Nancy capture the attention of the world. Included in the forthcoming reissue are all tracks from the original album, plus two bonus tracks, “The City Never Sleeps At Night” and the previously unreleased “For Some.” All tracks have been newly remastered from the original analog tapes by GRAMMY®–nominated engineer, John Baldwin.
https://wn.com/Nancy_Sinatra_These_Boots_Are_Made_For_Walkin'_(Official_Music_Video)
After 25 Years, Frank Sinatra's Daughter Tina Sinatra Revealed His Last Words Before Father Death
4:23

After 25 Years, Frank Sinatra's Daughter Tina Sinatra Revealed His Last Words Before Father Death

  • Order:
  • Duration: 4:23
  • Uploaded Date: 25 Dec 2023
  • views: 726
Francis Albert Sinatra was an American singer and actor. Nicknamed the "Chairman of the Board" and later called "Ol' Blue Eyes", he is regarded as one of the most popular entertainers of the mid-20th century. Sinatra is among the world's best-selling music artists with an estimated 150 million record sales. Christina Sinatra is an American businesswoman, producer, talent agent, actress, singer and author. She is best known as the daughter of Frank Sinatra. #franksinatra ★ Click to SUBSCRIBE for more awesome! https://www.youtube.com/channel/UCoKqksOBPKABvA2jqrrog9g ★ Thank you for stopping by the channel! If you enjoyed, I try to do videos every day! Check us out at: https://www.youtube.com/channel/UCoKqksOBPKABvA2jqrrog9g
https://wn.com/After_25_Years,_Frank_Sinatra's_Daughter_Tina_Sinatra_Revealed_His_Last_Words_Before_Father_Death
Tina Sinatra Exclusive Interview
12:56

Tina Sinatra Exclusive Interview

  • Order:
  • Duration: 12:56
  • Uploaded Date: 09 Dec 2020
  • views: 56612
In anticipation of Frank Sinatra’s birthday on December 12th, Bulova celebrates one of the world’s most iconic vocalists with an exclusive video discussion with Frank’s daughter, Tina Sinatra. Former singer, actress, film producer, memoirist and Frank Sinatra’s daughter, Tina Sinatra, says, “No one respected time more than my father, he never liked to keep an audience waiting. He often said, ‘If you’re not early, you’re late.’ Dad’s association with Bulova spans over six decades and we are proud to continue the relationship into the 21st Century." To view the multimedia release go to: https://www.multivu.com/players/English/8825951-bulova-celebrates-frank-sinatra-birthday-video-interview-with-tina-sinatra/
https://wn.com/Tina_Sinatra_Exclusive_Interview
Tina Sinatra
1:17

Tina Sinatra

  • Order:
  • Duration: 1:17
  • Uploaded Date: 27 May 2022
  • views: 878
Christina "Tina" Sinatra is an American businesswoman, producer, Hollywood agent, and memoirist.
https://wn.com/Tina_Sinatra
Nancy Sinatra Confirms the Rumors About Her Father
8:02

Nancy Sinatra Confirms the Rumors About Her Father

  • Order:
  • Duration: 8:02
  • Uploaded Date: 25 Dec 2023
  • views: 23739
Nancy Sinatra, born on June 8, 1940, in Jersey City, New Jersey, is a multifaceted American icon renowned for her contributions to music, film, and television. Her life and career are intertwined with her famous father, Frank Sinatra, yet she managed to forge her own unique path in the entertainment world. ▬Contents of this video▬ 00:00 - Intro 00:53 - Nancy’s Early Life 02:54 - Nancy and Frank 04:44 - The “Terrible” Song 07:11 - Paternity Rumors 07:48 - Outro Like this content? Subscribe here: https://www.youtube.com/factsverse?sub_confirmation=1 Or, watch more videos here: https://www.youtube.com/playlist?list=PLkXAntdjbcSJlJnpP4FgdU0swKbnkNgJj Become a Facts Verse member and get access to all videos that contain mature content. Use the link below to get access to even more videos, ad-free. https://www.youtube.com/channel/UCXZpQgX1897wYDLtvzmgyIA/join Growing up as the eldest child of Frank Sinatra and his first wife, Nancy Barbato Sinatra, Nancy was immersed in a household where music and show business were omnipresent. Her father's towering presence in the music industry provided her with both inspiration and challenges. While her family name undoubtedly opened doors, it also cast a considerable shadow. However, Nancy was determined to step into the spotlight on her terms. In the early 1960s, Nancy began her musical journey. She studied music at the University of California, Los Angeles (UCLA), and initially used the stage name "Nancy Sands" to distance herself from her father's fame. Yet, her talent could not be concealed, and she made her singing debut on her father's television specials. Nancy's breakthrough came with the release of "These Boots Are Made for Walkin'" in 1965, which became an instant hit and remains one of her signature songs. Her sultry voice and the song's catchy melody made her a pop music sensation during the 1960s. Her fashion choices, particularly her white go-go boots, also became iconic, further establishing her as a symbol of the era. Throughout her career, Nancy Sinatra explored various musical genres and collaborated with prominent artists. Her partnership with songwriter and producer Lee Hazlewood yielded memorable hits like "Summer Wine" and the critically acclaimed "Nancy & Lee" album. She also ventured into acting, starring alongside Elvis Presley in "Speedway" and making guest appearances on television shows. Beyond her entertainment career, Nancy has been an advocate for animal welfare and has supported numerous charitable initiatives. Her dedication to causes she believes in showcases her compassionate nature. Nancy Sinatra's life and career are a testament to her talent, determination, and resilience. While she will forever be connected to her famous father, she has carved her own enduring legacy in the world of entertainment, leaving an indelible mark on music and popular culture. In this video, we’ll cover what Nancy has recently said about the rumors of her father being Ronan Farrow’s dad, as well as the song that her dad made famous, but hated. Join Facts Verse, as we present: Nancy Sinatra Confirms the Rumors About Her Father #nancysinatra Nancy Sinatra Confirms the Rumors About Her Father
https://wn.com/Nancy_Sinatra_Confirms_The_Rumors_About_Her_Father
Frank Sinatra’s Wife Was Responsible for His Death (Daughter Reveals All)
8:24

Frank Sinatra’s Wife Was Responsible for His Death (Daughter Reveals All)

  • Order:
  • Duration: 8:24
  • Uploaded Date: 26 Jun 2022
  • views: 163614
Did you know that Frank Sinatra stole comedic actor Zeppo Marx’s wife and that Frank’s kids blame the woman in question for their father’s death? Frank Sinatra was married four times over the course of his life, and his marriage to his final wife Barbara seems from the outside to have been the most successful of them all. Frank’s marriage to Barbara was his longest, and he died with her by his side. However, Frank’s children, all of whom came from the crooner’s first marriage, never liked Barbara. In fact, one of them even blames Barbara for their father’s death! ▬Contents of this video▬ 00:00 - Intro 00:20 - Nancy Sinatra Jr. Feels Her Father Could’ve Lived Longer 01:40 - Frank’s Last Marriage Was His Longest 02:28 - Frank and Barbara Met Years Before Their Marriage 03:43 - Frank and Barbara Ended Up Becoming More Than Friends 04:57 - Barbara Asked Frank to Annul His First Marriage 06:12 - Nancy Jr. Blames Barbara for Her Father’s Death 07:38 - Outro Like this content? Subscribe here: https://www.youtube.com/factsverse?sub_confirmation=1 Or, watch more videos here: https://www.youtube.com/playlist?list=PLkXAntdjbcSKgHx6EQVOwNKVz1cR2hKV The daughter that seems to blame Barbara the most for Frank Sinatra’s death is Nancy Sinatra Jr. However, there are also some other reasons that Nancy may hold a grudge against her late stepmother. According to Nancy Jr., Barbara was trying to erase Frank’s history and make it appear as if she was the only woman he had ever been married to. Some of the ways that Barbara allegedly attempted to do this included forcing her father to get an annulment from his first wife so that she and he could be married in an official Catholic ceremony, and also trying to talk Frank into adopting her adult son after they were already married. Though Frank Sinatra lived until the age of 83 despite being a lifelong smoker and drinker, Nancy Sinatra Jr. claims that her father could’ve lived for many years more if it hadn’t been for her cruel stepmother. Following her father’s death, Nancy Jr. didn’t speak to her stepmother until Barbara’s own death. Join Facts Verse as we explore how Frank Sinatra’s daughter feels his final wife was responsible for his death. Frank Sinatra’s Wife Was Responsible for His Death (Daughter Reveals All)
https://wn.com/Frank_Sinatra’S_Wife_Was_Responsible_For_His_Death_(Daughter_Reveals_All)
What Happened to Frank Sinatra's Children? His Legacy Continues
8:36

What Happened to Frank Sinatra's Children? His Legacy Continues

  • Order:
  • Duration: 8:36
  • Uploaded Date: 23 Jan 2022
  • views: 83452
If you were the child of a star like Frank Sinatra, do you think you would try to follow in their footsteps by pursuing a career in the spotlight or would you try to do your own thing out of the public eye? Also, which one of Frank Sinatra's children do you think best carried on their father's legacy? Let us know in the comments. ▬Contents of this video▬ 00:00 - Intro 00:49 - Nancy Sinatra 03:54 - Frank Sinatra Jr 06:03 - Tina Sinatra 07:48 - Outro Like this content? Subscribe here: https://www.youtube.com/factsverse?sub_confirmation=1 Or, watch more videos here: https://www.youtube.com/playlist?list=PLkXAntdjbcSKgHx6EQVOwNKVz1cR2hKV Do you think you know a lot about TV? Try our quiz and enter to win $500! Click below to check the trivia question https://bit.ly/3rEeMxk Crooner and actor, Frank Sinatra was one of the most famous people alive back in the day – and really, her still is! His legacy lives on in more ways than just one. He's viewed as one of the greatest musical artists of the 20th century. And he is the best-selling musical artist of all time – having sold somewhere in the ballpark of 150 million albums globally. There is a little part of the man who died in 1998 that still lives on. Frank Sinatra was married four times and throughout those marriages, he had three children. Those three kids, Nancy, Tina, and Frank Tina all ended up doing different things with their lives, and sadly only two are still with us. Chances are, however, if Old Blue Eyes was still alive today, he would be very proud of what his kids managed to accomplish and how they kept their family name alive. Join FactsVerse as we catch up with Frank Sinatra's children and see what the surviving two are up to today. We'll be detailing their career choices, love interests, and various contributions to the world. We'll also check in with Sinatra's grandchildren and see how they are up to. What Happened to Frank Sinatra's Children? His Legacy Continues
https://wn.com/What_Happened_To_Frank_Sinatra's_Children_His_Legacy_Continues
Tina Sinatra Interview
3:16

Tina Sinatra Interview

  • Order:
  • Duration: 3:16
  • Uploaded Date: 10 Dec 2015
  • views: 45492
This Saturday, Dec. 12 marks what would have been the 100th birthday of legendary performer Frank Sinatra. While it has been several decades since the man with the unmistakable blue eyes commanded the stage at iconic venues up and down the Las Vegas Strip, it is undeniable that his presence and impact are still felt. The momentous centennial celebration brought many of those who knew Sinatra best back to Las Vegas, his home away from home, including his youngest daughter, Tina Sinatra, and granddaughter, Amanda Erlinger. The pair spoke on a variety of Sinatra’s brightest Las Vegas performances, his favorite Las Vegas hot spots and how Sinatra would perceive the transformation of the glittering Strip into the Las Vegas of today. “Any trip to Las Vegas with my dad was always great, always eventful,” shared Tina Sinatra, smiling over memories from her childhood visits to Las Vegas to watch her father perform. “He was born to play Las Vegas; some say he made Las Vegas.” To view the multimedia release go to: http://www.multivu.com/players/English/7266356-las-vegas-frank-sinatra-birthday/
https://wn.com/Tina_Sinatra_Interview
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Harvey Brownstone Interview with Tina Sinatra, Daughter of the Legendary Frank Sinatra
    1:00:58
    Harvey Brownstone Interview with Tina Sinatra, Daughter of the Legendary Frank Sinatraremove from playlist
  • Tina Sinatra Joins Us To Reveal How She’s Keeping Her Fathers Memory Alive | Loose Women
    9:11
    Tina Sinatra Joins Us To Reveal How She’s Keeping Her Fathers Memory Alive | Loose Womenremove from playlist
  • Nancy Sinatra - These Boots Are Made For Walkin' (Official Music Video)
    2:50
    Nancy Sinatra - These Boots Are Made For Walkin' (Official Music Video)remove from playlist
  • After 25 Years, Frank Sinatra's Daughter Tina Sinatra Revealed His Last Words Before Father Death
    4:23
    After 25 Years, Frank Sinatra's Daughter Tina Sinatra Revealed His Last Words Before Father Deathremove from playlist
  • Tina Sinatra Exclusive Interview
    12:56
    Tina Sinatra Exclusive Interviewremove from playlist
  • Tina Sinatra
    1:17
    Tina Sinatraremove from playlist
  • Nancy Sinatra Confirms the Rumors About Her Father
    8:02
    Nancy Sinatra Confirms the Rumors About Her Fatherremove from playlist
  • Frank Sinatra’s Wife Was Responsible for His Death (Daughter Reveals All)
    8:24
    Frank Sinatra’s Wife Was Responsible for His Death (Daughter Reveals All)remove from playlist
  • What Happened to Frank Sinatra's Children? His Legacy Continues
    8:36
    What Happened to Frank Sinatra's Children? His Legacy Continuesremove from playlist
  • Tina Sinatra Interview
    3:16
    Tina Sinatra Interviewremove from playlist
PLAYLIST TIME:

Harvey Brownstone Interview with Tina Sinatra, Daughter of the Legendary Frank Sinatra

Harvey Brownstone conducts an in-depth Interview with Tina Sinatra, Daughter of the Legendary Frank Sinatra About Harvey's guest: Today’s special guest, Tina Sinatra, is a member of Hollywood royalty. She’s the youngest child of the most beloved vocalist and entertainer of all time – Frank Sinatra. As an actress, she appeared in a number of TV shows including “Romeo and Julia ‘70”, “It Takes a Thief”, “Adam-12”, “Mannix” and “Fantasy Island”. But she has devoted most of her life and career to managing, advancing and honouring the spectacular legacy and body of work of her father’s monumental career. She was the executive producer of the fabulous, star-studded TV Special “Sinatra 75: The Best is Yet to Come”, celebrating her father’s 75th birthday. She also executive produced the highly acclaimed miniseries, “Sinatra” which was nominated for 9 Emmy awards and won 2, in addition to winning a Golden Globe Award for best television miniseries. And she served as executive producer on the TV movie “Young at Heart” and was a producer of the 2004 remake of the movie “The Manchurian Candidate”. In addition, our guest has been instrumental in a number of initiatives and projects which have kept Frank Sinatra’s historic contribution to pop culture relevant and current, such as establishing the Frank Sinatra Hall at the USC Campus, arranging for her father’s film, TV and audiotape collection to be donated to the UCLA archives, and orchestrating a terrific Grammy museum exhibit called “Sinatra: An American Icon”, which toured across America. She’s been involved in bringing us wonderful multimedia concert productions at Radio City Music Hall and the London Palladium, as well as the Twyla Tharp dance extravaganza “Come Fly Away”, which had hugely successful runs on Broadway and in Las Vegas. In her role as senior Board member of Frank Sinatra Enterprises, which manages the licensing and usage of her father’s name, likeness, recordings and films, she’s been a tremendous support in the creation of the Emmy-nominated, 2-part HBO documentary “Sinatra: All or Nothing at All”. She was instrumental in the launch of the immensely popular Siriusly Sinatra channel, which is channel 70 on SiriusXM, as well as the iconic Sinatra Bar and Lounge in Nashville, AND the exciting new show, “Sinatra: The Musical”, which made its world premiere last year in England. And if all of that weren’t enough, she wrote a highly compelling, insightful and poignant New York Times Bestselling book entitled, “My Father’s Daughter: A Memoir”, which was revised in 2015 to commemorate Frank Sinatra’s 100th birthday. For more interviews and podcasts go to: https://www.harveybrownstoneinterviews.com/ To learn more about Tina Sinatra, go to: https://www.sinatra.com/ https://www.instagram.com/tinasinatra.rp #TinaSinatra #harveybrownstoneinterviews
1:00:58
Harvey Brownstone Interview with Tina Sinatra, Daughter of the Legendary Frank Sinatra
Harvey Brownstone conducts an in-depth Interview with Tina Sinatra, Daughter of the Legend...
published: 25 Apr 2024
Play in Full Screen
9:11
Tina Sinatra Joins Us To Reveal How She’s Keeping Her Fathers Memory Alive | Loose Women
She’s dedicated her life to keeping her father, Frank Sinatra’s legacy alive, and today Ti...
published: 29 Sep 2023
Play in Full Screen
2:50
Nancy Sinatra - These Boots Are Made For Walkin' (Official Music Video)
https://link.lightintheattic.net/BOOTS-PO Director/Choreographer: Robert Sidney Additiona...
published: 06 Jun 2023
Play in Full Screen
4:23
After 25 Years, Frank Sinatra's Daughter Tina Sinatra Revealed His Last Words Before Father Death
Francis Albert Sinatra was an American singer and actor. Nicknamed the "Chairman of the Bo...
published: 25 Dec 2023
Play in Full Screen
12:56
Tina Sinatra Exclusive Interview
In anticipation of Frank Sinatra’s birthday on December 12th, Bulova celebrates one of the...
published: 09 Dec 2020
Play in Full Screen
1:17
Tina Sinatra
Christina "Tina" Sinatra is an American businesswoman, producer, Hollywood agent, and me...
published: 27 May 2022
Play in Full Screen
8:02
Nancy Sinatra Confirms the Rumors About Her Father
Nancy Sinatra, born on June 8, 1940, in Jersey City, New Jersey, is a multifaceted America...
published: 25 Dec 2023
Play in Full Screen
8:24
Frank Sinatra’s Wife Was Responsible for His Death (Daughter Reveals All)
Did you know that Frank Sinatra stole comedic actor Zeppo Marx’s wife and that Frank’s kid...
published: 26 Jun 2022
Play in Full Screen
8:36
What Happened to Frank Sinatra's Children? His Legacy Continues
If you were the child of a star like Frank Sinatra, do you think you would try to follow i...
published: 23 Jan 2022
Play in Full Screen
3:16
Tina Sinatra Interview
This Saturday, Dec. 12 marks what would have been the 100th birthday of legendary performe...
published: 10 Dec 2015
Play in Full Screen

Tina Sinatra

Christina "Tina" Sinatra (born June 20, 1948 in Los Angeles) is the youngest child of the American singer and actor Frank Sinatra and his first wife, Nancy Barbato Sinatra. She has two full siblings, Nancy (born 1940) and Frank Jr. (born 1944). Her parents divorced when she was three years old.

In 1968 Tina appeared on the album The Sinatra Family Wish You a Merry Christmas with her father and siblings. She contributed to five tracks on the album, including "Santa Claus Is Coming to Town" and a duet on "O Bambino (One Cold and Blessed Winter)", with her sister. Tina also appeared with her siblings on an episode of Dean Martin's television show with Martin's children.

Sinatra never wished to be a singer like her father and siblings, but took acting classes with Jeff Corey, and appeared in a television mini-series in Germany, where she lived for several years. After returning to the United States, she took more classes with Corey, and appeared in episodes of It Takes a Thief, and Mannix. In her memoir Sinatra wrote of her acting career that though her reviews were generally favourable, she lacked the ambition and confidence to become an actress. Sinatra remained in the entertainment industry, becoming a theatrical agent under Arnold Stiefel, and at one stage represented Robert Blake.

'); } 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)); } }); }); }); // -->
×