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

Program and System Information Protocol

The Program and System Information Protocol (PSIP) is the MPEG and privately defined program-specific information originally defined by General Instrument for the DigiCipher 2 system and later extended for the ATSC digital television system for carrying metadata about each channel in the broadcast MPEG transport stream of a television station and for publishing information about television programs so that viewers can select what to watch by title and description.

What PSIP does

PSIP defines virtual channels and content ratings, as well as electronic program guides with titles and (optionally) descriptions to be decoded and displayed by the ATSC tuner.

PSIP can also send:

  • the exact time referenced to UTC and GPS time;
  • the short name, which some stations use to publish their callsign. A maximum of seven characters can be used in a short name.
  • PSIP is defined in ATSC standard A/65, the most recent revision of which is A/65:2013, published in 2013. A/69 is a recommended practice for implementing PSIP in a television station.

    PSIP1

    PC4 and SFRS1 interacting protein 1, also known as lens epithelium-derived growth factor (LEDGF/p75), dense fine speckles 70kD protein (DFS 70) or transcriptional coactivator p75/p52, is a protein that in humans is encoded by the PSIP1 gene.

    Function

    PSIP1 has not been clearly linked to a specific cellular mechanism. The term LEDGF/p75 (Lens epithelium-derived growth factor) has entered common usage based on the initial characterization of PSIP1, however this is a misnomer, as the protein is present in most tissues and has no direct role in the development of lens epithelium. LEDGF/p75, a transcription coactivator, gained prominence as a host factor that assists HIV integration and is probably the only integrase interactor whose knock-down severely affects the HIV integration levels. The interaction between HIV integrase and human LEDGF/p75 is a promising target for anti-HIV drug discovery.

    Structure

    LEDGF/p75 is a 60kDa, 530-amino-acid-long protein. The N-terminal portion of the protein consists of a PWWP domain, a nuclear localization sequence, and two copies of the AT-hook DNA binding motif. The C-terminal portion of LEDGF/p75 contains a structure termed the integrase-binding domain, which interacts with lentiviral integrase proteins as well as numerous cellular proteins. The N-terminal portion interacts strongly with chromatin, making LEDGF/p75 a constitutively nuclear protein. An isoform of the protein, LEDGF/p52, is produced by alternative splicing. LEDGF/p52 shares the N-terminal 325 amino acids of LEDGF/p75 but lacks the integrase-binding domain.

    Podcasts:

    • PSI Community-Wide Case Study: Negative Transference in a Cannabis-Assisted PSIP Session

      PSI instructor Dr. Jackie Meltz and PSI alum Christian Snuffer, along with Saj Razvi (Founder & Director of Education at PSI) walked us through a powerful case study of working with negative transference in a cannabis-assisted Psychedelic Somatic Interactional Psychotherapy (PSIP) session. In this presentation, you will see how relational ambivalence and projection play out in this type of PSIP session that utilizes sustained eye contact while under the effects of cannabis. You will see how much therapeutic potential there is when relationship becomes the focus of the psychedelic session. ⭐ Learn more about Psychedelic Somatic Interactional Interactional Psychotherapy (PSIP) — https://training.psychedelicsomatic.org/what-is-PSIP ⭐ Visit the Psychedelic Somatic Institute (PSI) website — ht...

      published: 22 Dec 2024
    • Working with Defense Responses in the PSIP Psychedelic Session

      This is a useful case study from PSI because it beautifully demonstrates how secondary consciousness defenses (mental) and primary consciousness defenses (biological) to trauma will arise in the psychedelic therapy session. You will see how the instructors use PSIP interventions to engage these defenses. We are lucky to have the primary PSI instructor, Saj Razvi, the instructor candidate, Dr. Lauren Ampolos, and student receiving the session, Kenlyn Mirbach, all on the call. They talk about the theory behind what is taking place and what the internal experience of going through it was like. The session was recorded at the PSI Hawaii training site. ⭐ Learn more about Psychedelic Somatic Interactional Interactional Psychotherapy (PSIP) — https://training.psychedelicsomatic.org/what-is-PSIP ...

      published: 10 Jun 2024
    • Community-Wide Case Study: Splitting & Dissociation in PSIP

      ⭐ Learn more about Psychedelic Somatic Interactional Interactional Psychotherapy (PSIP) — https://training.psychedelicsomatic.org/what-is-PSIP ⭐ Visit the Psychedelic Somatic Institute (PSI) website — https://www.psychedelicsomatic.org ⭐ Sign up for free events & listen to more content — https://linktr.ee/psychedelicsomaticinstitute #psychedelictherapy #psychedelicassistedtherapy #psychedelics #psychedelicscience #psychedelicsomaticinstitute #psychedelichealing #psychedelictreatment #psip

      published: 26 Nov 2023
    • PSIP Community Wide Case Study Excerpt (Part 1 of 2)

      Watch this case study discussion of a PSIP therapy session where the client is working with both ketamine and cannabis at the same time. The client in this case is the founder and Director of Education at PSI, Saj Razvi. ⭐ Learn more about Psychedelic Somatic Interactional Interactional Psychotherapy (PSIP) — https://training.psychedelicsomatic.org/what-is-PSIP ⭐ Visit the Psychedelic Somatic Institute (PSI) website — https://www.psychedelicsomatic.org ⭐ Sign up for free events & listen to more content — https://linktr.ee/psychedelicsomaticinstitute #psychedelictherapy #psychedelicassistedtherapy #psychedelics #psychedelicscience #psychedelicsomaticinstitute #psychedelichealing #psychedelictreatment #psip

      published: 01 Feb 2024
    • Saj Razvi Receives a Ketamine PSIP Session Part 1

      This is Saj Razvi and I thought I'd show you what one of my own psychedelic therapy sessions looks like. I'm working with prescription ketamine and the therapist is Robin Temple (another PSI instructor). This is vulnerable to put out into the world but I did it for a few reasons: 1) the PSI website is filled with sample psychedelic sessions graciously donated by students for educational purposes so I thought it was fair to have my turn. 2) This is what a potential endpoint to psychedelic therapy looks like. In my case, this is the resolution of an early, highly dissociated (split off), developmental attachment trauma. This is what a very trusting, fluid nervous system does with this type of material. 3) This is my 'why'. This session is filled with the loving intelligence and beauty that i...

      published: 18 Apr 2023
    • PSIP Twin Installation Process

      PSIP Twin and Click Scan Installation Process...

      published: 24 Oct 2023
    • Psychedelic Treatment of Childhood Attachment Trauma with PSIP | Psychedelic Somatic Institute

      What you're about to see is an actual psychedelic therapy session utilizing cannabis as a psychedelic medicine. This is this person's very first psychedelic therapy session and as you'll see, we're working with complex developmental trauma the he went through in early childhood. You'll see how we can address core attachment wounds that have led to many significant mental health symptoms such as anxiety, depression, OCD and relational difficulties. Watch Part 1 of Saj's own ketamine PSIP session – https://www.youtube.com/watch?v=jFmsRMFAABY ⠀⠀⠀⠀⠀⠀ Become a psychedelic therapist practicing with fully legal medicines – https://www.psychedelicsomatic.org/psychedelic-psychotherapy-training Chapters 0:00 Intro 1:45 What is Attachment 4:21 Beginning of the session 6:40 Negative transference...

      published: 27 Apr 2023
    • Complex PTSD and Psychedelic Somatic Interactional Psychotherapy (PSIP)

      In this interview with Ande Anderson of Avaiya University, Psychedelic Somatic Institute instructor Eric Bowers speaks about Complex PTSD, psychedelics, the nervous system states of the defense cascade, the importance of solution, and Psychedelic Somatic Interactional Psychotherapy (PSIP). Find more about Eric Bowers at www.roadtocompassion.com. Find more about Psychedelic Somatic Interactional Psychotherapy at www.psychedelicsomatic.org And find more interviews on PTSD and toxic shame at https://ebowers--avaiya.thrivecart.com/opts-special/

      published: 20 Sep 2023
    • Cannabis PSIP Psychedelic Treatment | PSI Student Experience | Psychedelic Somatic Institute

      Dr. Dustin Sulak is a physician and author specalizing in the use of cannabis as a medical treatment. He talks about the combination of cannabis with the PSIP psychedelic treatment model. It should be noted that PSIP is a non-medicine specific and can amplify the healing capacity of any psychedelic medicine. We focus on cannabis because of its ability to resolve dissociation , support the nervous system's processing of trauma and because it's the most widely available, legal, inexpensive psychedelic people have access to. Our training ► https://www.psychedelicsomatic.org/psychedelic-psychotherapy-training More on Cannabis-Assisted Psychotherapy ► https://www.psychedelicsomatic.org/cannabis-assisted-therapy Chapters: 0:00 Intro 1:41 Dr Dustin Sulak's personal experience with PSIP 2:46...

      published: 13 Mar 2023
    • Highlight PSIP Vs PERSEKAP 3-1 l Liga3

      PSIP Taklukkan Persekap 3-1 Pemalang, Wartadesa. - Pil pahit harus ditelan oleh Laskar Ki Ageng Cempaluk, Persekap Pekalongan setelah gagal membawa pulang poin penuh dalam laga perdana away melawan Laskar Pangeran Benowo di Stadion Mochtar Pemalang, Ahad (25/09/2022) kemarin. Persekap yang lebih dulu menyarangkan gol ke gawang PSIP tidak mampu mempertahankan kemenanggannya. Bahkan kebobolan gol tiga kali berturut-turut selama pertandingan berlangsung. Hasilnya 3-1 untuk keunggulan Laskar Benowo. Albert, Pelatih PSIP mengaku puas dengan hasil laga perdana tersebut. Menurutnya poin awal ini menjadi bekal Laskar Benowo untuk terus mempersiapkan laga-laga berikutnya. Albert pun meminta dukungan seluruh warga Kota Ikhlas untuk terus mendukung PSIP pada Laga 3 PSSI Jateng ini. (Buono)

      published: 26 Sep 2022
    PSI Community-Wide Case Study: Negative Transference in a Cannabis-Assisted PSIP Session
    2:21:24

    PSI Community-Wide Case Study: Negative Transference in a Cannabis-Assisted PSIP Session

    • Order:
    • Duration: 2:21:24
    • Uploaded Date: 22 Dec 2024
    • views: 975
    PSI instructor Dr. Jackie Meltz and PSI alum Christian Snuffer, along with Saj Razvi (Founder & Director of Education at PSI) walked us through a powerful case study of working with negative transference in a cannabis-assisted Psychedelic Somatic Interactional Psychotherapy (PSIP) session. In this presentation, you will see how relational ambivalence and projection play out in this type of PSIP session that utilizes sustained eye contact while under the effects of cannabis. You will see how much therapeutic potential there is when relationship becomes the focus of the psychedelic session. ⭐ Learn more about Psychedelic Somatic Interactional Interactional Psychotherapy (PSIP) — https://training.psychedelicsomatic.org/what-is-PSIP ⭐ Visit the Psychedelic Somatic Institute (PSI) website — https://www.psychedelicsomatic.org ⭐ Sign up for free events & listen to more content — https://linktr.ee/psychedelicsomaticinstitute #psychedelictherapy #psychedelicassistedtherapy #psychedelics #psychedelicscience #psychedelicsomaticinstitute #psychedelichealing #psychedelictreatment #psip
    https://wn.com/Psi_Community_Wide_Case_Study_Negative_Transference_In_A_Cannabis_Assisted_Psip_Session
    Working with Defense Responses in the PSIP Psychedelic Session
    2:15:11

    Working with Defense Responses in the PSIP Psychedelic Session

    • Order:
    • Duration: 2:15:11
    • Uploaded Date: 10 Jun 2024
    • views: 1578
    This is a useful case study from PSI because it beautifully demonstrates how secondary consciousness defenses (mental) and primary consciousness defenses (biological) to trauma will arise in the psychedelic therapy session. You will see how the instructors use PSIP interventions to engage these defenses. We are lucky to have the primary PSI instructor, Saj Razvi, the instructor candidate, Dr. Lauren Ampolos, and student receiving the session, Kenlyn Mirbach, all on the call. They talk about the theory behind what is taking place and what the internal experience of going through it was like. The session was recorded at the PSI Hawaii training site. ⭐ Learn more about Psychedelic Somatic Interactional Interactional Psychotherapy (PSIP) — https://training.psychedelicsomatic.org/what-is-PSIP ⭐ Visit the Psychedelic Somatic Institute (PSI) website — https://www.psychedelicsomatic.org ⭐ Sign up for free events & listen to more content — https://linktr.ee/psychedelicsomaticinstitute #psychedelictherapy #psychedelicassistedtherapy #psychedelics #psychedelicscience #psychedelicsomaticinstitute #psychedelichealing #psychedelictreatment #psip
    https://wn.com/Working_With_Defense_Responses_In_The_Psip_Psychedelic_Session
    Community-Wide Case Study: Splitting & Dissociation in PSIP
    9:15

    Community-Wide Case Study: Splitting & Dissociation in PSIP

    • Order:
    • Duration: 9:15
    • Uploaded Date: 26 Nov 2023
    • views: 852
    ⭐ Learn more about Psychedelic Somatic Interactional Interactional Psychotherapy (PSIP) — https://training.psychedelicsomatic.org/what-is-PSIP ⭐ Visit the Psychedelic Somatic Institute (PSI) website — https://www.psychedelicsomatic.org ⭐ Sign up for free events & listen to more content — https://linktr.ee/psychedelicsomaticinstitute #psychedelictherapy #psychedelicassistedtherapy #psychedelics #psychedelicscience #psychedelicsomaticinstitute #psychedelichealing #psychedelictreatment #psip
    https://wn.com/Community_Wide_Case_Study_Splitting_Dissociation_In_Psip
    PSIP Community Wide Case Study Excerpt (Part 1 of 2)
    15:51

    PSIP Community Wide Case Study Excerpt (Part 1 of 2)

    • Order:
    • Duration: 15:51
    • Uploaded Date: 01 Feb 2024
    • views: 1375
    Watch this case study discussion of a PSIP therapy session where the client is working with both ketamine and cannabis at the same time. The client in this case is the founder and Director of Education at PSI, Saj Razvi. ⭐ Learn more about Psychedelic Somatic Interactional Interactional Psychotherapy (PSIP) — https://training.psychedelicsomatic.org/what-is-PSIP ⭐ Visit the Psychedelic Somatic Institute (PSI) website — https://www.psychedelicsomatic.org ⭐ Sign up for free events & listen to more content — https://linktr.ee/psychedelicsomaticinstitute #psychedelictherapy #psychedelicassistedtherapy #psychedelics #psychedelicscience #psychedelicsomaticinstitute #psychedelichealing #psychedelictreatment #psip
    https://wn.com/Psip_Community_Wide_Case_Study_Excerpt_(Part_1_Of_2)
    Saj Razvi Receives a Ketamine PSIP Session Part 1
    33:41

    Saj Razvi Receives a Ketamine PSIP Session Part 1

    • Order:
    • Duration: 33:41
    • Uploaded Date: 18 Apr 2023
    • views: 6584
    This is Saj Razvi and I thought I'd show you what one of my own psychedelic therapy sessions looks like. I'm working with prescription ketamine and the therapist is Robin Temple (another PSI instructor). This is vulnerable to put out into the world but I did it for a few reasons: 1) the PSI website is filled with sample psychedelic sessions graciously donated by students for educational purposes so I thought it was fair to have my turn. 2) This is what a potential endpoint to psychedelic therapy looks like. In my case, this is the resolution of an early, highly dissociated (split off), developmental attachment trauma. This is what a very trusting, fluid nervous system does with this type of material. 3) This is my 'why'. This session is filled with the loving intelligence and beauty that is all of our birthright, and I could not be more grateful for how it shows up here. It's why I'll be teaching about this path for the rest of my life. The session itself is only about 25 minutes long but the video is made longer by my introduction and commentary explaining the process that is unfolding. I hope you find it engaging, informative and useful. Watch Saj Receives His Own Ketamine PSIP Session (Part 2): https://youtu.be/v0zzGy1HAmU ⭐ Learn more about Psychedelic Somatic Interactional Interactional Psychotherapy (PSIP) — https://training.psychedelicsomatic.org/what-is-PSIP ⭐ Visit the Psychedelic Somatic Institute (PSI) website — https://www.psychedelicsomatic.org ⭐ Sign up for free events & listen to more content — https://linktr.ee/psychedelicsomaticinstitute #psychedelictherapy #psychedelicassistedtherapy #psychedelics #psychedelicscience #psychedelicsomaticinstitute #psychedelichealing #psychedelictreatment #psip
    https://wn.com/Saj_Razvi_Receives_A_Ketamine_Psip_Session_Part_1
    PSIP Twin Installation Process
    2:24

    PSIP Twin Installation Process

    • Order:
    • Duration: 2:24
    • Uploaded Date: 24 Oct 2023
    • views: 142
    PSIP Twin and Click Scan Installation Process...
    https://wn.com/Psip_Twin_Installation_Process
    Psychedelic Treatment of Childhood Attachment Trauma with PSIP | Psychedelic Somatic Institute
    24:14

    Psychedelic Treatment of Childhood Attachment Trauma with PSIP | Psychedelic Somatic Institute

    • Order:
    • Duration: 24:14
    • Uploaded Date: 27 Apr 2023
    • views: 3712
    What you're about to see is an actual psychedelic therapy session utilizing cannabis as a psychedelic medicine. This is this person's very first psychedelic therapy session and as you'll see, we're working with complex developmental trauma the he went through in early childhood. You'll see how we can address core attachment wounds that have led to many significant mental health symptoms such as anxiety, depression, OCD and relational difficulties. Watch Part 1 of Saj's own ketamine PSIP session – https://www.youtube.com/watch?v=jFmsRMFAABY ⠀⠀⠀⠀⠀⠀ Become a psychedelic therapist practicing with fully legal medicines – https://www.psychedelicsomatic.org/psychedelic-psychotherapy-training Chapters 0:00 Intro 1:45 What is Attachment 4:21 Beginning of the session 6:40 Negative transference towards the therapist as a result of core attachment wound 9:26 State 3 - Hopelesness 12:40 Client's system is negotiating contact with the therapist 16:22 Massive, Incomplete Autonomic Response around attachment bond is expressed 22:53 IAR completion and getting back to calm ⭐ Learn more about Psychedelic Somatic Interactional Interactional Psychotherapy (PSIP) — https://training.psychedelicsomatic.org/what-is-PSIP ⭐ Visit the Psychedelic Somatic Institute (PSI) website — https://www.psychedelicsomatic.org ⭐ Sign up for free events & listen to more content — https://linktr.ee/psychedelicsomaticinstitute #psychedelictherapy #psychedelicassistedtherapy #psychedelics #psychedelicscience #psychedelicsomaticinstitute #psychedelichealing #psychedelictreatment #psip
    https://wn.com/Psychedelic_Treatment_Of_Childhood_Attachment_Trauma_With_Psip_|_Psychedelic_Somatic_Institute
    Complex PTSD and Psychedelic Somatic Interactional Psychotherapy (PSIP)
    40:29

    Complex PTSD and Psychedelic Somatic Interactional Psychotherapy (PSIP)

    • Order:
    • Duration: 40:29
    • Uploaded Date: 20 Sep 2023
    • views: 150
    In this interview with Ande Anderson of Avaiya University, Psychedelic Somatic Institute instructor Eric Bowers speaks about Complex PTSD, psychedelics, the nervous system states of the defense cascade, the importance of solution, and Psychedelic Somatic Interactional Psychotherapy (PSIP). Find more about Eric Bowers at www.roadtocompassion.com. Find more about Psychedelic Somatic Interactional Psychotherapy at www.psychedelicsomatic.org And find more interviews on PTSD and toxic shame at https://ebowers--avaiya.thrivecart.com/opts-special/
    https://wn.com/Complex_Ptsd_And_Psychedelic_Somatic_Interactional_Psychotherapy_(Psip)
    Cannabis PSIP Psychedelic Treatment | PSI Student Experience | Psychedelic Somatic Institute
    7:15

    Cannabis PSIP Psychedelic Treatment | PSI Student Experience | Psychedelic Somatic Institute

    • Order:
    • Duration: 7:15
    • Uploaded Date: 13 Mar 2023
    • views: 1062
    Dr. Dustin Sulak is a physician and author specalizing in the use of cannabis as a medical treatment. He talks about the combination of cannabis with the PSIP psychedelic treatment model. It should be noted that PSIP is a non-medicine specific and can amplify the healing capacity of any psychedelic medicine. We focus on cannabis because of its ability to resolve dissociation , support the nervous system's processing of trauma and because it's the most widely available, legal, inexpensive psychedelic people have access to. Our training ► https://www.psychedelicsomatic.org/psychedelic-psychotherapy-training More on Cannabis-Assisted Psychotherapy ► https://www.psychedelicsomatic.org/cannabis-assisted-therapy Chapters: 0:00 Intro 1:41 Dr Dustin Sulak's personal experience with PSIP 2:46 Cannabis use in psychotherapy 3:35 The value of cannabis-assisted PSIP therapy 5:10 PSIP training reccomendation ⭐ Learn more about Psychedelic Somatic Interactional Interactional Psychotherapy (PSIP) — https://training.psychedelicsomatic.org/what-is-PSIP ⭐ Visit the Psychedelic Somatic Institute (PSI) website — https://www.psychedelicsomatic.org ⭐ Sign up for free events & listen to more content — https://linktr.ee/psychedelicsomaticinstitute #psychedelictherapy #psychedelicassistedtherapy #psychedelics #psychedelicscience #psychedelicsomaticinstitute #psychedelichealing #psychedelictreatment #psip
    https://wn.com/Cannabis_Psip_Psychedelic_Treatment_|_Psi_Student_Experience_|_Psychedelic_Somatic_Institute
    Highlight PSIP Vs PERSEKAP 3-1 l Liga3
    4:45

    Highlight PSIP Vs PERSEKAP 3-1 l Liga3

    • Order:
    • Duration: 4:45
    • Uploaded Date: 26 Sep 2022
    • views: 1346
    PSIP Taklukkan Persekap 3-1 Pemalang, Wartadesa. - Pil pahit harus ditelan oleh Laskar Ki Ageng Cempaluk, Persekap Pekalongan setelah gagal membawa pulang poin penuh dalam laga perdana away melawan Laskar Pangeran Benowo di Stadion Mochtar Pemalang, Ahad (25/09/2022) kemarin. Persekap yang lebih dulu menyarangkan gol ke gawang PSIP tidak mampu mempertahankan kemenanggannya. Bahkan kebobolan gol tiga kali berturut-turut selama pertandingan berlangsung. Hasilnya 3-1 untuk keunggulan Laskar Benowo. Albert, Pelatih PSIP mengaku puas dengan hasil laga perdana tersebut. Menurutnya poin awal ini menjadi bekal Laskar Benowo untuk terus mempersiapkan laga-laga berikutnya. Albert pun meminta dukungan seluruh warga Kota Ikhlas untuk terus mendukung PSIP pada Laga 3 PSSI Jateng ini. (Buono)
    https://wn.com/Highlight_Psip_Vs_Persekap_3_1_L_Liga3
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • PSI Community-Wide Case Study: Negative Transference in a Cannabis-Assisted PSIP Session
      2:21:24
      PSI Community-Wide Case Study: Negative Transference in a Cannabis-Assisted PSIP Sessionremove from playlist
    • Working with Defense Responses in the PSIP Psychedelic Session
      2:15:11
      Working with Defense Responses in the PSIP Psychedelic Sessionremove from playlist
    • Community-Wide Case Study: Splitting & Dissociation in PSIP
      9:15
      Community-Wide Case Study: Splitting & Dissociation in PSIPremove from playlist
    • PSIP Community Wide Case Study Excerpt (Part 1 of 2)
      15:51
      PSIP Community Wide Case Study Excerpt (Part 1 of 2)remove from playlist
    • Saj Razvi Receives a Ketamine PSIP Session Part 1
      33:41
      Saj Razvi Receives a Ketamine PSIP Session Part 1remove from playlist
    • Psychedelic Treatment of Childhood Attachment Trauma with PSIP | Psychedelic Somatic Institute
      24:14
      Psychedelic Treatment of Childhood Attachment Trauma with PSIP | Psychedelic Somatic Instituteremove from playlist
    • Complex PTSD and Psychedelic Somatic Interactional Psychotherapy (PSIP)
      40:29
      Complex PTSD and Psychedelic Somatic Interactional Psychotherapy (PSIP)remove from playlist
    • Cannabis PSIP Psychedelic Treatment | PSI Student Experience | Psychedelic Somatic Institute
      7:15
      Cannabis PSIP Psychedelic Treatment | PSI Student Experience | Psychedelic Somatic Instituteremove from playlist
    • Highlight PSIP Vs PERSEKAP 3-1 l Liga3
      4:45
      Highlight PSIP Vs PERSEKAP 3-1 l Liga3remove from playlist
    PLAYLIST TIME: 0:00 / 6:54:29

    PSI Community-Wide Case Study: Negative Transference in a Cannabis-Assisted PSIP Session

    PSI instructor Dr. Jackie Meltz and PSI alum Christian Snuffer, along with Saj Razvi (Founder & Director of Education at PSI) walked us through a powerful case study of working with negative transference in a cannabis-assisted Psychedelic Somatic Interactional Psychotherapy (PSIP) session. In this presentation, you will see how relational ambivalence and projection play out in this type of PSIP session that utilizes sustained eye contact while under the effects of cannabis. You will see how much therapeutic potential there is when relationship becomes the focus of the psychedelic session. ⭐ Learn more about Psychedelic Somatic Interactional Interactional Psychotherapy (PSIP) — https://training.psychedelicsomatic.org/what-is-PSIP ⭐ Visit the Psychedelic Somatic Institute (PSI) website — https://www.psychedelicsomatic.org ⭐ Sign up for free events & listen to more content — https://linktr.ee/psychedelicsomaticinstitute #psychedelictherapy #psychedelicassistedtherapy #psychedelics #psychedelicscience #psychedelicsomaticinstitute #psychedelichealing #psychedelictreatment #psip
    2:21:24
    PSI Community-Wide Case Study: Negative Transference in a Cannabis-Assisted PSIP Session
    PSI instructor Dr. Jackie Meltz and PSI alum Christian Snuffer, along with Saj Razvi (Foun...
    published: 22 Dec 2024
    Play in Full Screen
    2:15:11
    Working with Defense Responses in the PSIP Psychedelic Session
    This is a useful case study from PSI because it beautifully demonstrates how secondary con...
    published: 10 Jun 2024
    Play in Full Screen
    9:15
    Community-Wide Case Study: Splitting & Dissociation in PSIP
    ⭐ Learn more about Psychedelic Somatic Interactional Interactional Psychotherapy (PSIP) — ...
    published: 26 Nov 2023
    Play in Full Screen
    15:51
    PSIP Community Wide Case Study Excerpt (Part 1 of 2)
    Watch this case study discussion of a PSIP therapy session where the client is working wit...
    published: 01 Feb 2024
    Play in Full Screen
    33:41
    Saj Razvi Receives a Ketamine PSIP Session Part 1
    This is Saj Razvi and I thought I'd show you what one of my own psychedelic therapy sessio...
    published: 18 Apr 2023
    Play in Full Screen
    2:24
    PSIP Twin Installation Process
    PSIP Twin and Click Scan Installation Process...
    published: 24 Oct 2023
    Play in Full Screen
    24:14
    Psychedelic Treatment of Childhood Attachment Trauma with PSIP | Psychedelic Somatic Institute
    What you're about to see is an actual psychedelic therapy session utilizing cannabis as a ...
    published: 27 Apr 2023
    Play in Full Screen
    40:29
    Complex PTSD and Psychedelic Somatic Interactional Psychotherapy (PSIP)
    In this interview with Ande Anderson of Avaiya University, Psychedelic Somatic Institute i...
    published: 20 Sep 2023
    Play in Full Screen
    7:15
    Cannabis PSIP Psychedelic Treatment | PSI Student Experience | Psychedelic Somatic Institute
    Dr. Dustin Sulak is a physician and author specalizing in the use of cannabis as a medical...
    published: 13 Mar 2023
    Play in Full Screen
    4:45
    Highlight PSIP Vs PERSEKAP 3-1 l Liga3
    PSIP Taklukkan Persekap 3-1 Pemalang, Wartadesa. - Pil pahit harus ditelan oleh Laskar Ki ...
    published: 26 Sep 2022
    Play in Full Screen

    Program and System Information Protocol

    The Program and System Information Protocol (PSIP) is the MPEG and privately defined program-specific information originally defined by General Instrument for the DigiCipher 2 system and later extended for the ATSC digital television system for carrying metadata about each channel in the broadcast MPEG transport stream of a television station and for publishing information about television programs so that viewers can select what to watch by title and description.

    What PSIP does

    PSIP defines virtual channels and content ratings, as well as electronic program guides with titles and (optionally) descriptions to be decoded and displayed by the ATSC tuner.

    PSIP can also send:

  • the exact time referenced to UTC and GPS time;
  • the short name, which some stations use to publish their callsign. A maximum of seven characters can be used in a short name.
  • PSIP is defined in ATSC standard A/65, the most recent revision of which is A/65:2013, published in 2013. A/69 is a recommended practice for implementing PSIP in a television station.

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