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

Publishing

Publishing is the process of production and dissemination of literature, music, or information — the activity of making information available to the general public. In some cases, authors may be their own publishers, meaning originators and developers of content also provide media to deliver and display the content for the same. Also, the word publisher can refer to the individual who leads a publishing company or an imprint or to a person who owns/heads a magazine.

Traditionally, the term refers to the distribution of printed works such as books (the "book trade") and newspapers. With the advent of digital information systems and the Internet, the scope of publishing has expanded to include electronic resources such as the electronic versions of books and periodicals, as well as micropublishing, websites, blogs, video game publishers, and the like.

Publishing includes the following stages of development: acquisition, copy editing, production, printing (and its electronic equivalents), and marketing and distribution.

Podcasts:

  • What New Authors Should Expect From A Publisher - Anna David

    BUY THE BOOK - ON GOOD AUTHORITY: 7 Steps to Prepare, Promote and Profit From a How-to Book That Makes You the Go-to Expert - https://amzn.to/463HRXt BUY THE BOOK - PARTY GIRL - https://amzn.to/3kC7KeK BUY THE BOOK - MAKE YOUR MESS YOUR MEMOIR - https://amzn.to/3EATdpT Anna David is the New York Times bestselling author of two novels and six non-fiction books. She has appeared repeatedly on Today, The Talk, Good Morning America and had a running segment on G4’s Attack of the Show that she co-hosted with Olivia Munn for three years. Her company, Legacy Launch Pad, writes and publishes books for thought leaders and her podcast has featured interviews with authors such as Robert Greene and Chris Voss. Her first book, Party Girl, is in development as a film tentatively scheduled to be shot ...

    published: 01 Mar 2023
  • STOP PUBLISHING YOUR BOOKS ON AMAZON KDP (Do This Instead) | I Quit Amazon KDP

    Sis, I quit Amazon KDP! And if you want to do the same thing, in this video, I'll teach you the 3 step strategy I used to get OFF Amazon and make money online as a faith-based author using MY OWN platform. Want my step-by-step tutorial where I show you how to write and self-publish your first faith-based book? Join me in the Godlywood Girl Faith-Based Author School here - https://www.ChristianAuthorSchool.com Ready to learn how to start your book business online as a faith-based author? Join me in my free upcoming 3-Day "Start Your Book Business Challenge" where I'll teach you how to do it step-by-step here: https://christianbusinesstoolkit.com/registration Want to wear the Godlywood Girl Faith-Based Author T-Shirts? Shop the full collection here: https://www.godlywoodgirl.com ...

    published: 11 Nov 2024
  • Academic Publishing

    It’s not about the money…

    published: 16 Feb 2022
  • The publishing process at Penguin Random House

    Watch this video to learn about the seven different stages of the publishing process at Penguin Random House.

    published: 21 Feb 2020
  • Your Complete Guide to Publishing a Book in 2025

    DOWNLOAD MY FREE STORY SELF-ASSESSMENT! https://www.alyssamatesic.com/#freebie-form WORK WITH ME ON YOUR STORY https://www.alyssamatesic.com/inquire#inquire-2 GET A QUERY LETTER REVIEW https://www.queryacademy.com Most authors think there are only two ways to publish a book: landing a deal with a big publishing house or self-publishing. But there are actually SIX legitimate paths to publication, and in today’s video, I’m breaking down the pros, cons, and financial considerations of each publishing option and sharing a simple framework to help you choose the best path for you and your book. –––––––––––––––––––––––––––––– MORE WRITING AND PUBLISHING ADVICE: How to Write a Query Letter from Start to End: https://www.youtube.com/watch?v=SSBcasOsRCs Is Your Book Good Enough to be Publishe...

    published: 12 Jan 2025
  • How Much I Made Publishing My Books 📚

    Let's talk about making money in the self publishing space! Big thank you to today's sponsor, Campfire: https://www.campfirewriting.com/write/for-novelists?utm_source=YouTube&utm_medium=video&utm_campaign=DG_Q1_23 New Channel: https://www.youtube.com/channel/UC9tQc_K_LtoCiVGx7_R3FRA Patreon: https://www.patreon.com/DanielBGreene All the Me Social Links: https://linktr.ee/DanielGreene Merch: https://www.danielbgreene.com Lawful Times Series: Breach of Peace: https://tinyurl.com/BoPTLT Rebels Creed: https://tinyurl.com/RCTLTDG P.O. Box: PO Box 7874 Henrico, VA 23231 00:00 Experience 06:00 Units Sold 09:36 Money

    published: 16 Mar 2023
  • Music Publishing Explained | Music Publishing 101

    Music publisher is responsible for ensuring the songwriters and composers receive payment when their compositions are used commercially. Through an agreement called a publishing contract, a songwriter or composer "assigns" the copyright of their composition to a publishing company. In return, the company licenses compositions, helps monitor where compositions are used, collects royalties and distributes them to the composers. They also secure commissions for music and promote existing compositions to recording artists, film and television. Calculate the royalties of popular artists, or even yours with the BMAT Royalties Calculator: https://royalties-calculator.com/ Sesac, performing rights organization, music publishing, music publishing explained, soundexchange, entertainment law, perfo...

    published: 05 Sep 2018
  • Publishing.com Honest Review: Scam or Legit?

    🚀 Join AI Publishing Academy Using My Link and Get 11 Free Bonuses! 🔗 https://trevorsomerville.com/aiabonuses Have questions about the course? 📞 Book a call: https://calendly.com/trevorsomerville 📧 Email: aiabonuses@gmail.com If you want to sign up using a payment plan, use their regular link and send me an email to claim your bonuses! 📹 Learn More About Publishing.com with These Videos: 1️⃣ Publishing.com Bonuses: https://youtu.be/eog60Z87218 2️⃣ Publishing.com Trustpilot Reviews: https://youtu.be/R5FcBETYBj0 3️⃣ Publishing.com Costs Explained: https://youtu.be/-RTX0qg79_s 📱 Follow me on Instagram for a day in the life of a six-figure publisher: ➡️ https://instagram.com/trevor.somerville ━━━ 🎁 My 11 Exclusive AIA Bonuses 🎁 1. Niche Research Training (Trevor’s Way) 2. Time Man...

    published: 27 Apr 2024
  • Amazon KDP Mastery: The Only Must-Watch Publishing COURSE For Authors To Succeed In 2025 (Lesson 2)

    Are you ready to crush it on Amazon KDP and achieve your publishing goals? This is the ONLY must-watch course for authors who want to succeed in 2025 and beyond! 🌟 Whether you’re a beginner or experienced publisher, this video breaks down: ✅ How to research and dominate profitable book niches. ✅ Secrets to creating bestselling books on Amazon. ✅ Proven strategies for marketing and scaling your KDP income. ✅ Step-by-step guidance on turning your book idea into consistent royalties. 👉 Transform your publishing journey and watch your sales soar! 📺 Want more? Check out the Amazon KDP Success Playlist here: #Keywords: Amazon KDP 2025, KDP Mastery Course, Self-Publishing Tips, How to Succeed on Amazon, Bestseller Strategies, KDP Marketing Guide, Book Publishing Success, Passive Income, Amaz...

    published: 28 Jan 2025
  • How to Get Published by a Big Five House | Traditional Book Publishing Process

    WORK WITH ME ON YOUR STORY https://www.alyssamatesic.com/inquire#inquire-2 GET A QUERY LETTER REVIEW https://www.queryacademy.com DOWNLOAD MY FREE STORY SELF-ASSESSMENT! https://www.alyssamatesic.com/#freebie-form FOLLOW ME ON MY SOCIALS! Instagram: https://www.instagram.com/alyssabookeditor/ Tiktok: https://www.tiktok.com/@alyssamatesic Twitter: https://twitter.com/AlyssaMatesic Have you dreamed of seeing your book on the shelves at your local bookstore? In this video, I provide an overview of how the book publishing industry works and walk through the steps it takes to get a book published by a Big Five publishing house. You'll learn about query letter writing, finding a literary agent, and, finally, scoring a book deal. The Big Five publishing houses are Penguin Random House, Macmi...

    published: 06 Dec 2020
What New Authors Should Expect From A Publisher - Anna David
9:50

What New Authors Should Expect From A Publisher - Anna David

  • Order:
  • Duration: 9:50
  • Uploaded Date: 01 Mar 2023
  • views: 47297
BUY THE BOOK - ON GOOD AUTHORITY: 7 Steps to Prepare, Promote and Profit From a How-to Book That Makes You the Go-to Expert - https://amzn.to/463HRXt BUY THE BOOK - PARTY GIRL - https://amzn.to/3kC7KeK BUY THE BOOK - MAKE YOUR MESS YOUR MEMOIR - https://amzn.to/3EATdpT Anna David is the New York Times bestselling author of two novels and six non-fiction books. She has appeared repeatedly on Today, The Talk, Good Morning America and had a running segment on G4’s Attack of the Show that she co-hosted with Olivia Munn for three years. Her company, Legacy Launch Pad, writes and publishes books for thought leaders and her podcast has featured interviews with authors such as Robert Greene and Chris Voss. Her first book, Party Girl, is in development as a film tentatively scheduled to be shot in 2023. SIGN UP FOR ANNA DAVID'S NEWSLETTER https://www.legacylaunchpadpub.com/authority-secrets MORE VIDEOS WITH ANNA DAVID https://bit.ly/3Y2vwzy VIEWERS ALSO WATCHED The Average Author Sells 300 Copies Of Their Book - https://youtu.be/omiucTwAHN8 What Stops New Authors From Writing Their First Book - https://youtu.be/230Lppu4cvA 3 Things New Authors Should Expect From Their Publishers - https://youtu.be/I1jE24kdl9U How Does A Book Get On Hollywood's Radar? - https://youtu.be/uaMs53zQl1g How NOT Selling The First Book Can Help An Author’s Career - https://youtu.be/PkN64iYSMQY (Affiliates) ►WE USE THIS CAMERA (B&H) – https://buff.ly/3rWqrra ►WE USE THIS EDITING PROGRAM (ADOBE) – https://goo.gl/56LnpM ►WE USE THIS SOUND RECORDER (AMAZON) – http://amzn.to/2tbFlM9 BOOKS WE RECOMMEND https://buff.ly/3o0oE5o SUPPORT FILM COURAGE BY BECOMING A MEMBER https://www.youtube.com/channel/UCs8o1mdWAfefJkdBg632_tg/join CONNECT WITH FILM COURAGE http://www.FilmCourage.com http://twitter.com/#!/FilmCourage https://www.facebook.com/filmcourage https://www.instagram.com/filmcourage http://filmcourage.tumblr.com http://pinterest.com/filmcourage SUBSCRIBE TO THE FILM COURAGE YOUTUBE CHANNEL http://bit.ly/18DPN37 LISTEN TO THE FILM COURAGE PODCAST https://soundcloud.com/filmcourage-com Stuff we use: LENS - Most people ask us what camera we use, no one ever asks about the lens which filmmakers always tell us is more important. This lens was a big investment for us and one we wish we could have made sooner. Started using this lens at the end of 2013 - http://amzn.to/2tbtmOq AUDIO Rode VideoMic Pro - The Rode mic helps us capture our backup audio. It also helps us sync up our audio in post http://amzn.to/2t1n2hx Audio Recorder - If we had to do it all over again, this is probably the first item we would have bought - http://amzn.to/2tbFlM9 LIGHTS - Although we like to use as much natural light as we can, we often enhance the lighting with this small portable light. We have two of them and they have saved us a number of times - http://amzn.to/2u5UnHv COMPUTER - Our favorite computer, we each have one and have used various models since 2010 - http://amzn.to/2t1M67Z EDITING - We upgraded our editing suite this year and we’re glad we did! This has improved our workflow and the quality of our work. Having new software also helps when we have a problem, it’s easy to search and find a solution - https://goo.gl/56LnpM *These are affiliate links, by using them you can help support this channel. #writing #author #publishing
https://wn.com/What_New_Authors_Should_Expect_From_A_Publisher_Anna_David
STOP PUBLISHING YOUR BOOKS ON AMAZON KDP (Do This Instead) | I Quit Amazon KDP
16:25

STOP PUBLISHING YOUR BOOKS ON AMAZON KDP (Do This Instead) | I Quit Amazon KDP

  • Order:
  • Duration: 16:25
  • Uploaded Date: 11 Nov 2024
  • views: 98900
Sis, I quit Amazon KDP! And if you want to do the same thing, in this video, I'll teach you the 3 step strategy I used to get OFF Amazon and make money online as a faith-based author using MY OWN platform. Want my step-by-step tutorial where I show you how to write and self-publish your first faith-based book? Join me in the Godlywood Girl Faith-Based Author School here - https://www.ChristianAuthorSchool.com Ready to learn how to start your book business online as a faith-based author? Join me in my free upcoming 3-Day "Start Your Book Business Challenge" where I'll teach you how to do it step-by-step here: https://christianbusinesstoolkit.com/registration Want to wear the Godlywood Girl Faith-Based Author T-Shirts? Shop the full collection here: https://www.godlywoodgirl.com #writing #writingcommunity #author
https://wn.com/Stop_Publishing_Your_Books_On_Amazon_Kdp_(Do_This_Instead)_|_I_Quit_Amazon_Kdp
Academic Publishing
1:32

Academic Publishing

  • Order:
  • Duration: 1:32
  • Uploaded Date: 16 Feb 2022
  • views: 328947
It’s not about the money…
https://wn.com/Academic_Publishing
The publishing process at Penguin Random House
5:28

The publishing process at Penguin Random House

  • Order:
  • Duration: 5:28
  • Uploaded Date: 21 Feb 2020
  • views: 89002
Watch this video to learn about the seven different stages of the publishing process at Penguin Random House.
https://wn.com/The_Publishing_Process_At_Penguin_Random_House
Your Complete Guide to Publishing a Book in 2025
16:57

Your Complete Guide to Publishing a Book in 2025

  • Order:
  • Duration: 16:57
  • Uploaded Date: 12 Jan 2025
  • views: 18119
DOWNLOAD MY FREE STORY SELF-ASSESSMENT! https://www.alyssamatesic.com/#freebie-form WORK WITH ME ON YOUR STORY https://www.alyssamatesic.com/inquire#inquire-2 GET A QUERY LETTER REVIEW https://www.queryacademy.com Most authors think there are only two ways to publish a book: landing a deal with a big publishing house or self-publishing. But there are actually SIX legitimate paths to publication, and in today’s video, I’m breaking down the pros, cons, and financial considerations of each publishing option and sharing a simple framework to help you choose the best path for you and your book. –––––––––––––––––––––––––––––– MORE WRITING AND PUBLISHING ADVICE: How to Write a Query Letter from Start to End: https://www.youtube.com/watch?v=SSBcasOsRCs Is Your Book Good Enough to be Published?: https://www.youtube.com/watch?v=nu-UHr1Khqk&t=511s The One Thing EVERY Agent and Publisher Looks For: https://www.youtube.com/watch?v=Y_fnuHoWdyI HOW TO PUBLISH A BOOK IN 2025: 01:08 – Big Five publishers  04:00 – Midsize publishers 05:28 – Small/indie press 07:22 – Hybrid publishing  10:33 – Self publishing 12:11 – Social publishing ABOUT ME: My name is Alyssa Matesic, and I’m a professional book editor with nearly a decade of book publishing and editorial experience. Throughout my career, I’ve held editorial roles across both sides of the publishing industry: Big Five publishing houses and literary agencies. The goal of this channel is to help writers throughout the book writing journey—whether you're working on your manuscript or you're looking for publishing advice. –––––––––––––––––––––––––––––– SIGN UP FOR MY NEWSLETTER FEATURING WRITING/PUBLISHING EXPERTS https://www.chapter-break.com/ FOLLOW ME ON MY SOCIALS! Instagram: https://www.instagram.com/alyssabookeditor/ Twitter: https://twitter.com/AlyssaMatesic TikTok: https://www.tiktok.com/@alyssamatesic –––––––––––––––––––––––––––––– MUSIC: Charlie Brown by Smith The Mister https://smiththemister.bandcamp.com Smith The Mister https://bit.ly/Smith-The-Mister-YT
https://wn.com/Your_Complete_Guide_To_Publishing_A_Book_In_2025
How Much I Made Publishing My Books 📚
12:48

How Much I Made Publishing My Books 📚

  • Order:
  • Duration: 12:48
  • Uploaded Date: 16 Mar 2023
  • views: 248775
Let's talk about making money in the self publishing space! Big thank you to today's sponsor, Campfire: https://www.campfirewriting.com/write/for-novelists?utm_source=YouTube&utm_medium=video&utm_campaign=DG_Q1_23 New Channel: https://www.youtube.com/channel/UC9tQc_K_LtoCiVGx7_R3FRA Patreon: https://www.patreon.com/DanielBGreene All the Me Social Links: https://linktr.ee/DanielGreene Merch: https://www.danielbgreene.com Lawful Times Series: Breach of Peace: https://tinyurl.com/BoPTLT Rebels Creed: https://tinyurl.com/RCTLTDG P.O. Box: PO Box 7874 Henrico, VA 23231 00:00 Experience 06:00 Units Sold 09:36 Money
https://wn.com/How_Much_I_Made_Publishing_My_Books_📚
Music Publishing Explained | Music Publishing 101
4:03

Music Publishing Explained | Music Publishing 101

  • Order:
  • Duration: 4:03
  • Uploaded Date: 05 Sep 2018
  • views: 139381
Music publisher is responsible for ensuring the songwriters and composers receive payment when their compositions are used commercially. Through an agreement called a publishing contract, a songwriter or composer "assigns" the copyright of their composition to a publishing company. In return, the company licenses compositions, helps monitor where compositions are used, collects royalties and distributes them to the composers. They also secure commissions for music and promote existing compositions to recording artists, film and television. Calculate the royalties of popular artists, or even yours with the BMAT Royalties Calculator: https://royalties-calculator.com/ Sesac, performing rights organization, music publishing, music publishing explained, soundexchange, entertainment law, performance rights organization ----------------------------------------------------------- Connect with us! 🔔 Subscribe: https://bit.ly/2O6zrMh 🐤 Twitter: https://twitter.com/modernmusician_ 🅻 LinkedIn: https://www.linkedin.com/company/13039110 🅵 Facebook: https://www.facebook.com/themodernmusiciantmm 🧑🏽‍🤝‍🧑🏽 FB Group: https://www.facebook.com/groups/themodernmusician 📰 Newsletter: http://bit.ly/modernmusiciannewslettersignup 🔗 Website: https://themodernmusician.academy/ ----------------------------------------------------------- Brought to you by Manage Ad Music! ♏ MAM Website: https://manageadmusic.com/ ----------------------------------------------------------- ✉️ Business enquiries: mm@manageadmusic.com ----------------------------------------------------------- #MusicIndustryExplained #TheModernMusician #DIYMusician
https://wn.com/Music_Publishing_Explained_|_Music_Publishing_101
Publishing.com Honest Review: Scam or Legit?
14:58

Publishing.com Honest Review: Scam or Legit?

  • Order:
  • Duration: 14:58
  • Uploaded Date: 27 Apr 2024
  • views: 14403
🚀 Join AI Publishing Academy Using My Link and Get 11 Free Bonuses! 🔗 https://trevorsomerville.com/aiabonuses Have questions about the course? 📞 Book a call: https://calendly.com/trevorsomerville 📧 Email: aiabonuses@gmail.com If you want to sign up using a payment plan, use their regular link and send me an email to claim your bonuses! 📹 Learn More About Publishing.com with These Videos: 1️⃣ Publishing.com Bonuses: https://youtu.be/eog60Z87218 2️⃣ Publishing.com Trustpilot Reviews: https://youtu.be/R5FcBETYBj0 3️⃣ Publishing.com Costs Explained: https://youtu.be/-RTX0qg79_s 📱 Follow me on Instagram for a day in the life of a six-figure publisher: ➡️ https://instagram.com/trevor.somerville ━━━ 🎁 My 11 Exclusive AIA Bonuses 🎁 1. Niche Research Training (Trevor’s Way) 2. Time Management Training Video 3. Zero to Hero Royalty Plan 4. Behind Closed Doors of My 6-Figure Business 5. Private Facebook Mastermind Group 6. 3-Year Retirement Blueprint 7. List of 50 Goldmine Niches 8. Formula for Endless Reviews 9. Bulletproof Guide for Amazon KDP Account 10. Secret Resources & Contacts Vault 11. Build Your Business with a Virtual Assistant
https://wn.com/Publishing.Com_Honest_Review_Scam_Or_Legit
Amazon KDP Mastery: The Only Must-Watch Publishing COURSE For Authors To Succeed In 2025 (Lesson 2)
1:51:42

Amazon KDP Mastery: The Only Must-Watch Publishing COURSE For Authors To Succeed In 2025 (Lesson 2)

  • Order:
  • Duration: 1:51:42
  • Uploaded Date: 28 Jan 2025
  • views: 222
Are you ready to crush it on Amazon KDP and achieve your publishing goals? This is the ONLY must-watch course for authors who want to succeed in 2025 and beyond! 🌟 Whether you’re a beginner or experienced publisher, this video breaks down: ✅ How to research and dominate profitable book niches. ✅ Secrets to creating bestselling books on Amazon. ✅ Proven strategies for marketing and scaling your KDP income. ✅ Step-by-step guidance on turning your book idea into consistent royalties. 👉 Transform your publishing journey and watch your sales soar! 📺 Want more? Check out the Amazon KDP Success Playlist here: #Keywords: Amazon KDP 2025, KDP Mastery Course, Self-Publishing Tips, How to Succeed on Amazon, Bestseller Strategies, KDP Marketing Guide, Book Publishing Success, Passive Income, Amazon Ads for Authors, How to Publish a Book Hashtags: #AmazonKDP #PublishingSuccess #SelfPublishing #KDPAuthors #PassiveIncomeIdeas #BookPublishing #AmazonBestseller #KDPMarketing #WriteAndPublish #MakeMoneyOnline
https://wn.com/Amazon_Kdp_Mastery_The_Only_Must_Watch_Publishing_Course_For_Authors_To_Succeed_In_2025_(Lesson_2)
How to Get Published by a Big Five House | Traditional Book Publishing Process
7:34

How to Get Published by a Big Five House | Traditional Book Publishing Process

  • Order:
  • Duration: 7:34
  • Uploaded Date: 06 Dec 2020
  • views: 88012
WORK WITH ME ON YOUR STORY https://www.alyssamatesic.com/inquire#inquire-2 GET A QUERY LETTER REVIEW https://www.queryacademy.com DOWNLOAD MY FREE STORY SELF-ASSESSMENT! https://www.alyssamatesic.com/#freebie-form FOLLOW ME ON MY SOCIALS! Instagram: https://www.instagram.com/alyssabookeditor/ Tiktok: https://www.tiktok.com/@alyssamatesic Twitter: https://twitter.com/AlyssaMatesic Have you dreamed of seeing your book on the shelves at your local bookstore? In this video, I provide an overview of how the book publishing industry works and walk through the steps it takes to get a book published by a Big Five publishing house. You'll learn about query letter writing, finding a literary agent, and, finally, scoring a book deal. The Big Five publishing houses are Penguin Random House, Macmillan, HarperCollins, Simon & Schuster, and Hachette. Simon & Schuster is set to be acquired by Penguin Random House. RELATED LINKS: Why Is It So Hard to Get Your Book Published?: https://youtu.be/Dx7wYFkjDko How to Get a Literary Agent in 2022: https://youtu.be/89bljc8Za5I Get Your Book Published Globally!: https://youtu.be/K2U3KFXTkFk HOW TO GET A BOOK DEAL AT A MAJOR PUBLISHING HOUSE (12 STEPS): 1. Finish your novel 2. Consult beta readers or an editor 3. Revise 4. Consult beta readers or an editor (again) 5. Create a dream list of literary agents 6. Write your query letter 7. Send your queries 8. Keep a tracker 9. Receive an offer of representation 10. Complete more revisions 11. Agent submits book to editors 12. Get a book deal! ABOUT ME: My name is Alyssa Matesic, and I’m a professional book editor with 7+ years of book publishing and editorial experience. Throughout my career, I’ve held editorial roles across both sides of the publishing industry: Big Five publishing houses and literary agencies. The goal of this channel is to help writers throughout the book writing journey—whether you're working on your manuscript or you're looking for publishing advice. Feel free to get in touch! Website: https://www.alyssamatesic.com View My Services: https://www.alyssamatesic.com/professional-book-editing-services Request a Quote: https://www.alyssamatesic.com/inquire Email: hello@alyssamatesic.com –––––––––––––––––––––––––––––– MUSIC: Chilling by HoobeZa https://youtu.be/O6nMNPQ4Vf0 Charlie Brown by Smith The Mister https://smiththemister.bandcamp.com Smith The Mister https://bit.ly/Smith-The-Mister-YT
https://wn.com/How_To_Get_Published_By_A_Big_Five_House_|_Traditional_Book_Publishing_Process
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • What New Authors Should Expect From A Publisher - Anna David
    9:50
    What New Authors Should Expect From A Publisher - Anna Davidremove from playlist
  • STOP PUBLISHING YOUR BOOKS ON AMAZON KDP (Do This Instead) | I Quit Amazon KDP
    16:25
    STOP PUBLISHING YOUR BOOKS ON AMAZON KDP (Do This Instead) | I Quit Amazon KDPremove from playlist
  • The publishing process at Penguin Random House
    5:28
    The publishing process at Penguin Random Houseremove from playlist
  • Your Complete Guide to Publishing a Book in 2025
    16:57
    Your Complete Guide to Publishing a Book in 2025remove from playlist
  • How Much I Made Publishing My Books 📚
    12:48
    How Much I Made Publishing My Books 📚remove from playlist
  • Music Publishing Explained | Music Publishing 101
    4:03
    Music Publishing Explained | Music Publishing 101remove from playlist
  • Publishing.com Honest Review: Scam or Legit?
    14:58
    Publishing.com Honest Review: Scam or Legit?remove from playlist
  • Amazon KDP Mastery: The Only Must-Watch Publishing COURSE For Authors To Succeed In 2025 (Lesson 2)
    1:51:42
    Amazon KDP Mastery: The Only Must-Watch Publishing COURSE For Authors To Succeed In 2025 (Lesson 2)remove from playlist
  • How to Get Published by a Big Five House | Traditional Book Publishing Process
    7:34
    How to Get Published by a Big Five House | Traditional Book Publishing Processremove from playlist
PLAYLIST TIME: 0:00 / 3:21:17

What New Authors Should Expect From A Publisher - Anna David

BUY THE BOOK - ON GOOD AUTHORITY: 7 Steps to Prepare, Promote and Profit From a How-to Book That Makes You the Go-to Expert - https://amzn.to/463HRXt BUY THE BOOK - PARTY GIRL - https://amzn.to/3kC7KeK BUY THE BOOK - MAKE YOUR MESS YOUR MEMOIR - https://amzn.to/3EATdpT Anna David is the New York Times bestselling author of two novels and six non-fiction books. She has appeared repeatedly on Today, The Talk, Good Morning America and had a running segment on G4’s Attack of the Show that she co-hosted with Olivia Munn for three years. Her company, Legacy Launch Pad, writes and publishes books for thought leaders and her podcast has featured interviews with authors such as Robert Greene and Chris Voss. Her first book, Party Girl, is in development as a film tentatively scheduled to be shot in 2023. SIGN UP FOR ANNA DAVID'S NEWSLETTER https://www.legacylaunchpadpub.com/authority-secrets MORE VIDEOS WITH ANNA DAVID https://bit.ly/3Y2vwzy VIEWERS ALSO WATCHED The Average Author Sells 300 Copies Of Their Book - https://youtu.be/omiucTwAHN8 What Stops New Authors From Writing Their First Book - https://youtu.be/230Lppu4cvA 3 Things New Authors Should Expect From Their Publishers - https://youtu.be/I1jE24kdl9U How Does A Book Get On Hollywood's Radar? - https://youtu.be/uaMs53zQl1g How NOT Selling The First Book Can Help An Author’s Career - https://youtu.be/PkN64iYSMQY (Affiliates) ►WE USE THIS CAMERA (B&H) – https://buff.ly/3rWqrra ►WE USE THIS EDITING PROGRAM (ADOBE) – https://goo.gl/56LnpM ►WE USE THIS SOUND RECORDER (AMAZON) – http://amzn.to/2tbFlM9 BOOKS WE RECOMMEND https://buff.ly/3o0oE5o SUPPORT FILM COURAGE BY BECOMING A MEMBER https://www.youtube.com/channel/UCs8o1mdWAfefJkdBg632_tg/join CONNECT WITH FILM COURAGE http://www.FilmCourage.com http://twitter.com/#!/FilmCourage https://www.facebook.com/filmcourage https://www.instagram.com/filmcourage http://filmcourage.tumblr.com http://pinterest.com/filmcourage SUBSCRIBE TO THE FILM COURAGE YOUTUBE CHANNEL http://bit.ly/18DPN37 LISTEN TO THE FILM COURAGE PODCAST https://soundcloud.com/filmcourage-com Stuff we use: LENS - Most people ask us what camera we use, no one ever asks about the lens which filmmakers always tell us is more important. This lens was a big investment for us and one we wish we could have made sooner. Started using this lens at the end of 2013 - http://amzn.to/2tbtmOq AUDIO Rode VideoMic Pro - The Rode mic helps us capture our backup audio. It also helps us sync up our audio in post http://amzn.to/2t1n2hx Audio Recorder - If we had to do it all over again, this is probably the first item we would have bought - http://amzn.to/2tbFlM9 LIGHTS - Although we like to use as much natural light as we can, we often enhance the lighting with this small portable light. We have two of them and they have saved us a number of times - http://amzn.to/2u5UnHv COMPUTER - Our favorite computer, we each have one and have used various models since 2010 - http://amzn.to/2t1M67Z EDITING - We upgraded our editing suite this year and we’re glad we did! This has improved our workflow and the quality of our work. Having new software also helps when we have a problem, it’s easy to search and find a solution - https://goo.gl/56LnpM *These are affiliate links, by using them you can help support this channel. #writing #author #publishing
9:50
What New Authors Should Expect From A Publisher - Anna David
BUY THE BOOK - ON GOOD AUTHORITY: 7 Steps to Prepare, Promote and Profit From a How-to Boo...
published: 01 Mar 2023
Play in Full Screen
16:25
STOP PUBLISHING YOUR BOOKS ON AMAZON KDP (Do This Instead) | I Quit Amazon KDP
Sis, I quit Amazon KDP! And if you want to do the same thing, in this video, I'll teach yo...
published: 11 Nov 2024
Play in Full Screen
1:32
Academic Publishing
It’s not about the money…
published: 16 Feb 2022
Play in Full Screen
5:28
The publishing process at Penguin Random House
Watch this video to learn about the seven different stages of the publishing process at Pe...
published: 21 Feb 2020
Play in Full Screen
16:57
Your Complete Guide to Publishing a Book in 2025
DOWNLOAD MY FREE STORY SELF-ASSESSMENT! https://www.alyssamatesic.com/#freebie-form WORK ...
published: 12 Jan 2025
Play in Full Screen
12:48
How Much I Made Publishing My Books 📚
Let's talk about making money in the self publishing space! Big thank you to today's spons...
published: 16 Mar 2023
Play in Full Screen
4:03
Music Publishing Explained | Music Publishing 101
Music publisher is responsible for ensuring the songwriters and composers receive payment ...
published: 05 Sep 2018
Play in Full Screen
14:58
Publishing.com Honest Review: Scam or Legit?
🚀 Join AI Publishing Academy Using My Link and Get 11 Free Bonuses! 🔗 https://trevorsomerv...
published: 27 Apr 2024
Play in Full Screen
1:51:42
Amazon KDP Mastery: The Only Must-Watch Publishing COURSE For Authors To Succeed In 2025 (Lesson 2)
Are you ready to crush it on Amazon KDP and achieve your publishing goals? This is the ONL...
published: 28 Jan 2025
Play in Full Screen
7:34
How to Get Published by a Big Five House | Traditional Book Publishing Process
WORK WITH ME ON YOUR STORY https://www.alyssamatesic.com/inquire#inquire-2 GET A QUERY LE...
published: 06 Dec 2020
Play in Full Screen

Publishing

Publishing is the process of production and dissemination of literature, music, or information — the activity of making information available to the general public. In some cases, authors may be their own publishers, meaning originators and developers of content also provide media to deliver and display the content for the same. Also, the word publisher can refer to the individual who leads a publishing company or an imprint or to a person who owns/heads a magazine.

Traditionally, the term refers to the distribution of printed works such as books (the "book trade") and newspapers. With the advent of digital information systems and the Internet, the scope of publishing has expanded to include electronic resources such as the electronic versions of books and periodicals, as well as micropublishing, websites, blogs, video game publishers, and the like.

Publishing includes the following stages of development: acquisition, copy editing, production, printing (and its electronic equivalents), and marketing and distribution.

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