<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>paprtape</title>
	<link>https://www.paprtape.com</link>
	<description>paprtape</description>
	<pubDate>Sun, 27 Jul 2025 05:36:27 +0000</pubDate>
	<generator>https://www.paprtape.com</generator>
	<language>en</language>
	
		
	<item>
		<title>zp</title>
				
		<link>http://www.paprtape.com/zp</link>

		<comments></comments>

		<pubDate>Sun, 27 Jul 2025 05:36:27 +0000</pubDate>

		<dc:creator>paprtape</dc:creator>
		
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">457433</guid>

		<description>
  PaprTape Portfolio
  
  
  

    /* --- Base Styles --- */
    body {
      font-family: sans-serif;
      margin: 0;
      padding: 2rem;
      background: #fff;
      color: #222;
    }

    /* --- Grid Layouts --- */
    .video-grid-4,
    .video-grid-3,
    .video-grid-2 {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem; /* Creates space between items (columns and rows) */
      margin-bottom: 0;
      padding: 0;
    }

    .video-grid-4 .video-block {
      flex: 1 1 calc(25% - 1.5rem); /* Four columns */
    }

    .video-grid-3 .video-block {
      flex: 1 1 calc(33.333% - 1.5rem); /* Three columns */
    }

    .video-grid-2 .video-block {
      flex: 1 1 calc(50% - 1.5rem); /* Two columns */
    }

    /* --- Individual Video Block --- */
    .video-block {
      display: flex;
      flex-direction: column;
      /* Restore margin-bottom for spacing between grid items */
      /* Adjust this value to control space between rows of videos */
      margin-bottom: 2rem; /* ====== ADJUST FOR ROW SPACING ====== */
    }

    /* Target direct children for animation */
    .video-block &#62; .video-container {
        opacity: 0;
        /* Remove margin-bottom to prevent double-spacing */
        margin-bottom: 0;
        flex-shrink: 0;
        will-change: transform, opacity;
    }

    /* Target the direct child small (caption) */
    .video-block &#62; small {
        opacity: 0;
        /* Remove padding-top */
        padding-top: 0;
        /* Use margin-top for spacing below the video container */
        /* Adjust this value to control space between video and text */
        margin-top: 0.5rem; /* ====== ADJUST FOR VIDEO-TEXT SPACING ====== */
        margin-bottom: 0; /* Explicitly remove any bottom margin */
        min-height: 1.3em;
        flex-shrink: 0;
        will-change: transform, opacity;
    }

     /* Apply entrance/scroll animation to the container */
    .video-block &#62; .video-container.animate-enter,
    .video-block &#62; .video-container.animate-scroll {
        opacity: 1;
        -webkit-animation: fadeInUpBlock 0.6s ease-out forwards;
        animation: fadeInUpBlock 0.6s ease-out forwards;
    }

    /* Apply entrance/scroll animation to the caption */
    .video-block &#62; small.animate-enter,
    .video-block &#62; small.animate-scroll {
        opacity: 1;
        -webkit-animation: fadeInUpCaption 0.6s ease-out 0.1s forwards;
        animation: fadeInUpCaption 0.6s ease-out 0.1s forwards;
    }

    /* --- Video Container &#38; Thumbnail --- */
    .video-container {
      position: relative;
      width: 100%;
      max-width: 100%;
      padding-top: 56.25%; /* Default 16:9 Aspect Ratio */
      background: #000;
      border-radius: 6px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      margin-bottom: 0; /* Explicitly remove margin */
    }

    .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      margin: 0;
    }

    /* --- Custom Aspect Ratios --- */
    .aspect-ratio-42 { padding-top: 42.55%; }
    .aspect-ratio-50 { padding-top: 50%; }
    .aspect-ratio-53 { padding-top: 52.79%; }
    .aspect-ratio-56 { padding-top: 55.96%; }
    .aspect-ratio-66 { padding-top: 66.67%; }
    .aspect-ratio-100 { padding-top: 100%; }
    .aspect-ratio-125 { padding-top: 125%; }
    .aspect-ratio-177 { padding-top: 177.78%; }
    .aspect-ratio-auto { padding-top: auto !important; }

    .video-thumbnail,
    .vimeo-player {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .video-thumbnail img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      display: block;
      -webkit-transition: -webkit-transform 0.3s ease;
      transition: -webkit-transform 0.3s ease;
      -o-transition: transform 0.3s ease;
      -moz-transition: transform 0.3s ease;
      transition: transform 0.3s ease;
      transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    }

    .video-thumbnail:hover img {
      -webkit-transform: scale(1.03);
      -moz-transform: scale(1.03);
      -ms-transform: scale(1.03);
      -o-transform: scale(1.03);
      transform: scale(1.03);
    }

    /* --- Play Button --- */
    .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 70px;
      height: 70px;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 50%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-transition: all 0.2s ease;
      -o-transition: all 0.2s ease;
      -moz-transition: all 0.2s ease;
      transition: all 0.2s ease;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      z-index: 2;
      will-change: transform;
    }

    .play-button:hover {
      -webkit-transform: translate(-50%, -50%) scale(1.05);
      -moz-transform: translate(-50%, -50%) scale(1.05);
      -ms-transform: translate(-50%, -50%) scale(1.05);
      -o-transform: translate(-50%, -50%) scale(1.05);
      transform: translate(-50%, -50%) scale(1.05);
      background: rgba(255, 255, 255, 1);
    }

    .play-button::before {
      content: "";
      border-style: solid;
      border-width: 14px 0 14px 22px;
      border-color: transparent transparent transparent #222;
      margin-left: 3px;
    }

    .title-bar {
      position: absolute;
      top: 0;
      left: 0;
      background: rgba(0, 0, 0, 0.6);
      color: white;
      font-size: 14px;
      padding: 6px 10px;
      max-width: 80%;
      border-bottom-right-radius: 4px;
      z-index: 2;
    }

    .title-bar a {
      color: white;
      text-decoration: none;
    }

    .title-bar a:hover {
      text-decoration: underline;
    }

    /* --- Hover Effects --- */
    .video-thumbnail:hover,
    .vimeo-player:hover {
      cursor: pointer;
    }

    /* --- General small style (Overridden for video captions) --- */
    /* This might apply to other  elements, but video captions are specifically styled */
    small {
      display: block;
      font-size: 0.85rem;
      color: #555;
      /* Removed general margins here to let specific .video-block &#62; small handle it */
    }

    /* --- Responsive --- */
    /* Tablet Responsive (768px - 900px) */
    @media (max-width: 900px) and (min-width: 769px) {
      .video-grid-4 .video-block,
      .video-grid-3 .video-block {
        flex: 1 1 calc(50% - 1rem); /* Two columns on tablets */
      }
      .video-grid-2 .video-block {
        flex: 1 1 100%; /* Single column for 2-column grid on tablets */
      }
      
      /* Reduce gap on tablets */
      .video-grid-4,
      .video-grid-3,
      .video-grid-2 {
        gap: 1.5rem;
      }
    }

    /* Mobile Responsive (481px - 768px) */
    @media (max-width: 768px) and (min-width: 481px) {
      .video-grid-4 .video-block,
      .video-grid-3 .video-block {
        flex: 1 1 calc(50% - 1rem); /* Two columns on large phones */
      }
      .video-grid-2 .video-block {
        flex: 1 1 100%; /* Single column for 2-column grid */
      }
      
      /* Reduce gap on mobile */
      .video-grid-4,
      .video-grid-3,
      .video-grid-2 {
        gap: 1rem;
      }
      
      /* Reduce video block margin */
      .video-block {
        margin-bottom: 1.5rem;
      }
    }

    /* Small Mobile Responsive (up to 480px) */
    @media (max-width: 480px) {
      .video-grid-4 .video-block,
      .video-grid-3 .video-block,
      .video-grid-2 .video-block {
        flex: 1 1 100%; /* Single column on small phones */
      }
      
      /* Minimal gap on small phones */
      .video-grid-4,
      .video-grid-3,
      .video-grid-2 {
        gap: 1rem;
      }
      
      /* Reduce video block margin */
      .video-block {
        margin-bottom: 1.5rem;
      }
      
      /* Adjust padding for small screens */
      body {
        padding: 1rem;
      }
    }

    /* Touch-friendly improvements for mobile */
    @media (max-width: 768px) {
      /* Larger touch targets */
      .play-button {
        width: 80px;
        height: 80px;
      }
      
      .play-button::before {
        border-width: 16px 0 16px 24px;
      }
      
      /* Better hover states for touch devices */
      .video-thumbnail:active img {
        transform: scale(1.02);
      }
      
      /* Improve text readability on mobile */
      .title-bar {
        font-size: 12px;
        padding: 4px 8px;
        max-width: 85%;
      }
    }

    /* Landscape orientation adjustments */
    @media (max-width: 768px) and (orientation: landscape) {
      .video-grid-4 .video-block,
      .video-grid-3 .video-block {
        flex: 1 1 calc(33.333% - 1rem); /* Three columns in landscape */
      }
      .video-grid-2 .video-block {
        flex: 1 1 calc(50% - 1rem); /* Two columns in landscape */
      }
    }

    /* --- Skeleton/Loading Animation CSS --- */
    @keyframes loadingAnimation {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }
    @-webkit-keyframes loadingAnimation {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }

    .video-thumbnail.loading {
      background-color: #e0e0e0; /* Base color for the skeleton */
      border-radius: 6px;
      overflow: hidden;
      position: relative;
      /* Apply shimmer effect to the thumbnail container itself */
      background-image: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
      );
      background-size: 200% 100%;
      background-repeat: no-repeat;
      animation: loadingAnimation 1.5s infinite linear;
    }

    .video-thumbnail.loading img {
      opacity: 0; /* Hide the image initially */
      transition: opacity 0.5s ease-in-out; /* Smooth fade-in for the image */
      will-change: opacity; /* Optimize for animation */
    }

    .video-thumbnail img.image-loaded {
      opacity: 1; /* Show the image once loaded */
    }

    /* Ensure play button and title bar are always above the skeleton and image */
    .video-thumbnail.loading .play-button,
    .video-thumbnail.loading .title-bar {
      z-index: 3;
    }
    /* --- End of Skeleton/Loading Animation CSS --- */


    /* --- Entrance and Scroll Animations --- */
    @keyframes fadeInUpBlock {
      from {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
      }
    }
    @-webkit-keyframes fadeInUpBlock {
      from { opacity: 0; -webkit-transform: translateY(20px); transform: translateY(20px); }
      to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
    }

    @keyframes fadeInUpCaption {
      from {
        opacity: 0;
        -webkit-transform: translateY(15px);
        -moz-transform: translateY(15px);
        -ms-transform: translateY(15px);
        -o-transform: translateY(15px);
        transform: translateY(15px);
      }
      to {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
      }
    }
    @-webkit-keyframes fadeInUpCaption {
      from { opacity: 0; -webkit-transform: translateY(15px); transform: translateY(15px); }
      to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
    }
    /* --- End of Entrance and Scroll Animations --- */
 /* New/Updated styles for alignment */
    .top-header-container {
        display: flex; /* Use flexbox for easy alignment */
        justify-content: space-between; /* Push logo to left, language selector to right */
        align-items: center; /* Align items vertically in the middle */
        width: 100%; /* Ensure it takes full width if needed */
        /* Optional: Add a min-height if your logo is tall to ensure alignment */
        /* min-height: 60px; */ 
    }

    div.image-container {
        /* Keep the float for the image if it works, or we can rely on flexbox */
        /* float: left;  */
        /* margin: 10px; */
        /* Or, better for flexbox, remove float and let flex handle it */
         flex-shrink: 0; /* Prevents the logo container from shrinking */
    }

    div.image-container img {
        display: block; /* Removes potential inline spacing */
        /* Your existing image styles */
        width: 9px;
        height: 50px;
        margin: 10px 0; /* Adjust vertical margin as needed, remove horizontal */
    }

    /* Style for the language selector */
    .language-selector {
        /* text-align: right; */ /* Not needed with flexbox */
        /* margin-bottom: 10px; */ /* Adjust or remove if alignment is handled by flexbox */
        /* Align items to the right within the flex container */
        margin: 10px 0; /* Adjust vertical margin to match logo */
    }

    .language-selector a {
        margin-left: 15px; /* Space between language links */
        text-decoration: none;
        font-weight: bold;
        white-space: nowrap; /* Prevents links from breaking onto new lines */
    }

    .language-selector a.current-lang {
        color: grey;
        font-weight: normal;
        pointer-events: none;
        cursor: default;
    }

  
  
  

// Robust JavaScript for Skeleton Loader - Compatible with older browsers and Persona.co
(function() {
  'use strict';
  
  // Polyfill for older browsers
  if (!Array.from) {
    Array.from = function(arrayLike) {
      var result = [];
      for (var i = 0; i &#60; arrayLike.length; i++) {
        result.push(arrayLike[i]);
      }
      return result;
    };
  }

  // Safe console logging
  function safeLog(message) {
    if (typeof console !== 'undefined' &#38;&#38; console.log) {
      console.log(message);
    }
  }

  function safeWarn(message) {
    if (typeof console !== 'undefined' &#38;&#38; console.warn) {
      console.warn(message);
    }
  }

  // --- Function to handle playing the video ---
  function playVideo(thumbnailElement, videoUrl) {
    try {
      if (!thumbnailElement &#124;&#124; !videoUrl) {
        safeWarn('Invalid parameters for playVideo');
        return;
      }
      
      var videoContainer = thumbnailElement.parentElement;
      if (!videoContainer) {
        safeWarn('No parent container found for video thumbnail');
        return;
      }
      
      videoContainer.innerHTML = '';
    } catch (error) {
      safeWarn('Error in playVideo: ' + error.message);
    }
  }

// --- Function to handle playing a YouTube video ---
function playYouTubeVideo(thumbnailElement, youtubeVideoId) {
  // Get the container for the video (the .video-container div)
  const videoContainer = thumbnailElement.parentElement;

  // Construct the YouTube embed URL with autoplay and other parameters
  // See: https://developers.google.com/youtube/player_parameters
  const youtubeEmbedUrl = `https://www.youtube.com/embed/${youtubeVideoId}?autoplay=1&#38;rel=0&#38;modestbranding=1`;

  // Inject the YouTube iframe HTML
  videoContainer.innerHTML = `
    
    
        
        
         
            
                &#60;img src="https://cortex.persona.co/t/original/i/9e21075698d347f5661f768a85c1e9ad63100e3fd6768e0aa2c323aa5b323c8e/PaprStudios-WH.png" alt="paprtape"&#62;
                 
            
        
        

        
        
             
             EN
             中文
             
        
        
        
    
    

作品


  
    品牌与人物 —
    单曲 —
    专辑与EP —
    影视作品 —
    剧场及其他
  







  
  
  
  Burberry Olympia 手袋宣传片｜领衔出镜：Mia Kong
  &#124; Burberry &#124; 北京 &#124; 作曲、声音设计、拟音师、音频后期

  
  


  
    
      
    
    谷歌购物：夏季美妆趋势之唇彩 &#124; 谷歌 Google &#124; 纽约 &#124; 作曲、声音设计、拟音师、音频后期
   
  
 
    

    
    谷歌购物：夏季美妆趋势之棕色眼线 &#124; 谷歌 Google &#124; 纽约 &#124; 作曲、声音设计、拟音师、音频后期
  
  
 
    
    
    
    谷歌购物：夏季美妆趋势之腮红膏 &#124; 谷歌 Google &#124; 纽约 &#124; 作曲、声音设计、拟音师、音频后期
  




  
    
     
    
    谷歌购物：谷歌购物「星座主题」包饰s &#124; 谷歌 Google &#124; 纽约 &#124; 作曲、声音设计、拟音师、音频后期
  


  
    
     
    
    《塔蒂亚娜·马斯兰尼进化论》× 漫威女浩克
  &#124; Elle 杂志 &#124; 纽约 &#124; 作曲、声音设计、拟音师、录音工程、音频后期
  
  
  
  
    
     
    
    Cash App财经科普系列《如何盈利》× Victor Solomon 专访 &#124; Cash App &#124; 纽约 &#124; 作曲







 
&#60;img src="https://i.vimeocdn.com//video//1986344389" alt="A Century of The New Yorker" loading="lazy" class="image-loaded"&#62;
    
    
      A Century of The New Yorker
    
  
  
    
      A Century of The New Yorker
    
  


  
  A Century of The New Yorker &#124; The New Yorker X New York Public Library &#124; New York &#124; Composer, Sound Designer, Sound Mixer, Audio Post

  



 
    &#60;img src="https://i.vimeocdn.com//video//1977801113" alt="Video Title" loading="lazy" class="image-loaded"&#62;
    
    
      WOW Magazine: 蛇迎新歲 Year of the Snake
    
  
  
    
      WOW Magazine: 蛇迎新歲 Year of the Snake
    
  


  
   WOW Magazine: 蛇迎新歲 Year of the Snake &#124; The WOW Magazine &#124; New York &#124; Composer, Sound Designer, Foley Artist, Audio Post

  
  
  



  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1994657622" alt="Harper's Bazaar: Enfoldment" class="image-loaded"&#62;
        
        
          Harper's Bazaar: Enfoldment
        
      
    
    Harper's Bazaar: Enfoldment &#124; Harper's Bazaar &#124; Bangkok &#124; Composer, Sound Designer, Audio Post
  
  
  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1973469082" alt="Impact" class="image-loaded"&#62;
        
        
          Impact
        
      
    
    Impact (Director's Cut) &#124; Wilson X Roger Federer &#124; New York &#124; Sound Designer, Foley Artist, Audio Post
  




  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1850913285" alt="Tommy Hilfiger X Madelyn Cline at The Met Gala" class="image-loaded"&#62;
        
        
          Tommy Hilfiger X Madelyn Cline at The Met Gala
        
      
    
    Tommy Hilfiger X Madelyn Cline at The Met Gala &#124; Tommy Hilfiger &#124; New York &#124; Sound Designer, Final Mix
  
  
  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1850914470" alt="Tommy &#38;amp; Dee at The Met Gala" class="image-loaded"&#62;
        
        
          Tommy &#38;amp; Dee at The Met Gala
        
      
    
    Tommy &#38;amp; Dee at The Met Gala &#124; Tommy Hilfiger &#124; New York &#124; Composer, Sound Designer, Final Mix
  

 
    
      
        &#60;img src="https://i.vimeocdn.com//video//1850918408" alt="Tommy Hilfiger X Stray Kids at The Met Gala" class="image-loaded"&#62;
        
        
          Tommy Hilfiger X Stray Kids at The Met Gala
        
      
    
    Tommy Hilfiger X Stray Kids at The Met Gala &#124; Tommy Hilfiger &#124; New York &#124; Sound Designer, Final Mix
  


 
    
      
        &#60;img src="https://i.vimeocdn.com//video//2039747739" alt="Tommy &#38;amp; Dee at The Met Gala" class="image-loaded"&#62;
        
        
          Class Photo - Tommy Hilfiger at The Met Gala
        
      
    
    Class Photo - Tommy Hilfiger at The Met Gala &#124; Tommy Hilfiger &#124; New York &#124; Orchestrator, Sound Designer, Final Mix
  




    
  
  
    PaprTape x Burberry &#124; The gentle side of a freak with MicroFreak &#124; Arturia &#124; New York &#124; Artist, Composer, Sound Designer, Foley and Recording Engineer, Audio Post
  





  
        &#60;img src="https://i.vimeocdn.com//video//1950591504" alt="The Space Inside - Jeremy Anderson" class="image-loaded"&#62;
    
    
      The Space Inside - Jeremy Anderson
    
  
  
    
      The Space Inside - Jeremy Anderson
    
  

  
  The Space Inside - Jeremy Anderson
  &#124; Jeremy Anderson &#124; New York &#124; Composer, Sound Designer, Sound Mixer, Audio Post

  
  
  

  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1950595088" alt="The Space Inside - Jeremy Anderson Bronze Teaser" class="image-loaded"&#62;
        
        
          The Space Inside - Jeremy Anderson Bronze Teaser
        
      
    
    The Space Inside - Jeremy Anderson Bronze Teaser &#124; Jeremy Anderson &#124; New York &#124; Composer, Sound Designer, Sound Mixer, Audio Post
  
  
 
  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1950595658" alt="The Space Inside - Jeremy Anderson Tech Teaser" class="image-loaded"&#62;
        
        
          The Space Inside - Jeremy Anderson Tech Teaser
        
      
    
    The Space Inside - Jeremy Anderson Tech Teaser &#124; Jeremy Anderson &#124; New York &#124; Composer, Sound Designer, Sound Mixer, Audio Post





  
        &#60;img src="https://i.vimeocdn.com//video//1965527998" alt="Tax Relief Advocates December Commercial" class="image-loaded"&#62;
    
    
      Tax Relief Advocates December Commercial
    
  
  
    
      Tax Relief Advocates December Commercial
    
  

  
  Tax Relief Advocates December Commercial
  &#124; Tax Relief Advocates &#124; Irvine &#124; Sound Designer, Audio Post

  



  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1935879760" alt="No Tricks, Only Treats. Here at Tax Relief Advocates" class="image-loaded"&#62;
        
        
          No Tricks, Only Treats. Here at Tax Relief Advocates
        
      
    
    No Tricks, Only Treats. Here at Tax Relief Advocates &#124; Tax Relief Advocates &#124; Irvine &#124; Composer, Sound Designer, Audio Post
  
  
  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1950580694" alt="Tax Relief Advocates November Dinner" class="image-loaded"&#62;
        
        
          Tax Relief Advocates November Dinner
        
      
    
    Tax Relief Advocates November Dinner &#124; Tax Relief Advocates &#124; Irvine &#124; Sound Designer, Audio Post
  






 
    &#60;img src="https://i.vimeocdn.com//video//1547191406" alt="GAP Holiday &#124; Party" loading="lazy" class="image-loaded"&#62;
    
    
      GAP Holiday &#124; Party
    
  
  
    
      GAP Holiday &#124; Party
    
  


  
   GAP Holiday - Party &#124; Gap Inc &#124; New York &#124; Composer, Sound Designer, Audio Post

  
  


  
     
      
        &#60;img src="https://i.vimeocdn.com//video//1547189948" alt="GAP Holiday &#124; Brights" class="image-loaded"&#62;
        
        
          GAP Holiday &#124; Brights
        
      
    
    GAP Holiday - Brights &#124; Gap Inc &#124; New York &#124; Composer, Sound Designer, Audio Post
  

  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1553243354" alt="GAP Holiday &#124; Dance" class="image-loaded"&#62;
        
        
          GAP Holiday &#124; Dance
        
      
    
    GAP Holiday - Dance &#124;  Gap Inc &#124; New York &#124; Composer, Sound Designer, Audio Post
  

  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1656152728" alt="Gap Holiday Fleece" class="image-loaded"&#62;
        
        
          Gap Holiday Fleece
        
      
    
    Gap Holiday Fleece &#124; Gap Inc &#124; New York &#124; Composer, Sound Designer, Audio Post
  




  
    
      
        &#60;img src="https://i.vimeocdn.com//video//2040035202" alt="GAP Holiday Baby" class="image-loaded"&#62;
        
        
          GAP Holiday Baby
        
      
    
    GAP Holiday Baby &#124;  Gap Inc &#124; New York &#124; Composer, Sound Designer, Audio Post
  

  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1627576613" alt="Gap Denim High Rise Stride" class="image-loaded"&#62;
        
        
          Gap Denim High Rise Stride
        
      
    
    Gap Denim High Rise Stride &#124; Gap Inc &#124; New York &#124; Foley Artist, Sound Designer, Audio Post
  

  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1656151220" alt="GAP Downtown Khaki" class="image-loaded"&#62;
        
        
          GAP Downtown Khaki
        
      
    
    GAP Downtown Khaki &#124;  Gap Inc &#124; New York &#124; Foley Artist, Sound Designer, Audio Post
  
  






 
    &#60;img src="https://i.vimeocdn.com//video//1986812898" alt="Mastering Your Craft: Masayuki " mochy"="" mochizuki="" &#124;="" thom="" sweeney"="" loading="lazy" class="image-loaded"&#62;
    
    
      Mastering Your Craft: Masayuki "Mochy" Mochizuki &#124; Thom Sweeney
    
  
  
    
      Mastering Your Craft: Masayuki "Mochy" Mochizuki &#124; Thom Sweeney
    
  


  
   Mastering Your Craft: Masayuki "Mochy" Mochizuki &#124; Thom Sweeney &#124; Miami &#124; Sound Designer, Audio Post

  


  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1917643365" alt="Project" class="image-loaded"&#62;
        
        
          Thom Sweeney x Jonathan Weiss &#124; Mastering Your Craft
        
      
    
    Thom Sweeney Mastering Your Craft - Jonathan Weiss &#124; Thom Sweeney &#124; New York &#124; Sound Designer, Sound Mixer, Audio Post
  
  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1895422547" alt="Thom Sweeney X Billy Cotton &#124; Mastering Your Craft" class="image-loaded"&#62;
        
        
          Thom Sweeney X Billy Cotton &#124; Mastering Your Craft
        
      
    
    Thom Sweeney Mastering Your Craft - Billy Cotton &#124; Thom Sweeney &#124; New York &#124; Sound Mixer
  





  
        &#60;img src="https://i.vimeocdn.com//video//1799250545" alt="龍瑞盈門 Year of the Dragon" class="image-loaded"&#62;
    
    
      龍瑞盈門 Year of the Dragon
    
  
  
    
      龍瑞盈門 Year of the Dragon
    
  

  
  龍瑞盈門 Year of the Dragon
  &#124; The WOW &#124; New York &#124; Composer, Sound Designer, Audio Post

  
  
  


  
        &#60;img src="https://i.vimeocdn.com//video//1693284593" alt="Dior Beauty Director's Cut Starring Leni Klum" class="image-loaded"&#62;
    
    
      Dior Beauty Director's Cut Starring Leni Klum
    
  
  
    
      Dior Beauty Director's Cut Starring Leni Klum
    
  

  
  Dior Beauty Director's Cut Starring Leni Klum
  &#124; Dior &#124; New York &#124; Composer, Sound Designer, Audio Post

  



  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1926151146" alt="Hearts on Fire Insider" class="image-loaded"&#62;
        
        
          Hearts on Fire Insider
        
      
    
    Hearts on Fire Insider &#124; Hearts On Fire &#124; Hong Kong &#124; Composer, Sound Designer, Sound Recordist, Audio Post
  
  
  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1921934809" alt="Hearts on Fire - Store Opening" class="image-loaded"&#62;
        
        
          Hearts on Fire - Store Opening
        
      
    
    Hearts on Fire - Store Opening &#124; Hearts On Fire &#124; Hong Kong &#124; Composer, Sound Designer, Audio Post
  





  
        &#60;img src="https://i.vimeocdn.com//video//1895400550" alt="Artist Profile: Shu Lea Cheang" class="image-loaded"&#62;
    
    
      Artist Profile: Shu Lea Cheang
    
  
  
    
      Artist Profile: Shu Lea Cheang
    
  

  
  Artist Profile: Shu Lea Cheang
  &#124; LG X Guggenheim &#124; Paris &#124; Composer, Sound Designer, Sound Mixer, Audio Post

  



  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1345038341" alt="The Guggenheim Museum - Meet Us at the Gugg" class="image-loaded"&#62;
        
        
          The Guggenheim Museum - Meet Us at the Gugg
        
      
    
    Member's Ad - Meet Us at the Gugg &#124; The Guggenheim Museum &#124; New York &#124; Composer, Sound Designer
  
  
  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1674342254" alt="Farah Al Qasimi - LG Guggenheim Art &#38;amp; Technology Initiative" class="image-loaded"&#62;
        
        
          Farah Al Qasimi - LG Guggenheim Art &#38;amp; Technology Initiative
        
      
    
    Farah Al Qasimi - LG Guggenheim Art &#38;amp; Technology Initiative &#124; LG X Guggenheim &#124; New York &#124; Composer, Sound Designer, Sound Mixer, Audio Post
  




  
        &#60;img src="https://i.vimeocdn.com//video//1674420094" alt="Stephanie Dinkins -  LG Guggenheim Award" class="image-loaded"&#62;
    
    
      Stephanie Dinkins -  LG Guggenheim Award
    
  
  
    
      Stephanie Dinkins -  LG Guggenheim Award
    
  

  
  Stephanie Dinkins -  LG Guggenheim Award
  &#124; LG X Guggenheim &#124; New York &#124; Composer, Sound Designer, Sound Mixer, Audio Post

  





  
        &#60;img src="https://i.vimeocdn.com//video//1415561769" alt="Nepenthes New York X On Running: Cloudmonster" class="image-loaded"&#62;
    
    
      Nepenthes New York X On Running: Cloudmonster
    
  
  
    
      Nepenthes New York X On Running: Cloudmonster
    
  

  
  Nepenthes New York X On Running: Cloudmonster
  &#124; Nepenthes New York X On Running &#124; New York &#124; Composer, Sound Designer, Foley and Recording Engineer, Audio Post

  



  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1655002780" alt="包先生 Mr. Bag X Tory Burch" class="image-loaded"&#62;
        
        
          包先生 Mr. Bag X Tory Burch
        
      
    
    包先生 Mr. Bag X Tory Burch &#124; Tory Burch &#124; Shanghai &#124; Composer, Sound Designer, Audio Post
  
  
 
  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1655007108" alt="Melinda Wang X Tory Burch" class="image-loaded"&#62;
        
        
          Melinda Wang X Tory Burch
        
      
    
    Melinda Wang X Tory Burch &#124; Tory Burch &#124; Shanghai &#124; Sound Designer, Music Editor, Audio Post



  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1655004992" alt="YUYU X Tory Burch" class="image-loaded"&#62;
        
        
          YUYU X Tory Burch
        
      
    
    YUYU X Tory Burch
  &#124; Tory Burch &#124; Shanghai &#124; Composer, Sound Designer, Audio Post
  





  
        &#60;img src="https://i.vimeocdn.com//video//969917098" alt="Veegee 徐若侨 - Baby's Couch (Prod. by PaprTape)" class="image-loaded"&#62;
    
    
      Veegee 徐若侨 - Baby's Couch (Prod. by PaprTape)
    
  
  
    
      Veegee 徐若侨 - Baby's Couch (Prod. by PaprTape)r
    
  

  
  Veegee徐若侨 X Nike X Super
  &#124; SUPER &#124; Beijing &#124; Composer, Music Producer

  




  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1654746343" alt="Nana Ou Yang X Super" class="image-loaded"&#62;
        
        
          Nana Ou Yang X Super
        
      
    
    Nana Ou Yang X Super &#124; SUPER &#124; Taipei &#124; Composer, Sound Designer, Audio Post
  

 
    
 
        &#60;img src="https://i.vimeocdn.com//video//1655427046" alt="Harper's Bazaar Thailand" class="image-loaded"&#62;
        
        
          Harper's Bazaar Thailand
        
      
    
    Harper's Bazaar Thailand &#124; Harper's Bazaar &#124; Bangkok &#124; Composer, Sound Designer, Foley Audio Post
  
  
 
    
     
        &#60;img src="https://i.vimeocdn.com//video//2040306968" alt="Designer Spotlight: Marrisa Wilson NY" class="image-loaded"&#62;
        
        
          Designer Spotlight: Marrisa Wilson NY
        
      
    
    Designer Spotlight: Marrisa Wilson NY  Saks OFF 5TH &#124; New York &#124; Composer, Sound Designer, Recording Engineer, Audio Post
  





  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1445334011" alt="L'OFFICIEL – BURBERRY LOLA BAG" class="image-loaded"&#62;
        
        
          L'OFFICIEL – BURBERRY LOLA BAG
        
      
    
    L'Officiel June / July Cover Story &#124; L'Officiel Mexico X Burberry &#124; Mexico City &#124; Composer, Sound Designer, Foley and Recording Engineer, Audio Post
  

 
    
 
        &#60;img src="https://i.vimeocdn.com//video//1534411014" alt="Bernard James: FUNGI" class="image-loaded"&#62;
        
        
          Bernard James: FUNGI
        
      
    
    Bernard James: FUNGI Bernard James &#124; New York &#124; Composer, Audio Post
  
  
 
    
     
        &#60;img src="https://i.vimeocdn.com//video//2040314342" alt="Hypebae - On the Open Water feat. Olivia Cheng" class="image-loaded"&#62;
        
        
          Hypebae - On the Open Water feat. Olivia Cheng
        
      
    
    Hypebae - On the Open Water feat. Olivia Cheng &#124; Hypbeast X Take Me Fishing &#124; New York &#124; Recording Engineer
  





  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1740302892" alt="Hypebae X Jordan feat. Amiraa Vainqueur" class="image-loaded"&#62;
        
        
          Hypebae X Jordan feat. Amiraa Vainqueur
        
      
    
    Hypebae X Jordan feat. Amiraa Vainqueur &#124; Hypebeast X Jordan Brand &#124; New York &#124; Recording Engineer
  


    
     
        &#60;img src="https://i.vimeocdn.com//video//1738556703" alt="Hypebeast X Oakley -  Elie Kimbembe" class="image-loaded"&#62;
        
        
          Hypebeast X Oakley -  Elie Kimbembe
        
      
    
    Hypebeast X Oakley -  Elie Kimbembe &#124; Hypebeast X Oakley &#124; New York &#124; Recording Engineer
  

 
    
 
        &#60;img src="https://i.vimeocdn.com//video//1534395280" alt="Hypebae X Netflix: Sandy Liang" class="image-loaded"&#62;
        
        
          Hypebae X Netflix: Sandy Liang
        
      
    
    Hypebae X Netflix: Sandy Liang &#124; Hypebeast X Netfleix &#124; New York &#124; Recording Engineer
  





  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1488862759" alt="Jean Paul Gautier X Gigi Goode -  Pride Tour" class="image-loaded"&#62;
        
        
          Jean Paul Gautier X Gigi Goode -  Pride Tour
        
      
    
    Jean Paul Gautier X Gigi Goode -  Pride Tour &#124; Jean Paul Gautier &#124; New York &#124; Recording Engineer
  


    
     
        &#60;img src="https://i.vimeocdn.com//video//1663769138" alt="Sulwhasoo X Thurman 猫一杯" class="image-loaded"&#62;
        
        
          Sulwhasoo X Thurman 猫一杯
        
      
    
    Sulwhasoo X Thurman 猫一杯 &#124; Sulwahsoo &#124; Shanghai &#124; Recording Engineer
  

 
    
 
        &#60;img src="https://i.vimeocdn.com//video//1490163111" alt="Mother's Day - Girl Inc x Saks Off 5th" class="image-loaded"&#62;
        
        
          Mother's Day - Girl Inc x Saks Off 5th
        
      
    
    Mother's Day - Girl Inc x Saks Off 5th &#124; Girl Inc x Saks Off 5th &#124; New York &#124; Composer, Sound Designer
  





  
        &#60;img src="https://i.vimeocdn.com//video//2040329070" alt="Minimalissimo Selection: Architecture" class="image-loaded"&#62;
    
    
      Minimalissimo Selection: Architecture
    
  
  
    
      Minimalissimo Selection: Architecture
    
  

  
  Minimalissimo Selection: Architecture
  &#124; Minimalissimo &#124; New York &#124; Composer, Sound Designer, Foley, Audio Post

  




  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1593532927" alt="The WOW Magazine - 玉兔迎春 Year of the Rabbit" class="image-loaded"&#62;
        
        
          The WOW Magazine - 玉兔迎春 Year of the Rabbit
        
      
    
    玉兔迎春 Year of the Rabbit &#124; The WOW Magazine &#124; New York &#124; Composer, Sound Designer, Foley Artist, Audio Post
  


    
     
        &#60;img src="https://i.vimeocdn.com//video//1666437944" alt="CA1 CA2 Beauty Reel" class="image-loaded"&#62;
        
        
          CA1 CA2 Beauty Reel
        
      
    
    CA1 CA2 Beauty Reel &#124; CA1 CA2 &#124; New York &#124; Composer, Sound Designer, Audio Post
  

 
    
 
        &#60;img src="https://i.vimeocdn.com//video//1096724081" alt="PARS UNUM CORPA" class="image-loaded"&#62;
        
        
          PARS UNUM CORPA
        
      
    
    PARS UNUM CORPA &#124; Pars Unum &#124; New York &#124; Composer, Sound Designer, Audio Post
  





  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1553226496" alt="On Demand: DVSN on How Jermaine Dupri Helped Craft 'Working On My Karma'" class="image-loaded"&#62;
        
        
          On Demand: DVSN on How Jermaine Dupri Helped Craft 'Working On My Karma'
        
      
    
    On Demand: DVSN on How Jermaine Dupri Helped Craft 'Working On My Karma' &#124; Okayplayer &#124; New York &#124; Recording Engineer, Sound Designer, Music Editor, Audio Post
  


    
     
        &#60;img src="https://i.vimeocdn.com//video//939728242" alt="The Letter - Burberry Monogram Pocket Bag Campaign" class="image-loaded"&#62;
        
        
          The Letter - Burberry Monogram Pocket Bag Campaign
        
      
    
    The Letter - Burberry Monogram Pocket Bag Campaign &#124; Burberry &#124; Beijing &#124; Composer, Sound Designer, Voice Over, Foley Artist
  

 
    
 
        &#60;img src="https://i.vimeocdn.com//video//939718921" alt="Marshall Emberton" class="image-loaded"&#62;
        
        
          Marshall Emberton
        
      
    
    Marshall Emberton &#124; Marshall Headphones &#124; Beijing &#124; Composer, Sound Designer, Voice Over, Foley Artist, Audio Post
  





  
    
      
        &#60;img src="https://i.vimeocdn.com//video//940139952" alt="SHANG1 - GameChanger" class="image-loaded"&#62;
        
        
          SHANG1 - Game Changer
        
      
    
    SHANG1 - Game Changer &#124; SHANG1 BY SHANGYI &#124; Beijing &#124; Sound Designer, Audio Post
  


    
     
        &#60;img src="https://i.vimeocdn.com//video//1021164071" alt="Mongo Cycle 牧歌时空" class="image-loaded"&#62;
        
        
          Mongo Cycle 牧歌时空
        
      
    
    Mongo Cycle 牧歌时空 &#124; Mongo Cycle 牧歌时空 &#124; Beijing &#124; Sound Designer, Foley Artist, Audio Post
  

 
    
 
        &#60;img src="https://i.vimeocdn.com//video//940112121" alt="Burberry 新疆" class="image-loaded"&#62;
        
        
          Burberry 新疆
        
      
    
    Burberry 新疆 &#124; Burberry &#124; Beijing &#124; Voice Over, Recording Engineer, Audio Post
  






  
        &#60;img src="https://i.vimeocdn.com//video//1038843793" alt="Xtep All For Flying Dynamic Foam X Spring Running Shoes" class="image-loaded"&#62;
    
    
      Xtep All For Flying Dynamic Foam X Spring Running Shoes
    
  
  
    
      Xtep All For Flying Dynamic Foam X Spring Running Shoes
    
  

  
  Xtep All For Flying Dynamic Foam X Spring Running Shoes
  &#124; Xtep &#124; Beijing &#124; Composer, Sound Designer, Foley Artist, Audio Post

  




  
</description>
		
		<excerpt>PaprTape Portfolio                                                                                                                                               ...</excerpt>

		<!--<wfw:commentRss></wfw:commentRss>-->

	</item>
		
		
	<item>
		<title>old</title>
				
		<link>http://www.paprtape.com/old</link>

		<comments></comments>

		<pubDate>Thu, 24 Jul 2025 15:44:09 +0000</pubDate>

		<dc:creator>paprtape</dc:creator>
		
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">457415</guid>

		<description>
  
  Discography
  
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      padding: 20px;
    }

    a {
      color: #333;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    a:hover {
      color: #666;
    }

    h1 {
      margin-bottom: 1rem;
    }

    h2 {
      margin-bottom: 0.5rem;
      font-size: 1.2rem;
    }

    small {
      display: block;
      margin-top: 0.5rem;
      margin-bottom: 2rem;
    }

    .header-logo {
      margin-bottom: 1rem;
    }

    .navigation {
      margin-bottom: 2rem;
    }

    .section-title {
      margin-top: 2rem;
      margin-bottom: 1rem;
    }

    .video-item {
      margin-bottom: 2rem;
    }

    .section-divider {
      margin: 3rem 0;
    }

    /* Modern Flexbox Grid System */
    .row {
      display: flex;
      flex-wrap: wrap;
      margin: 0 -10px;
    }

    .column {
      flex: 0 0 50%;
      padding: 10px;
    }

    .column3 {
      flex: 0 0 33.33%;
      padding: 10px;
    }

    .column4 {
      flex: 0 0 25%;
      padding: 10px;
    }

    /* Video Container Styles */
    .video-container {
      position: relative;
      padding-bottom: 56.25%;
      margin-bottom: 0.5rem;
      transition: transform 0.3s ease;
    }

    .video-container:hover {
      transform: translateY(-2px);
    }

    .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    /* Vertical Video Container */
    .video-container-vertical {
      position: relative;
      padding-bottom: 177.78%;
      margin-bottom: 0.5rem;
    }

    .video-container-vertical iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    /* Custom Aspect Ratio Containers */
    .aspect-ratio-66 {
      padding-bottom: 66.67%;
    }

    .aspect-ratio-100 {
      padding-bottom: 100%;
    }

    .aspect-ratio-125 {
      padding-bottom: 125%;
    }

    .aspect-ratio-42 {
      padding-bottom: 42.55%;
    }

    .aspect-ratio-50 {
      padding-bottom: 50%;
    }

    .aspect-ratio-53 {
      padding-bottom: 52.79%;
    }

    .aspect-ratio-56 {
      padding-bottom: 55.96%;
    }

    /* Media Queries for Responsiveness */
    @media (max-width: 992px) {
      .column4 {
        flex: 0 0 50%;
      }
    }

    @media (max-width: 768px) {
      .column, .column3 {
        flex: 0 0 100%;
      }
      
      .column4 {
        flex: 0 0 50%;
      }
    }

    @media (max-width: 576px) {
      .column4 {
        flex: 0 0 100%;
      }
    }

    /* Dark Mode Support */
    @media (prefers-color-scheme: dark) {
      body {
        background-color: #121212;
        color: #f1f1f1;
      }
      
      a {
        color: #bb86fc;
      }
      
      a:hover {
        color: #03dac6;
      }
    }

    /* Animation */
    .fade-in {
      animation: fadeIn 0.5s ease-in;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
  




  
    
      &#60;img src="https://cortex.persona.co/t/original/i/9e21075698d347f5661f768a85c1e9ad63100e3fd6768e0aa2c323aa5b323c8e/PaprStudios-WH.png" width="9.72" height="50" alt="paprtape" style="width: 9px; height: 50px;" loading="lazy"&#62;
    
  


Discography


  
    Brands &#38;amp; People — 
    Singles — 
    Albums &#38;amp; EPs — 
    Films — 
    Theater &#38;amp; More
  




 
  
    Burberry Olympia Bag Starring Mia Kong &#124; Burberry &#124; Beijing &#124; Composer, Sound Designer, Foley Artist, Audio Post
  



  
    
    
      Shop with Google Summer Beauty Trends: Lip Gloss &#124; Google &#124; New York &#124; Composer, Sound Designer, Foley Artist, Audio Post
    
  

  
   
    
      Shop with Google Summer Beauty Trends: Brown Eyeliner &#124; Google &#124; New York &#124; Composer, Sound Designer, Foley Artist, Audio Post
    
  
   
   
    
      Shop with Google Summer Beauty Trends: Cream Blush &#124; Google &#124; New York &#124; Composer, Sound Designer, Foley Artist, Audio Post
    
  



  
 
  
    Shop with Google: The Signs As…Bag Charms &#124; Google &#124; New York &#124; Composer, Sound Designer, Foley Artist, Audio Post
  
    

  
    How Do They Make Money: Victor Solomon &#124; Cash App &#124; New York &#124; Composer, Music Maker
  
  



 
  
    A Century of The New Yorker &#124; The New Yorker X New York Public Library &#124; New York &#124; Composer, Sound Designer, Sound Mixer, Audio Post
  




  
  
    WOW Magazine: 蛇迎新歲 Year of the Snake &#124; The WOW Magazine &#124; New York &#124; Composer, Sound Designer, Foley Artist, Audio Post
  




  
  
    Mastering Your Craft: Masayuki "Mochy" Mochizuki &#124; Thom Sweeney &#124; Miami &#124; Sound Designer, Audio Post
  



  
   
    
      Thom Sweeney Mastering Your Craft - Jonathan Weiss &#124; Thom Sweeney &#124; New York &#124; Sound Designer, Sound Mixer, Audio Post
  
  
    
      Thom Sweeney Mastering Your Craft - Billy Cotton &#124; Thom Sweeney &#124; New York &#124; Sound Mixer





  
     
    
      Harper's Bazaar - Enfoldment &#124; Harper's Bazaar &#124; Bangkok &#124; Composer, Sound Designer, Audio Post
    
   


  
 
    
      Impact (Director's Cut) &#124; Wilson X Roger Federer &#124; New York &#124; Sound Designer, Foley Artist, Audio Post
    
  





  
    
      
    
    
      Tommy Hilfiger X Madelyn Cline at The Met Gala &#124; Tommy Hilfiger &#124; New York &#124; Sound Designer, Final Mix
    
  
  
  
    
      
    
    
      Tommy &#38;amp; Dee at The Met Gala &#124; Tommy Hilfiger &#124; New York &#124; Composer, Sound Designer, Final Mix
    
  
  
  
    
      
    
    
      Tommy Hilfiger X Stray Kids at The Met Gala &#124; Tommy Hilfiger &#124; New York &#124; Sound Designer, Final Mix
    
  
  
  
    
      
    
    
      Class Photo - Tommy Hilfiger at the Met Gala &#124; Tommy Hilfiger &#124; New York &#124; Orchestrator, Sound Designer, Final Mix
    
  




  
    
  
  
    PaprTape x Burberry &#124; The gentle side of a freak with MicroFreak &#124; Arturia &#124; New York &#124; Artist, Composer, Sound Designer, Foley and Recording Engineer, Audio Post
  




  
    
  
  
    The Space Inside - Jeremy Anderson &#124; Jeremy Anderson &#124; New York &#124; Composer, Sound Designer, Sound Mixer, Audio Post
  



  
    
      
    
    
      The Space Inside - Jeremy Anderson Bronze Teaser &#124; Jeremy Anderson &#124; New York &#124; Composer, Sound Designer, Sound Mixer, Audio Post
    
  
  
  
    
      
    
    
      The Space Inside - Jeremy Anderson Tech Teaser &#124; Jeremy Anderson &#124; New York &#124; Composer, Sound Designer, Sound Mixer, Audio Post
    
  




  
    
  
  
    Tax Relief Advocates - December Commercial &#124; Tax Relief Advocates &#124; Irvine &#124; Sound Designer, Audio Post
  



  
    
      
    
    
      No Tricks, Only Treats. Here at Tax Relief Advocates &#124; Tax Relief Advocates &#124; Irvine &#124; Composer, Sound Designer, Audio Post
    
  
  
  
    
      
    
    
      Tax Relief Advocates November Dinner &#124; Tax Relief Advocates &#124; Irvine &#124; Sound Designer, Audio Post
    
  




  
    
  
  
    龍瑞盈門 Year of the Dragon 2024 &#124; The WOW &#124; New York &#124; Composer, Sound Designer, Audio Post
  




  
    
  
  
    Dior Beauty Director's Cut Starring Leni Klum &#124; Dior &#124; New York &#124; Composer, Sound Designer, Audio Post
  




  
    
      
    
    
      Hearts On Fire - Insider &#124; Hearts On Fire &#124; Hong Kong &#124; Composer, Sound Designer, Sound Recordist, Audio Post
    
  
  
  
    
      
    
    
      Hearts On Fire - Store Opening &#124; Hearts On Fire &#124; Hong Kong &#124; Composer, Sound Designer, Audio Post
    
  




  
    
  
  
    Artist Profile: Shu Lea Cheang &#124; LG X Guggenheim &#124; Paris &#124; Composer, Sound Designer, Sound Mixer, Audio Post
  




  
    
      
    
    
      Member's Ad - Meet Us at the Gugg &#124; The Guggenheim Museum &#124; New York &#124; Composer, Sound Designer
    
  
  
  
    
      
    
    
      Farah Al Qasimi - LG Guggenheim Art &#38;amp; Technology Initiative &#124; LG X Guggenheim &#124; New York &#124; Composer, Sound Designer, Sound Mixer, Audio Post
    
  



  
    
  
  
    Stephanie Dinkins - LG Guggenheim Award &#124; LG X Guggenheim &#124; New York &#124; Composer, Sound Designer, Sound Mixer, Audio Post
  




  
    
      
    
    
      High Rise Stride &#124; Gap Inc &#124; New York &#124; Foley Artist, Sound Designer, Audio Post
    
  
  
  
    
      
    
    
      Downtown Khaki &#124; Gap Inc &#124; New York &#124; Foley Artist, Sound Designer, Audio Post
    
  



  
    
      
    
    
      GAP Holiday - Party &#124; Gap Inc &#124; New York &#124; Composer, Sound Designer, Audio Post
    
  

  
    
      
    
    
      GAP Holiday - Fleece &#124; Gap Inc &#124; New York &#124; Composer, Sound Designer, Audio Post
    
  



  
    
      
    
    
      GAP Holiday - Brights &#124; Gap Inc &#124; New York &#124; Composer, Sound Designer, Audio Post
    
  
  
  
    
      
    
    
      GAP Holiday - Baby Gap &#124; Gap Inc &#124; New York &#124; Composer, Sound Designer, Audio Post
    
  



  
    
  
  
    GAP Holiday - Party &#124; Gap Inc &#124; New York &#124; Composer, Sound Designer, Audio Post
  




  
    
  
  
    The Evolutionary Theory of Tatiana Maslany &#124; Elle Magazine &#124; New York &#124; Composer, Sound Designer, Foley and Recording Engineer, Audio Post
  




  
    
      
    
    
      Hypebae X Jordan feat. Amiraa Vainqueur &#124; Jordan Brand &#124; New York &#124; Recording Engineer
    
  

  
    
      
    
    
      Hypebae - Out on the Open Water feat. Olivia Cheng &#124; Take Me Fishing &#124; New York &#124; Recording Engineer
    
  

  
    
      
    
    
      Hypebeast X Oakley - Elie Kimbembe &#124; Oakley &#124; New York &#124; Recording Engineer
    
  




  
    
      
    
    
      Year of the Rabbit &#124; The WOW Magazine &#124; New York &#124; Music Composer, Sound Designer, Audio Post
    
  
  
  
    
      
    
    
      'On Demand:' DVSN on How Jermaine Dupri Helped Craft 'Working On My Karma' &#124; Okayplayer &#124; New York &#124; Recording Engineer, Sound Designer, Music Editor, Audio Post
    
  




  
    
      
    
    
      L'Officiel June / July Cover Story &#124; L'Officiel Mexico X Burberry &#124; Mexico City &#124; Composer, Sound Designer, Foley and Recording Engineer, Audio Post
    
  
  
  
    
      
    
    
      Harper's Bazaar Thailand &#124; Harper's Bazaar &#124; Bangkok &#124; Composer, Sound Designer, Foley Audio Post
    
  




  
    
      
    
    
      Nana Ou Yang X Super &#124; SUPER &#124; Taipei &#124; Composer, Sound Designer, Audio Post
    
  
  
  
    
      
    
    
      Designer Spotlight: Marrisa Wilson NY &#124; Saks OFF 5TH &#124; New York &#124; Composer, Sound Designer, Recording Engineer, Audio Post
    
  




  
    
  
  
    On Running Cloudmonster &#124; Nepenthes New York X On Running &#124; New York &#124; Composer, Sound Designer, Foley and Recording Engineer, Audio Post
  




  
    
      
    
    
      FUNGI - 10/26/2022 &#124; Bernard James &#124; New York &#124; Composer
    
  
  
  
    
      
    
    
      Veegee徐若侨 X Nike X Super &#124; SUPER &#124; Beijing &#124; Composer, Mixing &#38;amp; Mastering Engineer
    
  




  
    
      
    
    
      Jean Paul Gautier X Gigi Goode - Pride Tour &#124; Jean Paul Gautier &#124; New York &#124; Audio Engineer
    
  

  
    
      
    
    
      Hypebeast X Netflix: Sandy Liang &#124; Hypebae &#124; New York &#124; Recording Engineer
    
  
  
  
    
      
    
    
      Mother's Day &#124; GIrl Inc x Saks Off 5th &#124; New York &#124; Composer, Sound Designer
    
  




  
    
      
    
    
      Mr. Bag X Tory Burch &#124; Tory Burch &#124; Shanghai &#124; Composer, Sound Designer, Audio Post
    
  
  
  
    
      
    
    
      Melinda Wang X Tory Burch &#124; Tory Burch &#124; Shanghai &#124; Sound Designer, Music Editor, Audio Post
    
  

  
    
      
    
    
      YUYU X Tory Burch &#124; Tory Burch &#124; Shanghai &#124; Composer, Sound Designer, Audio Post
    
  




  
    
      
    
    
      Pars Unum Corpa &#124; Pars Unum &#124; New York &#124; Composer Sound Designer, Audio Post
    
  
  
  
    
      
    
    
      Xtep All For Flying Dynamic Foam X Spring Running Shoes &#124; Xtep &#124; Beijing &#124; Composer, Foley Artist, Sound Designer, Audio Post
    
  




  
    
      
    
    
      Sulwhasoo X Thurman猫一杯 &#124; Sulwahsoo &#124; Shanghai &#124; Recording Engineer
    
  
  
  
    
      
    
    
      CA1 CA2 Beauty Reel &#124; CA1 CA2 &#124; New York &#124; Composer, Sound Designer, Audio Post
    
  




  
    
      
    
    
      Burberry "The Letter" &#124; Monogram Pocket Bag Campaign &#124; Burberry &#124; Beijing &#124; Composer, Sound Designer, Voice Over, Foley Artist
    
  
  
  
    
      
    
    Mongo Cycle &#124; Mongo Cycle &#124; Beijing &#124; Sound Designer, Foley Artist, Audio Post
  




  
    
  
  
    Minimalissimo Selection: Architecture &#124; Minimalissimo &#124; New York &#124; Composer, Sound Designer, Foley, Audio Post
  




  
    
      
    
    
      Burberry Fall/Winter &#124; Burberry &#124; Beijing &#124; Voice Over, Recording Engineer, Audio Post
    
  
  
  
    
      
    
    
      SHANG1 BY SHANG YI Fall/Winter &#124; SHANG1 by Shang Yi &#124; Beijing &#124; Sound Designer, Audio Post
    
  




  
    
  
  
    Marshall Emberton &#124; Marshall Headphones &#124; Beijing &#124; Composer, Sound Designer, Voice Over, Foley Artist, Audio Post
  



  
</description>
		
		<excerpt>Discography                                 Discography          Brands &#38;amp; People —      Singles —      Albums &#38;amp; EPs —      Films —     ...</excerpt>

		<!--<wfw:commentRss></wfw:commentRss>-->

	</item>
		
		
	<item>
		<title>testing3</title>
				
		<link>http://www.paprtape.com/testing3</link>

		<comments></comments>

		<pubDate>Wed, 23 Jul 2025 00:21:18 +0000</pubDate>

		<dc:creator>paprtape</dc:creator>
		
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">457398</guid>

		<description>
  PaprTape Portfolio
  
  
  

    /* --- Base Styles --- */
    body {
      font-family: sans-serif;
      margin: 0;
      padding: 2rem;
      background: #fff;
      color: #222;
    }

    /* --- Grid Layouts --- */
    .video-grid-4,
    .video-grid-3,
    .video-grid-2 {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem; /* Creates space between items (columns and rows) */
      margin-bottom: 0;
      padding: 0;
    }

    .video-grid-4 .video-block {
      flex: 1 1 calc(25% - 1.5rem); /* Four columns */
    }

    .video-grid-3 .video-block {
      flex: 1 1 calc(33.333% - 1.5rem); /* Three columns */
    }

    .video-grid-2 .video-block {
      flex: 1 1 calc(50% - 1.5rem); /* Two columns */
    }

    /* --- Individual Video Block --- */
    .video-block {
      display: flex;
      flex-direction: column;
      /* Restore margin-bottom for spacing between grid items */
      /* Adjust this value to control space between rows of videos */
      margin-bottom: 2rem; /* ====== ADJUST FOR ROW SPACING ====== */
    }

    /* Target direct children for animation */
    .video-block &#62; .video-container {
        opacity: 0;
        /* Remove margin-bottom to prevent double-spacing */
        margin-bottom: 0;
        flex-shrink: 0;
        will-change: transform, opacity;
    }

    /* Target the direct child small (caption) */
    .video-block &#62; small {
        opacity: 0;
        /* Remove padding-top */
        padding-top: 0;
        /* Use margin-top for spacing below the video container */
        /* Adjust this value to control space between video and text */
        margin-top: 0.5rem; /* ====== ADJUST FOR VIDEO-TEXT SPACING ====== */
        margin-bottom: 0; /* Explicitly remove any bottom margin */
        min-height: 1.3em;
        flex-shrink: 0;
        will-change: transform, opacity;
    }

     /* Apply entrance/scroll animation to the container */
    .video-block &#62; .video-container.animate-enter,
    .video-block &#62; .video-container.animate-scroll {
        opacity: 1;
        -webkit-animation: fadeInUpBlock 0.6s ease-out forwards;
        animation: fadeInUpBlock 0.6s ease-out forwards;
    }

    /* Apply entrance/scroll animation to the caption */
    .video-block &#62; small.animate-enter,
    .video-block &#62; small.animate-scroll {
        opacity: 1;
        -webkit-animation: fadeInUpCaption 0.6s ease-out 0.1s forwards;
        animation: fadeInUpCaption 0.6s ease-out 0.1s forwards;
    }

    /* --- Video Container &#38; Thumbnail --- */
    .video-container {
      position: relative;
      width: 100%;
      max-width: 100%;
      padding-top: 56.25%; /* Default 16:9 Aspect Ratio */
      background: #000;
      border-radius: 6px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      margin-bottom: 0; /* Explicitly remove margin */
    }

    .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      margin: 0;
    }

    /* --- Custom Aspect Ratios --- */
    .aspect-ratio-42 { padding-top: 42.55%; }
    .aspect-ratio-50 { padding-top: 50%; }
    .aspect-ratio-53 { padding-top: 52.79%; }
    .aspect-ratio-56 { padding-top: 55.96%; }
    .aspect-ratio-66 { padding-top: 66.67%; }
    .aspect-ratio-100 { padding-top: 100%; }
    .aspect-ratio-125 { padding-top: 125%; }
    .aspect-ratio-177 { padding-top: 177.78%; }
    .aspect-ratio-auto { padding-top: auto !important; }

    .video-thumbnail,
    .vimeo-player {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .video-thumbnail img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      display: block;
      -webkit-transition: -webkit-transform 0.3s ease;
      transition: -webkit-transform 0.3s ease;
      -o-transition: transform 0.3s ease;
      -moz-transition: transform 0.3s ease;
      transition: transform 0.3s ease;
      transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    }

    .video-thumbnail:hover img {
      -webkit-transform: scale(1.03);
      -moz-transform: scale(1.03);
      -ms-transform: scale(1.03);
      -o-transform: scale(1.03);
      transform: scale(1.03);
    }

    /* --- Play Button --- */
    .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 70px;
      height: 70px;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 50%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-transition: all 0.2s ease;
      -o-transition: all 0.2s ease;
      -moz-transition: all 0.2s ease;
      transition: all 0.2s ease;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      z-index: 2;
      will-change: transform;
    }

    .play-button:hover {
      -webkit-transform: translate(-50%, -50%) scale(1.05);
      -moz-transform: translate(-50%, -50%) scale(1.05);
      -ms-transform: translate(-50%, -50%) scale(1.05);
      -o-transform: translate(-50%, -50%) scale(1.05);
      transform: translate(-50%, -50%) scale(1.05);
      background: rgba(255, 255, 255, 1);
    }

    .play-button::before {
      content: "";
      border-style: solid;
      border-width: 14px 0 14px 22px;
      border-color: transparent transparent transparent #222;
      margin-left: 3px;
    }

    .title-bar {
      position: absolute;
      top: 0;
      left: 0;
      background: rgba(0, 0, 0, 0.6);
      color: white;
      font-size: 14px;
      padding: 6px 10px;
      max-width: 80%;
      border-bottom-right-radius: 4px;
      z-index: 2;
    }

    .title-bar a {
      color: white;
      text-decoration: none;
    }

    .title-bar a:hover {
      text-decoration: underline;
    }

    /* --- Hover Effects --- */
    .video-thumbnail:hover,
    .vimeo-player:hover {
      cursor: pointer;
    }

    /* --- General small style (Overridden for video captions) --- */
    /* This might apply to other  elements, but video captions are specifically styled */
    small {
      display: block;
      font-size: 0.85rem;
      color: #555;
      /* Removed general margins here to let specific .video-block &#62; small handle it */
    }

    /* --- Responsive --- */
    /* Tablet Responsive (768px - 900px) */
    @media (max-width: 900px) and (min-width: 769px) {
      .video-grid-4 .video-block,
      .video-grid-3 .video-block {
        flex: 1 1 calc(50% - 1rem); /* Two columns on tablets */
      }
      .video-grid-2 .video-block {
        flex: 1 1 100%; /* Single column for 2-column grid on tablets */
      }
      
      /* Reduce gap on tablets */
      .video-grid-4,
      .video-grid-3,
      .video-grid-2 {
        gap: 1.5rem;
      }
    }

    /* Mobile Responsive (481px - 768px) */
    @media (max-width: 768px) and (min-width: 481px) {
      .video-grid-4 .video-block,
      .video-grid-3 .video-block {
        flex: 1 1 calc(50% - 1rem); /* Two columns on large phones */
      }
      .video-grid-2 .video-block {
        flex: 1 1 100%; /* Single column for 2-column grid */
      }
      
      /* Reduce gap on mobile */
      .video-grid-4,
      .video-grid-3,
      .video-grid-2 {
        gap: 1rem;
      }
      
      /* Reduce video block margin */
      .video-block {
        margin-bottom: 1.5rem;
      }
    }

    /* Small Mobile Responsive (up to 480px) */
    @media (max-width: 480px) {
      .video-grid-4 .video-block,
      .video-grid-3 .video-block,
      .video-grid-2 .video-block {
        flex: 1 1 100%; /* Single column on small phones */
      }
      
      /* Minimal gap on small phones */
      .video-grid-4,
      .video-grid-3,
      .video-grid-2 {
        gap: 1rem;
      }
      
      /* Reduce video block margin */
      .video-block {
        margin-bottom: 1.5rem;
      }
      
      /* Adjust padding for small screens */
      body {
        padding: 1rem;
      }
    }

    /* Touch-friendly improvements for mobile */
    @media (max-width: 768px) {
      /* Larger touch targets */
      .play-button {
        width: 80px;
        height: 80px;
      }
      
      .play-button::before {
        border-width: 16px 0 16px 24px;
      }
      
      /* Better hover states for touch devices */
      .video-thumbnail:active img {
        transform: scale(1.02);
      }
      
      /* Improve text readability on mobile */
      .title-bar {
        font-size: 12px;
        padding: 4px 8px;
        max-width: 85%;
      }
    }

    /* Landscape orientation adjustments */
    @media (max-width: 768px) and (orientation: landscape) {
      .video-grid-4 .video-block,
      .video-grid-3 .video-block {
        flex: 1 1 calc(33.333% - 1rem); /* Three columns in landscape */
      }
      .video-grid-2 .video-block {
        flex: 1 1 calc(50% - 1rem); /* Two columns in landscape */
      }
    }

    /* --- Skeleton/Loading Animation CSS --- */
    @keyframes loadingAnimation {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }
    @-webkit-keyframes loadingAnimation {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }

    .video-thumbnail.loading {
      background-color: #e0e0e0; /* Base color for the skeleton */
      border-radius: 6px;
      overflow: hidden;
      position: relative;
      /* Apply shimmer effect to the thumbnail container itself */
      background-image: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
      );
      background-size: 200% 100%;
      background-repeat: no-repeat;
      animation: loadingAnimation 1.5s infinite linear;
    }

    .video-thumbnail.loading img {
      opacity: 0; /* Hide the image initially */
      transition: opacity 0.5s ease-in-out; /* Smooth fade-in for the image */
      will-change: opacity; /* Optimize for animation */
    }

    .video-thumbnail img.image-loaded {
      opacity: 1; /* Show the image once loaded */
    }

    /* Ensure play button and title bar are always above the skeleton and image */
    .video-thumbnail.loading .play-button,
    .video-thumbnail.loading .title-bar {
      z-index: 3;
    }
    /* --- End of Skeleton/Loading Animation CSS --- */


    /* --- Entrance and Scroll Animations --- */
    @keyframes fadeInUpBlock {
      from {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
      }
    }
    @-webkit-keyframes fadeInUpBlock {
      from { opacity: 0; -webkit-transform: translateY(20px); transform: translateY(20px); }
      to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
    }

    @keyframes fadeInUpCaption {
      from {
        opacity: 0;
        -webkit-transform: translateY(15px);
        -moz-transform: translateY(15px);
        -ms-transform: translateY(15px);
        -o-transform: translateY(15px);
        transform: translateY(15px);
      }
      to {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
      }
    }
    @-webkit-keyframes fadeInUpCaption {
      from { opacity: 0; -webkit-transform: translateY(15px); transform: translateY(15px); }
      to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
    }
    /* --- End of Entrance and Scroll Animations --- */

  
  
  

// Robust JavaScript for Skeleton Loader - Compatible with older browsers and Persona.co
(function() {
  'use strict';
  
  // Polyfill for older browsers
  if (!Array.from) {
    Array.from = function(arrayLike) {
      var result = [];
      for (var i = 0; i &#60; arrayLike.length; i++) {
        result.push(arrayLike[i]);
      }
      return result;
    };
  }

  // Safe console logging
  function safeLog(message) {
    if (typeof console !== 'undefined' &#38;&#38; console.log) {
      console.log(message);
    }
  }

  function safeWarn(message) {
    if (typeof console !== 'undefined' &#38;&#38; console.warn) {
      console.warn(message);
    }
  }

  // --- Function to handle playing the video ---
  function playVideo(thumbnailElement, videoUrl) {
    try {
      if (!thumbnailElement &#124;&#124; !videoUrl) {
        safeWarn('Invalid parameters for playVideo');
        return;
      }
      
      var videoContainer = thumbnailElement.parentElement;
      if (!videoContainer) {
        safeWarn('No parent container found for video thumbnail');
        return;
      }
      
      videoContainer.innerHTML = '';
    } catch (error) {
      safeWarn('Error in playVideo: ' + error.message);
    }
  }

// --- Function to handle playing a YouTube video ---
function playYouTubeVideo(thumbnailElement, youtubeVideoId) {
  // Get the container for the video (the .video-container div)
  const videoContainer = thumbnailElement.parentElement;

  // Construct the YouTube embed URL with autoplay and other parameters
  // See: https://developers.google.com/youtube/player_parameters
  const youtubeEmbedUrl = `https://www.youtube.com/embed/${youtubeVideoId}?autoplay=1&#38;rel=0&#38;modestbranding=1`;

  // Inject the YouTube iframe HTML
  videoContainer.innerHTML = `
    




  
        &#60;img src="https://i.vimeocdn.com//video//984968865" alt="Burberry Olympia Bag Starring Mia Kong" class="image-loaded"&#62;
    
    
      Burberry Olympia Bag Starring Mia Kong
    
  
  
    
      Burberry Olympia Bag Starring Mia Kong
    
  

  
  Burberry Olympia Bag Starring Mia Kong
  &#124; Burberry &#124; Beijing &#124; Composer, Sound Designer, Foley Artist, Audio Post

  
  


  
    
      
        &#60;img src="https://i.vimeocdn.com//video//2035673354" alt="Shop with Google Summer Beauty Trends: Lip Gloss" class="image-loaded"&#62;
        
        
          Shop with Google Summer Beauty Trends: Lip Gloss
        
      
    
    Shop with Google Summer Beauty Trends: Lip Gloss &#124; Google &#124; New York &#124; Composer, Sound Designer, Foley Artist, Audio Post
  
  
 
    
 
        &#60;img src="https://i.vimeocdn.com//video//2035676868" alt="Shop with Google Summer Beauty Trends: Brown Eyeliner" class="image-loaded"&#62;
        
        
          Shop with Google Summer Beauty Trends: Brown Eyeliner
        
      
    
    Shop with Google Summer Beauty Trends: Brown Eyeliner &#124; Google &#124; New York &#124; Composer, Sound Designer, Foley Artist, Audio Post
  
  
 
    
     
        &#60;img src="https://i.vimeocdn.com//video//2035679818" alt="Shop with Google Summer Beauty Trends: Cream Blush" class="image-loaded"&#62;
        
        
          Shop with Google Summer Beauty Trends: Cream Blush
        
      
    
    Shop with Google Summer Beauty Trends: Cream Blush &#124; Google &#124; New York &#124; Composer, Sound Designer, Foley Artist, Audio Post
  




  
    
      
        &#60;img src="https://i.vimeocdn.com//video//2035682213" alt="Shop with Google: The Signs As… Bag Charms" class="image-loaded"&#62;
        
        
          Shop with Google: The Signs As… Bag Charms
        
      
    
    Shop with Google: The Signs As… Bag Charms &#124; Google &#124; New York &#124; Composer, Sound Designer, Foley Artist, Audio Post
  


  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1490156028" alt="The Evolutionary Theory of Tatiana Maslany" class="image-loaded"&#62;
        
        
          The Evolutionary Theory of Tatiana Maslany
        
      
    
    The Evolutionary Theory of Tatiana Maslany
  &#124; Elle Magazine &#124; New York &#124; Composer, Sound Designer, Foley and Recording Engineer, Audio Post
  
  
  
  
    
      
        &#60;img src="https://i.vimeocdn.com//video//2036059839" alt="Cash App - How Do They Make Money: Victor Solomon" class="image-loaded"&#62;
        
        
          Cash App - How Do They Make Money: Victor Solomon
        
      
    
    Cash App - How Do They Make Money: Victor Solomon &#124; Cash App &#124; New York &#124; Composer, Music Maker







 
&#60;img src="https://i.vimeocdn.com//video//1986344389" alt="A Century of The New Yorker" loading="lazy" class="image-loaded"&#62;
    
    
      A Century of The New Yorker
    
  
  
    
      A Century of The New Yorker
    
  


  
  A Century of The New Yorker &#124; The New Yorker X New York Public Library &#124; New York &#124; Composer, Sound Designer, Sound Mixer, Audio Post

  



 
    &#60;img src="https://i.vimeocdn.com//video//1977801113" alt="Video Title" loading="lazy" class="image-loaded"&#62;
    
    
      WOW Magazine: 蛇迎新歲 Year of the Snake
    
  
  
    
      WOW Magazine: 蛇迎新歲 Year of the Snake
    
  


  
   WOW Magazine: 蛇迎新歲 Year of the Snake &#124; The WOW Magazine &#124; New York &#124; Composer, Sound Designer, Foley Artist, Audio Post

  
  
  



  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1994657622" alt="Harper's Bazaar: Enfoldment" class="image-loaded"&#62;
        
        
          Harper's Bazaar: Enfoldment
        
      
    
    Harper's Bazaar: Enfoldment &#124; Harper's Bazaar &#124; Bangkok &#124; Composer, Sound Designer, Audio Post
  
  
  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1973469082" alt="Impact" class="image-loaded"&#62;
        
        
          Impact
        
      
    
    Impact (Director's Cut) &#124; Wilson X Roger Federer &#124; New York &#124; Sound Designer, Foley Artist, Audio Post
  




  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1850913285" alt="Tommy Hilfiger X Madelyn Cline at The Met Gala" class="image-loaded"&#62;
        
        
          Tommy Hilfiger X Madelyn Cline at The Met Gala
        
      
    
    Tommy Hilfiger X Madelyn Cline at The Met Gala &#124; Tommy Hilfiger &#124; New York &#124; Sound Designer, Final Mix
  
  
  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1850914470" alt="Tommy &#38;amp; Dee at The Met Gala" class="image-loaded"&#62;
        
        
          Tommy &#38;amp; Dee at The Met Gala
        
      
    
    Tommy &#38;amp; Dee at The Met Gala &#124; Tommy Hilfiger &#124; New York &#124; Composer, Sound Designer, Final Mix
  

 
    
      
        &#60;img src="https://i.vimeocdn.com//video//1850918408" alt="Tommy Hilfiger X Stray Kids at The Met Gala" class="image-loaded"&#62;
        
        
          Tommy Hilfiger X Stray Kids at The Met Gala
        
      
    
    Tommy Hilfiger X Stray Kids at The Met Gala &#124; Tommy Hilfiger &#124; New York &#124; Sound Designer, Final Mix
  


 
    
      
        &#60;img src="https://i.vimeocdn.com//video//2039747739" alt="Tommy &#38;amp; Dee at The Met Gala" class="image-loaded"&#62;
        
        
          Class Photo - Tommy Hilfiger at The Met Gala
        
      
    
    Class Photo - Tommy Hilfiger at The Met Gala &#124; Tommy Hilfiger &#124; New York &#124; Orchestrator, Sound Designer, Final Mix
  




    
  
  
    PaprTape x Burberry &#124; The gentle side of a freak with MicroFreak &#124; Arturia &#124; New York &#124; Artist, Composer, Sound Designer, Foley and Recording Engineer, Audio Post
  





  
        &#60;img src="https://i.vimeocdn.com//video//1950591504" alt="The Space Inside - Jeremy Anderson" class="image-loaded"&#62;
    
    
      The Space Inside - Jeremy Anderson
    
  
  
    
      The Space Inside - Jeremy Anderson
    
  

  
  The Space Inside - Jeremy Anderson
  &#124; Jeremy Anderson &#124; New York &#124; Composer, Sound Designer, Sound Mixer, Audio Post

  
  
  

  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1950595088" alt="The Space Inside - Jeremy Anderson Bronze Teaser" class="image-loaded"&#62;
        
        
          The Space Inside - Jeremy Anderson Bronze Teaser
        
      
    
    The Space Inside - Jeremy Anderson Bronze Teaser &#124; Jeremy Anderson &#124; New York &#124; Composer, Sound Designer, Sound Mixer, Audio Post
  
  
 
  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1950595658" alt="The Space Inside - Jeremy Anderson Tech Teaser" class="image-loaded"&#62;
        
        
          The Space Inside - Jeremy Anderson Tech Teaser
        
      
    
    The Space Inside - Jeremy Anderson Tech Teaser &#124; Jeremy Anderson &#124; New York &#124; Composer, Sound Designer, Sound Mixer, Audio Post





  
        &#60;img src="https://i.vimeocdn.com//video//1965527998" alt="Tax Relief Advocates December Commercial" class="image-loaded"&#62;
    
    
      Tax Relief Advocates December Commercial
    
  
  
    
      Tax Relief Advocates December Commercial
    
  

  
  Tax Relief Advocates December Commercial
  &#124; Tax Relief Advocates &#124; Irvine &#124; Sound Designer, Audio Post

  



  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1935879760" alt="No Tricks, Only Treats. Here at Tax Relief Advocates" class="image-loaded"&#62;
        
        
          No Tricks, Only Treats. Here at Tax Relief Advocates
        
      
    
    No Tricks, Only Treats. Here at Tax Relief Advocates &#124; Tax Relief Advocates &#124; Irvine &#124; Composer, Sound Designer, Audio Post
  
  
  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1950580694" alt="Tax Relief Advocates November Dinner" class="image-loaded"&#62;
        
        
          Tax Relief Advocates November Dinner
        
      
    
    Tax Relief Advocates November Dinner &#124; Tax Relief Advocates &#124; Irvine &#124; Sound Designer, Audio Post
  






 
    &#60;img src="https://i.vimeocdn.com//video//1547191406" alt="GAP Holiday &#124; Party" loading="lazy" class="image-loaded"&#62;
    
    
      GAP Holiday &#124; Party
    
  
  
    
      GAP Holiday &#124; Party
    
  


  
   GAP Holiday - Party &#124; Gap Inc &#124; New York &#124; Composer, Sound Designer, Audio Post

  
  


  
     
      
        &#60;img src="https://i.vimeocdn.com//video//1547189948" alt="GAP Holiday &#124; Brights" class="image-loaded"&#62;
        
        
          GAP Holiday &#124; Brights
        
      
    
    GAP Holiday - Brights &#124; Gap Inc &#124; New York &#124; Composer, Sound Designer, Audio Post
  

  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1553243354" alt="GAP Holiday &#124; Dance" class="image-loaded"&#62;
        
        
          GAP Holiday &#124; Dance
        
      
    
    GAP Holiday - Dance &#124;  Gap Inc &#124; New York &#124; Composer, Sound Designer, Audio Post
  

  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1656152728" alt="Gap Holiday Fleece" class="image-loaded"&#62;
        
        
          Gap Holiday Fleece
        
      
    
    Gap Holiday Fleece &#124; Gap Inc &#124; New York &#124; Composer, Sound Designer, Audio Post
  




  
    
      
        &#60;img src="https://i.vimeocdn.com//video//2040035202" alt="GAP Holiday Baby" class="image-loaded"&#62;
        
        
          GAP Holiday Baby
        
      
    
    GAP Holiday Baby &#124;  Gap Inc &#124; New York &#124; Composer, Sound Designer, Audio Post
  

  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1627576613" alt="Gap Denim High Rise Stride" class="image-loaded"&#62;
        
        
          Gap Denim High Rise Stride
        
      
    
    Gap Denim High Rise Stride &#124; Gap Inc &#124; New York &#124; Foley Artist, Sound Designer, Audio Post
  

  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1656151220" alt="GAP Downtown Khaki" class="image-loaded"&#62;
        
        
          GAP Downtown Khaki
        
      
    
    GAP Downtown Khaki &#124;  Gap Inc &#124; New York &#124; Foley Artist, Sound Designer, Audio Post
  
  






 
    &#60;img src="https://i.vimeocdn.com//video//1986812898" alt="Mastering Your Craft: Masayuki " mochy"="" mochizuki="" &#124;="" thom="" sweeney"="" loading="lazy" class="image-loaded"&#62;
    
    
      Mastering Your Craft: Masayuki "Mochy" Mochizuki &#124; Thom Sweeney
    
  
  
    
      Mastering Your Craft: Masayuki "Mochy" Mochizuki &#124; Thom Sweeney
    
  


  
   Mastering Your Craft: Masayuki "Mochy" Mochizuki &#124; Thom Sweeney &#124; Miami &#124; Sound Designer, Audio Post

  


  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1917643365" alt="Project" class="image-loaded"&#62;
        
        
          Thom Sweeney x Jonathan Weiss &#124; Mastering Your Craft
        
      
    
    Thom Sweeney Mastering Your Craft - Jonathan Weiss &#124; Thom Sweeney &#124; New York &#124; Sound Designer, Sound Mixer, Audio Post
  
  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1895422547" alt="Thom Sweeney X Billy Cotton &#124; Mastering Your Craft" class="image-loaded"&#62;
        
        
          Thom Sweeney X Billy Cotton &#124; Mastering Your Craft
        
      
    
    Thom Sweeney Mastering Your Craft - Billy Cotton &#124; Thom Sweeney &#124; New York &#124; Sound Mixer
  





  
        &#60;img src="https://i.vimeocdn.com//video//1799250545" alt="龍瑞盈門 Year of the Dragon" class="image-loaded"&#62;
    
    
      龍瑞盈門 Year of the Dragon
    
  
  
    
      龍瑞盈門 Year of the Dragon
    
  

  
  龍瑞盈門 Year of the Dragon
  &#124; The WOW &#124; New York &#124; Composer, Sound Designer, Audio Post

  
  
  


  
        &#60;img src="https://i.vimeocdn.com//video//1693284593" alt="Dior Beauty Director's Cut Starring Leni Klum" class="image-loaded"&#62;
    
    
      Dior Beauty Director's Cut Starring Leni Klum
    
  
  
    
      Dior Beauty Director's Cut Starring Leni Klum
    
  

  
  Dior Beauty Director's Cut Starring Leni Klum
  &#124; Dior &#124; New York &#124; Composer, Sound Designer, Audio Post

  



  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1926151146" alt="Hearts on Fire Insider" class="image-loaded"&#62;
        
        
          Hearts on Fire Insider
        
      
    
    Hearts on Fire Insider &#124; Hearts On Fire &#124; Hong Kong &#124; Composer, Sound Designer, Sound Recordist, Audio Post
  
  
  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1921934809" alt="Hearts on Fire - Store Opening" class="image-loaded"&#62;
        
        
          Hearts on Fire - Store Opening
        
      
    
    Hearts on Fire - Store Opening &#124; Hearts On Fire &#124; Hong Kong &#124; Composer, Sound Designer, Audio Post
  





  
        &#60;img src="https://i.vimeocdn.com//video//1895400550" alt="Artist Profile: Shu Lea Cheang" class="image-loaded"&#62;
    
    
      Artist Profile: Shu Lea Cheang
    
  
  
    
      Artist Profile: Shu Lea Cheang
    
  

  
  Artist Profile: Shu Lea Cheang
  &#124; LG X Guggenheim &#124; Paris &#124; Composer, Sound Designer, Sound Mixer, Audio Post

  



  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1345038341" alt="The Guggenheim Museum - Meet Us at the Gugg" class="image-loaded"&#62;
        
        
          The Guggenheim Museum - Meet Us at the Gugg
        
      
    
    Member's Ad - Meet Us at the Gugg &#124; The Guggenheim Museum &#124; New York &#124; Composer, Sound Designer
  
  
  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1674342254" alt="Farah Al Qasimi - LG Guggenheim Art &#38;amp; Technology Initiative" class="image-loaded"&#62;
        
        
          Farah Al Qasimi - LG Guggenheim Art &#38;amp; Technology Initiative
        
      
    
    Farah Al Qasimi - LG Guggenheim Art &#38;amp; Technology Initiative &#124; LG X Guggenheim &#124; New York &#124; Composer, Sound Designer, Sound Mixer, Audio Post
  




  
        &#60;img src="https://i.vimeocdn.com//video//1674420094" alt="Stephanie Dinkins -  LG Guggenheim Award" class="image-loaded"&#62;
    
    
      Stephanie Dinkins -  LG Guggenheim Award
    
  
  
    
      Stephanie Dinkins -  LG Guggenheim Award
    
  

  
  Stephanie Dinkins -  LG Guggenheim Award
  &#124; LG X Guggenheim &#124; New York &#124; Composer, Sound Designer, Sound Mixer, Audio Post

  





  
        &#60;img src="https://i.vimeocdn.com//video//1415561769" alt="Nepenthes New York X On Running: Cloudmonster" class="image-loaded"&#62;
    
    
      Nepenthes New York X On Running: Cloudmonster
    
  
  
    
      Nepenthes New York X On Running: Cloudmonster
    
  

  
  Nepenthes New York X On Running: Cloudmonster
  &#124; Nepenthes New York X On Running &#124; New York &#124; Composer, Sound Designer, Foley and Recording Engineer, Audio Post

  



  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1655002780" alt="包先生 Mr. Bag X Tory Burch" class="image-loaded"&#62;
        
        
          包先生 Mr. Bag X Tory Burch
        
      
    
    包先生 Mr. Bag X Tory Burch &#124; Tory Burch &#124; Shanghai &#124; Composer, Sound Designer, Audio Post
  
  
 
  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1655007108" alt="Melinda Wang X Tory Burch" class="image-loaded"&#62;
        
        
          Melinda Wang X Tory Burch
        
      
    
    Melinda Wang X Tory Burch &#124; Tory Burch &#124; Shanghai &#124; Sound Designer, Music Editor, Audio Post



  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1655004992" alt="YUYU X Tory Burch" class="image-loaded"&#62;
        
        
          YUYU X Tory Burch
        
      
    
    YUYU X Tory Burch
  &#124; Tory Burch &#124; Shanghai &#124; Composer, Sound Designer, Audio Post
  





  
        &#60;img src="https://i.vimeocdn.com//video//969917098" alt="Veegee 徐若侨 - Baby's Couch (Prod. by PaprTape)" class="image-loaded"&#62;
    
    
      Veegee 徐若侨 - Baby's Couch (Prod. by PaprTape)
    
  
  
    
      Veegee 徐若侨 - Baby's Couch (Prod. by PaprTape)r
    
  

  
  Veegee徐若侨 X Nike X Super
  &#124; SUPER &#124; Beijing &#124; Composer, Music Producer

  




  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1654746343" alt="Nana Ou Yang X Super" class="image-loaded"&#62;
        
        
          Nana Ou Yang X Super
        
      
    
    Nana Ou Yang X Super &#124; SUPER &#124; Taipei &#124; Composer, Sound Designer, Audio Post
  

 
    
 
        &#60;img src="https://i.vimeocdn.com//video//1655427046" alt="Harper's Bazaar Thailand" class="image-loaded"&#62;
        
        
          Harper's Bazaar Thailand
        
      
    
    Harper's Bazaar Thailand &#124; Harper's Bazaar &#124; Bangkok &#124; Composer, Sound Designer, Foley Audio Post
  
  
 
    
     
        &#60;img src="https://i.vimeocdn.com//video//2040306968" alt="Designer Spotlight: Marrisa Wilson NY" class="image-loaded"&#62;
        
        
          Designer Spotlight: Marrisa Wilson NY
        
      
    
    Designer Spotlight: Marrisa Wilson NY  Saks OFF 5TH &#124; New York &#124; Composer, Sound Designer, Recording Engineer, Audio Post
  





  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1445334011" alt="L'OFFICIEL – BURBERRY LOLA BAG" class="image-loaded"&#62;
        
        
          L'OFFICIEL – BURBERRY LOLA BAG
        
      
    
    L'Officiel June / July Cover Story &#124; L'Officiel Mexico X Burberry &#124; Mexico City &#124; Composer, Sound Designer, Foley and Recording Engineer, Audio Post
  

 
    
 
        &#60;img src="https://i.vimeocdn.com//video//1534411014" alt="Bernard James: FUNGI" class="image-loaded"&#62;
        
        
          Bernard James: FUNGI
        
      
    
    Bernard James: FUNGI Bernard James &#124; New York &#124; Composer, Audio Post
  
  
 
    
     
        &#60;img src="https://i.vimeocdn.com//video//2040314342" alt="Hypebae - On the Open Water feat. Olivia Cheng" class="image-loaded"&#62;
        
        
          Hypebae - On the Open Water feat. Olivia Cheng
        
      
    
    Hypebae - On the Open Water feat. Olivia Cheng &#124; Hypbeast X Take Me Fishing &#124; New York &#124; Recording Engineer
  





  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1740302892" alt="Hypebae X Jordan feat. Amiraa Vainqueur" class="image-loaded"&#62;
        
        
          Hypebae X Jordan feat. Amiraa Vainqueur
        
      
    
    Hypebae X Jordan feat. Amiraa Vainqueur &#124; Hypebeast X Jordan Brand &#124; New York &#124; Recording Engineer
  


    
     
        &#60;img src="https://i.vimeocdn.com//video//1738556703" alt="Hypebeast X Oakley -  Elie Kimbembe" class="image-loaded"&#62;
        
        
          Hypebeast X Oakley -  Elie Kimbembe
        
      
    
    Hypebeast X Oakley -  Elie Kimbembe &#124; Hypebeast X Oakley &#124; New York &#124; Recording Engineer
  

 
    
 
        &#60;img src="https://i.vimeocdn.com//video//1534395280" alt="Hypebae X Netflix: Sandy Liang" class="image-loaded"&#62;
        
        
          Hypebae X Netflix: Sandy Liang
        
      
    
    Hypebae X Netflix: Sandy Liang &#124; Hypebeast X Netfleix &#124; New York &#124; Recording Engineer
  





  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1488862759" alt="Jean Paul Gautier X Gigi Goode -  Pride Tour" class="image-loaded"&#62;
        
        
          Jean Paul Gautier X Gigi Goode -  Pride Tour
        
      
    
    Jean Paul Gautier X Gigi Goode -  Pride Tour &#124; Jean Paul Gautier &#124; New York &#124; Recording Engineer
  


    
     
        &#60;img src="https://i.vimeocdn.com//video//1663769138" alt="Sulwhasoo X Thurman 猫一杯" class="image-loaded"&#62;
        
        
          Sulwhasoo X Thurman 猫一杯
        
      
    
    Sulwhasoo X Thurman 猫一杯 &#124; Sulwahsoo &#124; Shanghai &#124; Recording Engineer
  

 
    
 
        &#60;img src="https://i.vimeocdn.com//video//1490163111" alt="Mother's Day - Girl Inc x Saks Off 5th" class="image-loaded"&#62;
        
        
          Mother's Day - Girl Inc x Saks Off 5th
        
      
    
    Mother's Day - Girl Inc x Saks Off 5th &#124; Girl Inc x Saks Off 5th &#124; New York &#124; Composer, Sound Designer
  





  
        &#60;img src="https://i.vimeocdn.com//video//2040329070" alt="Minimalissimo Selection: Architecture" class="image-loaded"&#62;
    
    
      Minimalissimo Selection: Architecture
    
  
  
    
      Minimalissimo Selection: Architecture
    
  

  
  Minimalissimo Selection: Architecture
  &#124; Minimalissimo &#124; New York &#124; Composer, Sound Designer, Foley, Audio Post

  




  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1593532927" alt="The WOW Magazine - 玉兔迎春 Year of the Rabbit" class="image-loaded"&#62;
        
        
          The WOW Magazine - 玉兔迎春 Year of the Rabbit
        
      
    
    玉兔迎春 Year of the Rabbit &#124; The WOW Magazine &#124; New York &#124; Composer, Sound Designer, Foley Artist, Audio Post
  


    
     
        &#60;img src="https://i.vimeocdn.com//video//1666437944" alt="CA1 CA2 Beauty Reel" class="image-loaded"&#62;
        
        
          CA1 CA2 Beauty Reel
        
      
    
    CA1 CA2 Beauty Reel &#124; CA1 CA2 &#124; New York &#124; Composer, Sound Designer, Audio Post
  

 
    
 
        &#60;img src="https://i.vimeocdn.com//video//1096724081" alt="PARS UNUM CORPA" class="image-loaded"&#62;
        
        
          PARS UNUM CORPA
        
      
    
    PARS UNUM CORPA &#124; Pars Unum &#124; New York &#124; Composer, Sound Designer, Audio Post
  





  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1553226496" alt="On Demand: DVSN on How Jermaine Dupri Helped Craft 'Working On My Karma'" class="image-loaded"&#62;
        
        
          On Demand: DVSN on How Jermaine Dupri Helped Craft 'Working On My Karma'
        
      
    
    On Demand: DVSN on How Jermaine Dupri Helped Craft 'Working On My Karma' &#124; Okayplayer &#124; New York &#124; Recording Engineer, Sound Designer, Music Editor, Audio Post
  


    
     
        &#60;img src="https://i.vimeocdn.com//video//939728242" alt="The Letter - Burberry Monogram Pocket Bag Campaign" class="image-loaded"&#62;
        
        
          The Letter - Burberry Monogram Pocket Bag Campaign
        
      
    
    The Letter - Burberry Monogram Pocket Bag Campaign &#124; Burberry &#124; Beijing &#124; Composer, Sound Designer, Voice Over, Foley Artist
  

 
    
 
        &#60;img src="https://i.vimeocdn.com//video//939718921" alt="Marshall Emberton" class="image-loaded"&#62;
        
        
          Marshall Emberton
        
      
    
    Marshall Emberton &#124; Marshall Headphones &#124; Beijing &#124; Composer, Sound Designer, Voice Over, Foley Artist, Audio Post
  





  
    
      
        &#60;img src="https://i.vimeocdn.com//video//940139952" alt="SHANG1 - GameChanger" class="image-loaded"&#62;
        
        
          SHANG1 - Game Changer
        
      
    
    SHANG1 - Game Changer &#124; SHANG1 BY SHANGYI &#124; Beijing &#124; Sound Designer, Audio Post
  


    
     
        &#60;img src="https://i.vimeocdn.com//video//1021164071" alt="Mongo Cycle 牧歌时空" class="image-loaded"&#62;
        
        
          Mongo Cycle 牧歌时空
        
      
    
    Mongo Cycle 牧歌时空 &#124; Mongo Cycle 牧歌时空 &#124; Beijing &#124; Sound Designer, Foley Artist, Audio Post
  

 
    
 
        &#60;img src="https://i.vimeocdn.com//video//940112121" alt="Burberry 新疆" class="image-loaded"&#62;
        
        
          Burberry 新疆
        
      
    
    Burberry 新疆 &#124; Burberry &#124; Beijing &#124; Voice Over, Recording Engineer, Audio Post
  






  
        &#60;img src="https://i.vimeocdn.com//video//1038843793" alt="Xtep All For Flying Dynamic Foam X Spring Running Shoes" class="image-loaded"&#62;
    
    
      Xtep All For Flying Dynamic Foam X Spring Running Shoes
    
  
  
    
      Xtep All For Flying Dynamic Foam X Spring Running Shoes
    
  

  
  Xtep All For Flying Dynamic Foam X Spring Running Shoes
  &#124; Xtep &#124; Beijing &#124; Composer, Sound Designer, Foley Artist, Audio Post

  




  
</description>
		
		<excerpt>PaprTape Portfolio                                                Discography          Brands &#38;amp; People —     Singles —     Albums &#38;amp; EPs —     Films...</excerpt>

		<!--<wfw:commentRss></wfw:commentRss>-->

	</item>
		
		
	<item>
		<title>testing2</title>
				
		<link>http://www.paprtape.com/testing2</link>

		<comments></comments>

		<pubDate>Tue, 22 Jul 2025 23:57:27 +0000</pubDate>

		<dc:creator>paprtape</dc:creator>
		
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">457397</guid>

		<description>
  PaprTape Portfolio
  
  
    * {
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Helvetica Neue', Arial, sans-serif;
      margin: 0;
      padding: 2rem;
      background: #f8f8f8;
      color: #222;
      line-height: 1.6;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
    }
    
    header {
      text-align: center;
      margin-bottom: 3rem;
      padding: 2rem;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    }
    
    h1 {
      font-size: 2.5rem;
      margin: 0 0 0.5rem;
      color: #2c3e50;
    }
    
    .subtitle {
      font-size: 1.2rem;
      color: #7f8c8d;
      font-weight: 300;
      max-width: 700px;
      margin: 0 auto;
    }
    
    .video-grid-3,
    .video-grid-2 {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin-bottom: 2rem;
      padding: 0;
    }
    
    .video-grid-3 .video-block {
      flex: 1 1 calc(33.333% - 2rem);
    }
    
    .video-grid-2 .video-block {
      flex: 1 1 calc(50% - 2rem);
    }
    
    .video-block {
      display: flex;
      flex-direction: column;
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .video-block:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    }
    
    .video-container {
      position: relative;
      width: 100%;
      background: #000;
      margin-bottom: 0;
      /* Fixed aspect ratio to prevent black bars */
      aspect-ratio: 16/9;
      overflow: hidden;
    }
    
    .vimeo-player,
    .video-thumbnail img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    
    .video-block:hover .video-thumbnail img {
      transform: scale(1.03);
    }
    
    .video-thumbnail {
      position: relative;
      display: block;
      height: 100%;
    }
    
    .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 64px;
      height: 64px;
      background: rgba(0, 0, 0, 0.6);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0.8;
      transition: all 0.3s ease;
    }
    
    .video-block:hover .play-button {
      background: rgba(173, 48, 48, 0.8);
      opacity: 1;
      transform: translate(-50%, -50%) scale(1.05);
    }
    
    .play-button::before {
      content: "";
      border-style: solid;
      border-width: 12px 0 12px 20px;
      border-color: transparent transparent transparent white;
      display: inline-block;
      margin-left: 5px;
    }
    
    .title-bar {
      position: absolute;
      top: 0;
      left: 0;
      background: rgba(0, 0, 0, 0.7);
      color: white;
      font-size: 14px;
      padding: 8px 12px;
      max-width: 80%;
      border-bottom-right-radius: 4px;
      z-index: 2;
      font-weight: 500;
    }
    
    .title-bar a {
      color: white;
      text-decoration: none;
      transition: color 0.2s;
    }
    
    .title-bar a:hover {
      color: #f1c40f;
      text-decoration: none;
    }
    
    .video-info {
      padding: 1.2rem;
    }
    
    .video-info h3 {
      margin: 0 0 0.5rem;
      font-size: 1.2rem;
      color: #2c3e50;
    }
    
    .video-info p {
      margin: 0;
      font-size: 0.95rem;
      color: #7f8c8d;
    }
    
    .video-info small {
      display: block;
      font-size: 0.85rem;
      color: #95a5a6;
      margin-top: 0.8rem;
    }
    
    .video-block {
      margin-bottom: 1.5rem;
    }
    
    .video-container {
      margin-bottom: 0;
    }
    
    /* Navigation */
    .navigation {
      background: #fff;
      padding: 1.2rem;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      margin-bottom: 2rem;
    }
    
    .navigation a {
      color: #2c3e50;
      text-decoration: none;
      margin: 0 0.8rem;
      font-weight: 500;
      transition: color 0.2s;
    }
    
    .navigation a:hover {
      color: #e74c3c;
    }
    
    .header-logo {
      margin-bottom: 2rem;
      text-align: center;
    }
    
    .header-logo img {
      height: 50px;
      width: auto;
    }
    
    /* Key fix to prevent black bars */
    .video-container {
      aspect-ratio: 16/9;
    }
    
    .video-thumbnail img {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
    
    @media (max-width: 900px) {
      .video-grid-3 .video-block,
      .video-grid-2 .video-block {
        flex: 1 1 100%;
      }
      
      .navigation {
        padding: 0.8rem;
      }
      
      .navigation div {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
      }
    }
  


  
    
      
        &#60;img src="https://cortex.persona.co/t/original/i/9e21075698d347f5661f768a85c1e9ad63100e3fd6768e0aa2c323aa5b323c8e/PaprStudios-WH.png" alt="paprtape" loading="lazy"&#62;
      
    

    Discography
    
    
      
        Brands &#38;amp; People — 
        Singles — 
        Albums &#38;amp; EPs — 
        Films — 
        Theater &#38;amp; More
      
    

    
    
      
        
          &#60;img src="https://i.vimeocdn.com//video//984968865" alt="Burberry Olympia Bag Starring Mia Kong" loading="lazy"&#62;
          
          
            Burberry Olympia Bag Starring Mia Kong
          
        
      
      
        
          Burberry Olympia Bag Starring Mia Kong
        
        Burberry &#124; Beijing &#124; Composer, Sound Designer, Foley Artist, Audio Post
      
    

    
    
      
        
          
            &#60;img src="https://i.vimeocdn.com//video//2035673354" alt="Shop with Google Summer Beauty Trends: Lip Gloss"&#62;
            
            
              Lip Gloss
            
          
        
        
          
            Shop with Google Summer Beauty Trends: Lip Gloss
          
          Google &#124; New York &#124; Composer, Sound Designer, Foley Artist, Audio Post
        
      
      
      
        
          
            &#60;img src="https://i.vimeocdn.com//video//2035676868" alt="Shop with Google Summer Beauty Trends: Brown Eyeliner"&#62;
            
            
              Brown Eyeliner
            
          
        
        
          
            Shop with Google Summer Beauty Trends: Brown Eyeliner
          
          Google &#124; New York &#124; Composer, Sound Designer, Foley Artist, Audio Post
        
      

      
        
          
            &#60;img src="https://i.vimeocdn.com//video//2035679818" alt="Shop with Google Summer Beauty Trends: Cream Blush"&#62;
            
            
              Cream Blush
            
          
        
        
          
            Shop with Google Summer Beauty Trends: Cream Blush
          
          Google &#124; New York &#124; Composer, Sound Designer, Foley Artist, Audio Post
        
      
    

    
    
      
        
          
            &#60;img src="https://i.vimeocdn.com//video//2035682213" alt="Shop with Google: The Signs As… Bag Charms"&#62;
            
            
              Bag Charms
            
          
        
        
          
            Shop with Google: The Signs As… Bag Charms
          
          Google &#124; New York &#124; Composer, Sound Designer, Foley Artist, Audio Post
        
      

      
      
        
          
            &#60;img src="https://i.vimeocdn.com//video//2036059839" alt="Cash App - How Do They Make Money: Victor Solomon"&#62;
            
            
              Cash App: Victor Solomon
            
          
        
        
          
            Cash App - How Do They Make Money: Victor Solomon
          
          Cash App &#124; New York &#124; Composer, Music Maker
        
      
    

    
    
      
        
          &#60;img src="https://i.vimeocdn.com//video//1986344389" alt="A Century of The New Yorker" loading="lazy"&#62;
          
          
            A Century of The New Yorker
          
        
      
      
        
          A Century of The New Yorker
        
        The New Yorker X New York Public Library &#124; New York &#124; Composer, Sound Designer, Sound Mixer, Audio Post
      
    

    
    
      
        
          &#60;img src="https://i.vimeocdn.com//video//1977801113" alt="WOW Magazine: Year of the Snake" loading="lazy"&#62;
          
          
            Year of the Snake
          
        
      
      
        
          WOW Magazine: Year of the Snake
        
        The WOW Magazine &#124; New York &#124; Composer, Sound Designer, Foley Artist, Audio Post
      
    

    
    
      
        
          &#60;img src="https://i.vimeocdn.com//video//1986812898" alt="Mastering Your Craft: Masayuki Mochizuki" loading="lazy"&#62;
          
          
            Masayuki Mochizuki
          
        
      
      
        
          Mastering Your Craft: Masayuki Mochizuki
        
        Thom Sweeney &#124; Miami &#124; Sound Designer, Audio Post
      
    

    
    
      
        
          
            &#60;img src="https://i.vimeocdn.com//video//1917643365" alt="Thom Sweeney x Jonathan Weiss"&#62;
            
            
              Jonathan Weiss
            
          
        
        
          
            Thom Sweeney Mastering Your Craft - Jonathan Weiss
          
          Thom Sweeney &#124; New York &#124; Sound Designer, Sound Mixer, Audio Post
        
      

      
        
          
            &#60;img src="https://i.vimeocdn.com//video//1895422547" alt="Thom Sweeney X Billy Cotton"&#62;
            
            
              Billy Cotton
            
          
        
        
          
            Thom Sweeney Mastering Your Craft - Billy Cotton
          
          Thom Sweeney &#124; New York &#124; Sound Mixer
        
      
    

  

  
    function playVideo(thumbnailDiv, videoUrl) {
      const container = thumbnailDiv.parentNode;
      container.innerHTML = `
        
        
      `;
    }
  </description>
		
		<excerpt>PaprTape Portfolio                                                  Discography                          Brands &#38;amp; People —          Singles —         ...</excerpt>

		<!--<wfw:commentRss></wfw:commentRss>-->

	</item>
		
		
	<item>
		<title>testing</title>
				
		<link>http://www.paprtape.com/testing</link>

		<comments></comments>

		<pubDate>Tue, 22 Jul 2025 17:59:21 +0000</pubDate>

		<dc:creator>paprtape</dc:creator>
		
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">457393</guid>

		<description>
PaprTape Portfolio



    /* --- Base Styles --- */
    body {
      font-family: sans-serif;
      margin: 0;
      padding: 2rem;
      background: #fff;
      color: #222;
    }

    /* --- Grid Layouts --- */
    .video-grid-4,
    .video-grid-3,
    .video-grid-2 {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin-bottom: 0;
      padding: 0;
    }

    .video-grid-4 .video-block {
      flex: 1 1 calc(25% - 1.5rem);
    }

    .video-grid-3 .video-block {
      flex: 1 1 calc(33.333% - 1.5rem);
    }

    .video-grid-2 .video-block {
      flex: 1 1 calc(50% - 1.5rem);
    }

    /* --- Individual Video Block --- */
    .video-block {
      display: flex;
      flex-direction: column;
      margin-bottom: 2rem;
    }

    .video-block &#62; .video-container {
        opacity: 0;
        margin-bottom: 0;
        flex-shrink: 0;
        will-change: transform, opacity;
    }

    .video-block &#62; small {
        opacity: 0;
        padding-top: 0;
        margin-top: 0.5rem;
        margin-bottom: 0;
        min-height: 1.3em;
        flex-shrink: 0;
        will-change: transform, opacity;
    }

    .video-block &#62; .video-container.animate-enter,
    .video-block &#62; .video-container.animate-scroll {
        opacity: 1;
        animation: fadeInUpBlock 0.6s ease-out forwards;
    }

    .video-block &#62; small.animate-enter,
    .video-block &#62; small.animate-scroll {
        opacity: 1;
        animation: fadeInUpCaption 0.6s ease-out 0.1s forwards;
    }

    /* --- Video Container &#38; Thumbnail --- */
    .video-container {
      position: relative;
      width: 100%;
      max-width: 100%;
      padding-top: 56.25%;
      background: #000;
      border-radius: 6px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      margin-bottom: 0;
    }

    .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      margin: 0;
    }

    /* --- Custom Aspect Ratios --- */
    .aspect-ratio-42 { padding-top: 42.55%; }
    .aspect-ratio-50 { padding-top: 50%; }
    .aspect-ratio-53 { padding-top: 52.79%; }
    .aspect-ratio-56 { padding-top: 55.96%; }
    .aspect-ratio-66 { padding-top: 66.67%; }
    .aspect-ratio-100 { padding-top: 100%; }
    .aspect-ratio-125 { padding-top: 125%; }
    .aspect-ratio-177 { padding-top: 177.78%; }
    .aspect-ratio-auto { padding-top: auto !important; }

    .video-thumbnail,
    .vimeo-player {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .video-thumbnail img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .video-thumbnail:hover img {
      transform: scale(1.03);
    }

    /* --- Play Button --- */
    .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 70px;
      height: 70px;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      z-index: 2;
      will-change: transform;
    }

    .play-button:hover {
      transform: translate(-50%, -50%) scale(1.05);
      background: rgba(255, 255, 255, 1);
    }

    .play-button::before {
      content: "";
      border-style: solid;
      border-width: 14px 0 14px 22px;
      border-color: transparent transparent transparent #222;
      margin-left: 3px;
    }

    .title-bar {
      position: absolute;
      top: 0;
      left: 0;
      background: rgba(0, 0, 0, 0.6);
      color: white;
      font-size: 14px;
      padding: 6px 10px;
      max-width: 80%;
      border-bottom-right-radius: 4px;
      z-index: 2;
    }

    .title-bar a {
      color: white;
      text-decoration: none;
    }

    .title-bar a:hover {
      text-decoration: underline;
    }

    /* --- Hover Effects --- */
    .video-thumbnail:hover,
    .vimeo-player:hover {
      cursor: pointer;
    }

    small {
      display: block;
      font-size: 0.85rem;
      color: #555;
    }

    /* --- Responsive --- */
    @media (max-width: 900px) and (min-width: 769px) {
      .video-grid-4 .video-block,
      .video-grid-3 .video-block {
        flex: 1 1 calc(50% - 1rem);
      }
      .video-grid-2 .video-block {
        flex: 1 1 100%;
      }
      .video-grid-4,
      .video-grid-3,
      .video-grid-2 {
        gap: 1.5rem;
      }
    }

    @media (max-width: 768px) and (min-width: 481px) {
      .video-grid-4 .video-block,
      .video-grid-3 .video-block {
        flex: 1 1 calc(50% - 1rem);
      }
      .video-grid-2 .video-block {
        flex: 1 1 100%;
      }
      .video-grid-4,
      .video-grid-3,
      .video-grid-2 {
        gap: 1rem;
      }
      .video-block {
        margin-bottom: 1.5rem;
      }
    }

    @media (max-width: 480px) {
      .video-grid-4 .video-block,
      .video-grid-3 .video-block,
      .video-grid-2 .video-block {
        flex: 1 1 100%;
      }
      .video-grid-4,
      .video-grid-3,
      .video-grid-2 {
        gap: 1rem;
      }
      .video-block {
        margin-bottom: 1.5rem;
      }
      body {
        padding: 1rem;
      }
    }

    @media (max-width: 768px) {
      .play-button {
        width: 80px;
        height: 80px;
      }
      .play-button::before {
        border-width: 16px 0 16px 24px;
      }
      .video-thumbnail:active img {
        transform: scale(1.02);
      }
      .title-bar {
        font-size: 12px;
        padding: 4px 8px;
        max-width: 85%;
      }
    }

    @media (max-width: 768px) and (orientation: landscape) {
      .video-grid-4 .video-block,
      .video-grid-3 .video-block {
        flex: 1 1 calc(33.333% - 1rem);
      }
      .video-grid-2 .video-block {
        flex: 1 1 calc(50% - 1rem);
      }
    }

    /* --- Skeleton/Loading Animation CSS --- */
    @keyframes loadingAnimation {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }
    @-webkit-keyframes loadingAnimation {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }

    .video-thumbnail.loading {
      background-color: #e0e0e0;
      border-radius: 6px;
      overflow: hidden;
      position: relative;
      background-image: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
      );
      background-size: 200% 100%;
      background-repeat: no-repeat;
      animation: loadingAnimation 1.5s infinite linear;
    }

    .video-thumbnail.loading img {
      opacity: 0;
      transition: opacity 0.5s ease-in-out;
      will-change: opacity;
    }

    .video-thumbnail img.image-loaded {
      opacity: 1;
    }

    .video-thumbnail.loading .play-button,
    .video-thumbnail.loading .title-bar {
      z-index: 3;
    }

    /* --- Entrance and Scroll Animations --- */
    @keyframes fadeInUpBlock {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @-webkit-keyframes fadeInUpBlock {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInUpCaption {
      from { opacity: 0; transform: translateY(15px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @-webkit-keyframes fadeInUpCaption {
      from { opacity: 0; transform: translateY(15px); }
      to { opacity: 1; transform: translateY(0); }
    }



  
    
      &#60;img src="https://cortex.persona.co/t/original/i/9e21075698d347f5661f768a85c1e9ad63100e3fd6768e0aa2c323aa5b323c8e/PaprStudios-WH.png" width="9.72" height="50" alt="paprtape" style="width: 9px; height: 50px;" loading="lazy"&#62;
    
  


Discography


  
    Brands &#38;amp; People —
    Singles —
    Albums &#38;amp; EPs —
    Films —
    Theater &#38;amp; More
  




  All
  Music Video
  Commercial
  Short Film
  Behind Scenes





  
  
    
      
        
          &#60;img src="https://i.vimeocdn.com/video/984968865" alt="Burberry Olympia Bag Starring Mia Kong" class="image-loaded"&#62;
          
          
            Burberry Olympia Bag
          
        
        
          
            Burberry Olympia Bag
          
        
      
      
        Burberry Olympia Bag
        &#124; Burberry &#124; Beijing &#124; Composer, Sound Designer
      
    
  

  
  
    &#60;img src="https://via.placeholder.com/400x300/333/fff?text=Music+Video+1" alt="Project 1" style="width: 100%; height: auto; display: block;"&#62;
    
      Project Alpha
      Music Video
    
  

  
  
    &#60;img src="https://via.placeholder.com/400x300/444/fff?text=Commercial+1" alt="Project 2" style="width: 100%; height: auto; display: block;"&#62;
    
      Brand X Ad
      Commercial
    
  

  
  
    &#60;img src="https://via.placeholder.com/400x300/555/fff?text=Short+Film+1" alt="Project 3" style="width: 100%; height: auto; display: block;"&#62;
    
      The Last Light
      Short Film
    
  





  .filter-btn {
    background: #222;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 4px;
    cursor: pointer;
    font-family: sans-serif;
    transition: all 0.3s;
  }
  .filter-btn:hover,
  .filter-btn.active {
    background: #ff3e00;
  }
  .grid-item {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.4s ease;
  }
  .grid-item:hover {
    transform: scale(1.02);
  }




document.addEventListener("DOMContentLoaded", function() {
  const grid = document.querySelector('.grid');

  if (typeof imagesLoaded !== 'undefined') {
    imagesLoaded(grid, initIsotope);
  } else {
    setTimeout(initIsotope, 500);
  }

  function initIsotope() {
    const iso = new Isotope(grid, {
      itemSelector: '.grid-item',
      layoutMode: 'fitRows',
      transitionDuration: '0.4s'
    });

    setTimeout(() =&#62; {
      document.querySelectorAll('.grid-item').forEach(item =&#62; {
        item.style.opacity = '1';
        item.style.transform = 'scale(1)';
      });
    }, 100);

    const filterButtons = document.querySelectorAll('.filter-btn');
    filterButtons.forEach(button =&#62; {
      button.addEventListener('click', function() {
        filterButtons.forEach(btn =&#62; btn.classList.remove('active'));
        this.classList.add('active');
        const filterValue = this.getAttribute('data-filter');
        iso.arrange({ filter: filterValue });
        if (filterValue === '*') {
          history.pushState(null, null, ' ');
        } else {
          history.pushState(null, null, '#filter=' + filterValue.replace('.', ''));
        }
      });
    });

    if (location.hash) {
      const hashFilter = location.hash.match(/filter=([^&#38;]+)/)?.[1];
      if (hashFilter) {
        const selector = '.' + hashFilter;
        iso.arrange({ filter: selector });
        filterButtons.forEach(btn =&#62; {
          if (btn.getAttribute('data-filter') === selector) {
            btn.classList.add('active');
          }
        });
      }
    }
  }
});









  
        &#60;img src="https://i.vimeocdn.com//video//2057241169" alt="Burberry Olympia Bag Starring Mia Kong" class="image-loaded"&#62;
    
    
      LG x Guggenheim -  Artist Profile: Ayoung Kim
    
  
  
    
      LG x Guggenheim -  Artist Profile: Ayoung Kim
    
  

  
  Artist Profile: Ayoung Kim
  &#124; LG X Guggenheim &#124; New York &#124; Composer, Sound Designer, Sound Mixer, Audio Post

  
  


  
    
      
        &#60;img src="https://i.vimeocdn.com//video//2035673354" alt="Shop with Google Summer Beauty Trends: Lip Gloss" class="image-loaded"&#62;
        
        
          Shop with Google Summer Beauty Trends: Lip Gloss
        
      
    
    Shop with Google Summer Beauty Trends: Lip Gloss &#124; Google &#124; New York &#124; Composer, Sound Designer, Foley Artist, Audio Post
  
  
 
    
 
        &#60;img src="https://i.vimeocdn.com//video//2035676868" alt="Shop with Google Summer Beauty Trends: Brown Eyeliner" class="image-loaded"&#62;
        
        
          Shop with Google Summer Beauty Trends: Brown Eyeliner
        
      
    
    Shop with Google Summer Beauty Trends: Brown Eyeliner &#124; Google &#124; New York &#124; Composer, Sound Designer, Foley Artist, Audio Post
  
  
 
    
     
        &#60;img src="https://i.vimeocdn.com//video//2035679818" alt="Shop with Google Summer Beauty Trends: Cream Blush" class="image-loaded"&#62;
        
        
          Shop with Google Summer Beauty Trends: Cream Blush
        
      
    
    Shop with Google Summer Beauty Trends: Cream Blush &#124; Google &#124; New York &#124; Composer, Sound Designer, Foley Artist, Audio Post
  




  
    
      
        &#60;img src="https://i.vimeocdn.com//video//2035682213" alt="Shop with Google: The Signs As… Bag Charms" class="image-loaded"&#62;
        
        
          Shop with Google: The Signs As… Bag Charms
        
      
    
    Shop with Google: The Signs As… Bag Charms &#124; Google &#124; New York &#124; Composer, Sound Designer, Foley Artist, Audio Post
  


  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1490156028" alt="The Evolutionary Theory of Tatiana Maslany" class="image-loaded"&#62;
        
        
          The Evolutionary Theory of Tatiana Maslany
        
      
    
    The Evolutionary Theory of Tatiana Maslany
  &#124; Elle Magazine &#124; New York &#124; Composer, Sound Designer, Foley and Recording Engineer, Audio Post
  
  
  
  
    
      
        &#60;img src="https://i.vimeocdn.com//video//2036059839" alt="Cash App - How Do They Make Money: Victor Solomon" class="image-loaded"&#62;
        
        
          Cash App - How Do They Make Money: Victor Solomon
        
      
    
    Cash App - How Do They Make Money: Victor Solomon &#124; Cash App &#124; New York &#124; Composer, Music Maker


  
    
      
        &#60;img src="https://i.vimeocdn.com//video//2055024303" alt="Cash App - How Do They Make Money: David Suh" class="image-loaded"&#62;
        
        
          Cash App - How Do They Make Money: David Suh
        
      
    
    Cash App - How Do They Make Money: David Suh &#124; Cash App &#124; New York &#124; Composer, Music Maker







 
&#60;img src="https://i.vimeocdn.com//video//1986344389" alt="A Century of The New Yorker" loading="lazy" class="image-loaded"&#62;
    
    
      A Century of The New Yorker
    
  
  
    
      A Century of The New Yorker
    
  


  
  A Century of The New Yorker &#124; The New Yorker X New York Public Library &#124; New York &#124; Composer, Sound Designer, Sound Mixer, Audio Post

  



   
    
    
      
      &#60;img src="https://img.youtube.com/vi/YbEJuqypI4M/maxresdefault.jpg" alt="PaprTape x Burberry &#124; The gentle side of a freak with MicroFreak" loading="lazy" class="image-loaded"&#62;
      
      
        PaprTape x Burberry &#124; The gentle side of a freak with MicroFreak
      
    
  
  
    PaprTape x Burberry &#124; The gentle side of a freak with MicroFreak &#124; Arturia &#124; New York &#124; Artist, Composer, Sound Designer, Foley and Recording Engineer, Audio Post
  






 
    &#60;img src="https://i.vimeocdn.com//video//1977801113" alt="Video Title" loading="lazy" class="image-loaded"&#62;
    
    
      WOW Magazine: 蛇迎新歲 Year of the Snake
    
  
  
    
      WOW Magazine: 蛇迎新歲 Year of the Snake
    
  


  
   WOW Magazine: 蛇迎新歲 Year of the Snake &#124; The WOW Magazine &#124; New York &#124; Composer, Sound Designer, Foley Artist, Audio Post

  
  
  


  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1994657622" alt="Harper's Bazaar: Enfoldment" class="image-loaded"&#62;
        
        
          Harper's Bazaar: Enfoldment
        
      
    
    Harper's Bazaar: Enfoldment &#124; Harper's Bazaar &#124; Bangkok &#124; Composer, Sound Designer, Audio Post
  
  
  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1973469082" alt="Impact" class="image-loaded"&#62;
        
        
          Impact
        
      
    
    Impact (Director's Cut) &#124; Wilson X Roger Federer &#124; New York &#124; Sound Designer, Foley Artist, Audio Post
  




  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1850913285" alt="Tommy Hilfiger X Madelyn Cline at The Met Gala" class="image-loaded"&#62;
        
        
          Tommy Hilfiger X Madelyn Cline at The Met Gala
        
      
    
    Tommy Hilfiger X Madelyn Cline at The Met Gala &#124; Tommy Hilfiger &#124; New York &#124; Sound Designer, Final Mix
  
  
  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1850914470" alt="Tommy &#38;amp; Dee at The Met Gala" class="image-loaded"&#62;
        
        
          Tommy &#38;amp; Dee at The Met Gala
        
      
    
    Tommy &#38;amp; Dee at The Met Gala &#124; Tommy Hilfiger &#124; New York &#124; Composer, Sound Designer, Final Mix
  

 
    
      
        &#60;img src="https://i.vimeocdn.com//video//1850918408" alt="Tommy Hilfiger X Stray Kids at The Met Gala" class="image-loaded"&#62;
        
        
          Tommy Hilfiger X Stray Kids at The Met Gala
        
      
    
    Tommy Hilfiger X Stray Kids at The Met Gala &#124; Tommy Hilfiger &#124; New York &#124; Sound Designer, Final Mix
  


 
    
      
        &#60;img src="https://i.vimeocdn.com//video//2039747739" alt="Tommy &#38;amp; Dee at The Met Gala" class="image-loaded"&#62;
        
        
          Class Photo - Tommy Hilfiger at The Met Gala
        
      
    
    Class Photo - Tommy Hilfiger at The Met Gala &#124; Tommy Hilfiger &#124; New York &#124; Orchestrator, Sound Designer, Final Mix
  






  
        &#60;img src="https://i.vimeocdn.com//video//1950591504" alt="The Space Inside - Jeremy Anderson" class="image-loaded"&#62;
    
    
      The Space Inside - Jeremy Anderson
    
  
  
    
      The Space Inside - Jeremy Anderson
    
  

  
  The Space Inside - Jeremy Anderson
  &#124; Jeremy Anderson &#124; New York &#124; Composer, Sound Designer, Sound Mixer, Audio Post

  
  
  

  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1950595088" alt="The Space Inside - Jeremy Anderson Bronze Teaser" class="image-loaded"&#62;
        
        
          The Space Inside - Jeremy Anderson Bronze Teaser
        
      
    
    The Space Inside - Jeremy Anderson Bronze Teaser &#124; Jeremy Anderson &#124; New York &#124; Composer, Sound Designer, Sound Mixer, Audio Post
  
  
 
  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1950595658" alt="The Space Inside - Jeremy Anderson Tech Teaser" class="image-loaded"&#62;
        
        
          The Space Inside - Jeremy Anderson Tech Teaser
        
      
    
    The Space Inside - Jeremy Anderson Tech Teaser &#124; Jeremy Anderson &#124; New York &#124; Composer, Sound Designer, Sound Mixer, Audio Post





  
        &#60;img src="https://i.vimeocdn.com//video//1965527998" alt="Tax Relief Advocates December Commercial" class="image-loaded"&#62;
    
    
      Tax Relief Advocates December Commercial
    
  
  
    
      Tax Relief Advocates December Commercial
    
  

  
  Tax Relief Advocates December Commercial
  &#124; Tax Relief Advocates &#124; Irvine &#124; Sound Designer, Audio Post

  



  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1935879760" alt="No Tricks, Only Treats. Here at Tax Relief Advocates" class="image-loaded"&#62;
        
        
          No Tricks, Only Treats. Here at Tax Relief Advocates
        
      
    
    No Tricks, Only Treats. Here at Tax Relief Advocates &#124; Tax Relief Advocates &#124; Irvine &#124; Composer, Sound Designer, Audio Post
  
  
  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1950580694" alt="Tax Relief Advocates November Dinner" class="image-loaded"&#62;
        
        
          Tax Relief Advocates November Dinner
        
      
    
    Tax Relief Advocates November Dinner &#124; Tax Relief Advocates &#124; Irvine &#124; Sound Designer, Audio Post
  






 
    &#60;img src="https://i.vimeocdn.com//video//1547191406" alt="GAP Holiday &#124; Party" loading="lazy" class="image-loaded"&#62;
    
    
      GAP Holiday &#124; Party
    
  
  
    
      GAP Holiday &#124; Party
    
  


  
   GAP Holiday - Party &#124; Gap Inc &#124; New York &#124; Composer, Sound Designer, Audio Post

  
  


  
     
      
        &#60;img src="https://i.vimeocdn.com//video//1547189948" alt="GAP Holiday &#124; Brights" class="image-loaded"&#62;
        
        
          GAP Holiday &#124; Brights
        
      
    
    GAP Holiday - Brights &#124; Gap Inc &#124; New York &#124; Composer, Sound Designer, Audio Post
  

  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1553243354" alt="GAP Holiday &#124; Dance" class="image-loaded"&#62;
        
        
          GAP Holiday &#124; Dance
        
      
    
    GAP Holiday - Dance &#124;  Gap Inc &#124; New York &#124; Composer, Sound Designer, Audio Post
  

  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1656152728" alt="Gap Holiday Fleece" class="image-loaded"&#62;
        
        
          Gap Holiday Fleece
        
      
    
    Gap Holiday Fleece &#124; Gap Inc &#124; New York &#124; Composer, Sound Designer, Audio Post
  




  
    
      
        &#60;img src="https://i.vimeocdn.com//video//2040035202" alt="GAP Holiday Baby" class="image-loaded"&#62;
        
        
          GAP Holiday Baby
        
      
    
    GAP Holiday Baby &#124;  Gap Inc &#124; New York &#124; Composer, Sound Designer, Audio Post
  

  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1627576613" alt="Gap Denim High Rise Stride" class="image-loaded"&#62;
        
        
          Gap Denim High Rise Stride
        
      
    
    Gap Denim High Rise Stride &#124; Gap Inc &#124; New York &#124; Foley Artist, Sound Designer, Audio Post
  

  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1656151220" alt="GAP Downtown Khaki" class="image-loaded"&#62;
        
        
          GAP Downtown Khaki
        
      
    
    GAP Downtown Khaki &#124;  Gap Inc &#124; New York &#124; Foley Artist, Sound Designer, Audio Post
  
  






 
    &#60;img src="https://i.vimeocdn.com//video//1986812898" alt="Mastering Your Craft: Masayuki " mochy"="" mochizuki="" &#124;="" thom="" sweeney"="" loading="lazy" class="image-loaded"&#62;
    
    
      Mastering Your Craft: Masayuki "Mochy" Mochizuki &#124; Thom Sweeney
    
  
  
    
      Mastering Your Craft: Masayuki "Mochy" Mochizuki &#124; Thom Sweeney
    
  


  
   Mastering Your Craft: Masayuki "Mochy" Mochizuki &#124; Thom Sweeney &#124; Miami &#124; Sound Designer, Audio Post

  


  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1917643365" alt="Project" class="image-loaded"&#62;
        
        
          Thom Sweeney x Jonathan Weiss &#124; Mastering Your Craft
        
      
    
    Thom Sweeney Mastering Your Craft - Jonathan Weiss &#124; Thom Sweeney &#124; New York &#124; Sound Designer, Sound Mixer, Audio Post
  
  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1895422547" alt="Thom Sweeney X Billy Cotton &#124; Mastering Your Craft" class="image-loaded"&#62;
        
        
          Thom Sweeney X Billy Cotton &#124; Mastering Your Craft
        
      
    
    Thom Sweeney Mastering Your Craft - Billy Cotton &#124; Thom Sweeney &#124; New York &#124; Sound Mixer
  





  
        &#60;img src="https://i.vimeocdn.com//video//1799250545" alt="龍瑞盈門 Year of the Dragon" class="image-loaded"&#62;
    
    
      龍瑞盈門 Year of the Dragon
    
  
  
    
      龍瑞盈門 Year of the Dragon
    
  

  
  龍瑞盈門 Year of the Dragon
  &#124; The WOW &#124; New York &#124; Composer, Sound Designer, Audio Post

  
  
  


  
        &#60;img src="https://i.vimeocdn.com//video//1693284593" alt="Dior Beauty Director's Cut Starring Leni Klum" class="image-loaded"&#62;
    
    
      Dior Beauty Director's Cut Starring Leni Klum
    
  
  
    
      Dior Beauty Director's Cut Starring Leni Klum
    
  

  
  Dior Beauty Director's Cut Starring Leni Klum
  &#124; Dior &#124; New York &#124; Composer, Sound Designer, Audio Post

  



  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1926151146" alt="Hearts on Fire Insider" class="image-loaded"&#62;
        
        
          Hearts on Fire Insider
        
      
    
    Hearts on Fire Insider &#124; Hearts On Fire &#124; Hong Kong &#124; Composer, Sound Designer, Sound Recordist, Audio Post
  
  
  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1921934809" alt="Hearts on Fire - Store Opening" class="image-loaded"&#62;
        
        
          Hearts on Fire - Store Opening
        
      
    
    Hearts on Fire - Store Opening &#124; Hearts On Fire &#124; Hong Kong &#124; Composer, Sound Designer, Audio Post
  





  
        &#60;img src="https://i.vimeocdn.com//video//1895400550" alt="Artist Profile: Shu Lea Cheang" class="image-loaded"&#62;
    
    
      Artist Profile: Shu Lea Cheang
    
  
  
    
      Artist Profile: Shu Lea Cheang
    
  

  
  Artist Profile: Shu Lea Cheang
  &#124; LG X Guggenheim &#124; Paris &#124; Composer, Sound Designer, Sound Mixer, Audio Post

  



  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1345038341" alt="The Guggenheim Museum - Meet Us at the Gugg" class="image-loaded"&#62;
        
        
          The Guggenheim Museum - Meet Us at the Gugg
        
      
    
    Member's Ad - Meet Us at the Gugg &#124; The Guggenheim Museum &#124; New York &#124; Composer, Sound Designer
  
  
  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1674342254" alt="Farah Al Qasimi - LG Guggenheim Art &#38;amp; Technology Initiative" class="image-loaded"&#62;
        
        
          Farah Al Qasimi - LG Guggenheim Art &#38;amp; Technology Initiative
        
      
    
    Farah Al Qasimi - LG Guggenheim Art &#38;amp; Technology Initiative &#124; LG X Guggenheim &#124; New York &#124; Composer, Sound Designer, Sound Mixer, Audio Post
  




  
        &#60;img src="https://i.vimeocdn.com//video//1674420094" alt="Stephanie Dinkins -  LG Guggenheim Award" class="image-loaded"&#62;
    
    
      Stephanie Dinkins -  LG Guggenheim Award
    
  
  
    
      Stephanie Dinkins -  LG Guggenheim Award
    
  

  
  Stephanie Dinkins -  LG Guggenheim Award
  &#124; LG X Guggenheim &#124; New York &#124; Composer, Sound Designer, Sound Mixer, Audio Post

  





  
        &#60;img src="https://i.vimeocdn.com//video//1415561769" alt="Nepenthes New York X On Running: Cloudmonster" class="image-loaded"&#62;
    
    
      Nepenthes New York X On Running: Cloudmonster
    
  
  
    
      Nepenthes New York X On Running: Cloudmonster
    
  

  
  Nepenthes New York X On Running: Cloudmonster
  &#124; Nepenthes New York X On Running &#124; New York &#124; Composer, Sound Designer, Foley and Recording Engineer, Audio Post

  



  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1655002780" alt="包先生 Mr. Bag X Tory Burch" class="image-loaded"&#62;
        
        
          包先生 Mr. Bag X Tory Burch
        
      
    
    包先生 Mr. Bag X Tory Burch &#124; Tory Burch &#124; Shanghai &#124; Composer, Sound Designer, Audio Post
  
  
 
  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1655007108" alt="Melinda Wang X Tory Burch" class="image-loaded"&#62;
        
        
          Melinda Wang X Tory Burch
        
      
    
    Melinda Wang X Tory Burch &#124; Tory Burch &#124; Shanghai &#124; Sound Designer, Music Editor, Audio Post



  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1655004992" alt="YUYU X Tory Burch" class="image-loaded"&#62;
        
        
          YUYU X Tory Burch
        
      
    
    YUYU X Tory Burch
  &#124; Tory Burch &#124; Shanghai &#124; Composer, Sound Designer, Audio Post
  





  
        &#60;img src="https://i.vimeocdn.com//video//969917098" alt="Veegee 徐若侨 - Baby's Couch (Prod. by PaprTape)" class="image-loaded"&#62;
    
    
      Veegee 徐若侨 - Baby's Couch (Prod. by PaprTape)
    
  
  
    
      Veegee 徐若侨 - Baby's Couch (Prod. by PaprTape)r
    
  

  
  Veegee徐若侨 X Nike X Super
  &#124; SUPER &#124; Beijing &#124; Composer, Music Producer

  




  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1654746343" alt="Nana Ou Yang X Super" class="image-loaded"&#62;
        
        
          Nana Ou Yang X Super
        
      
    
    Nana Ou Yang X Super &#124; SUPER &#124; Taipei &#124; Composer, Sound Designer, Audio Post
  

 
    
 
        &#60;img src="https://i.vimeocdn.com//video//1655427046" alt="Harper's Bazaar Thailand" class="image-loaded"&#62;
        
        
          Harper's Bazaar Thailand
        
      
    
    Harper's Bazaar Thailand &#124; Harper's Bazaar &#124; Bangkok &#124; Composer, Sound Designer, Foley Audio Post
  
  
 
    
     
        &#60;img src="https://i.vimeocdn.com//video//2040306968" alt="Designer Spotlight: Marrisa Wilson NY" class="image-loaded"&#62;
        
        
          Designer Spotlight: Marrisa Wilson NY
        
      
    
    Designer Spotlight: Marrisa Wilson NY  Saks OFF 5TH &#124; New York &#124; Composer, Sound Designer, Recording Engineer, Audio Post
  





  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1445334011" alt="L'OFFICIEL – BURBERRY LOLA BAG" class="image-loaded"&#62;
        
        
          L'OFFICIEL – BURBERRY LOLA BAG
        
      
    
    L'Officiel June / July Cover Story &#124; L'Officiel Mexico X Burberry &#124; Mexico City &#124; Composer, Sound Designer, Foley and Recording Engineer, Audio Post
  

 
    
 
        &#60;img src="https://i.vimeocdn.com//video//1534411014" alt="Bernard James: FUNGI" class="image-loaded"&#62;
        
        
          Bernard James: FUNGI
        
      
    
    Bernard James: FUNGI Bernard James &#124; New York &#124; Composer, Audio Post
  
  
 
    
     
        &#60;img src="https://i.vimeocdn.com//video//2040314342" alt="Hypebae - On the Open Water feat. Olivia Cheng" class="image-loaded"&#62;
        
        
          Hypebae - On the Open Water feat. Olivia Cheng
        
      
    
    Hypebae - On the Open Water feat. Olivia Cheng &#124; Hypbeast X Take Me Fishing &#124; New York &#124; Recording Engineer
  





  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1740302892" alt="Hypebae X Jordan feat. Amiraa Vainqueur" class="image-loaded"&#62;
        
        
          Hypebae X Jordan feat. Amiraa Vainqueur
        
      
    
    Hypebae X Jordan feat. Amiraa Vainqueur &#124; Hypebeast X Jordan Brand &#124; New York &#124; Recording Engineer
  


    
     
        &#60;img src="https://i.vimeocdn.com//video//1738556703" alt="Hypebeast X Oakley -  Elie Kimbembe" class="image-loaded"&#62;
        
        
          Hypebeast X Oakley -  Elie Kimbembe
        
      
    
    Hypebeast X Oakley -  Elie Kimbembe &#124; Hypebeast X Oakley &#124; New York &#124; Recording Engineer
  

 
    
 
        &#60;img src="https://i.vimeocdn.com//video//1534395280" alt="Hypebae X Netflix: Sandy Liang" class="image-loaded"&#62;
        
        
          Hypebae X Netflix: Sandy Liang
        
      
    
    Hypebae X Netflix: Sandy Liang &#124; Hypebeast X Netfleix &#124; New York &#124; Recording Engineer
  





  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1488862759" alt="Jean Paul Gautier X Gigi Goode -  Pride Tour" class="image-loaded"&#62;
        
        
          Jean Paul Gautier X Gigi Goode -  Pride Tour
        
      
    
    Jean Paul Gautier X Gigi Goode -  Pride Tour &#124; Jean Paul Gautier &#124; New York &#124; Recording Engineer
  


    
     
        &#60;img src="https://i.vimeocdn.com//video//1663769138" alt="Sulwhasoo X Thurman 猫一杯" class="image-loaded"&#62;
        
        
          Sulwhasoo X Thurman 猫一杯
        
      
    
    Sulwhasoo X Thurman 猫一杯 &#124; Sulwahsoo &#124; Shanghai &#124; Recording Engineer
  

 
    
 
        &#60;img src="https://i.vimeocdn.com//video//1490163111" alt="Mother's Day - Girl Inc x Saks Off 5th" class="image-loaded"&#62;
        
        
          Mother's Day - Girl Inc x Saks Off 5th
        
      
    
    Mother's Day - Girl Inc x Saks Off 5th &#124; Girl Inc x Saks Off 5th &#124; New York &#124; Composer, Sound Designer
  





  
        &#60;img src="https://i.vimeocdn.com//video//2040329070" alt="Minimalissimo Selection: Architecture" class="image-loaded"&#62;
    
    
      Minimalissimo Selection: Architecture
    
  
  
    
      Minimalissimo Selection: Architecture
    
  

  
  Minimalissimo Selection: Architecture
  &#124; Minimalissimo &#124; New York &#124; Composer, Sound Designer, Foley, Audio Post

  




  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1593532927" alt="The WOW Magazine - 玉兔迎春 Year of the Rabbit" class="image-loaded"&#62;
        
        
          The WOW Magazine - 玉兔迎春 Year of the Rabbit
        
      
    
    玉兔迎春 Year of the Rabbit &#124; The WOW Magazine &#124; New York &#124; Composer, Sound Designer, Foley Artist, Audio Post
  


    
     
        &#60;img src="https://i.vimeocdn.com//video//1666437944" alt="CA1 CA2 Beauty Reel" class="image-loaded"&#62;
        
        
          CA1 CA2 Beauty Reel
        
      
    
    CA1 CA2 Beauty Reel &#124; CA1 CA2 &#124; New York &#124; Composer, Sound Designer, Audio Post
  

 
    
 
        &#60;img src="https://i.vimeocdn.com//video//1096724081" alt="PARS UNUM CORPA" class="image-loaded"&#62;
        
        
          PARS UNUM CORPA
        
      
    
    PARS UNUM CORPA &#124; Pars Unum &#124; New York &#124; Composer, Sound Designer, Audio Post
  





  
    
      
        &#60;img src="https://i.vimeocdn.com//video//1553226496" alt="On Demand: DVSN on How Jermaine Dupri Helped Craft 'Working On My Karma'" class="image-loaded"&#62;
        
        
          On Demand: DVSN on How Jermaine Dupri Helped Craft 'Working On My Karma'
        
      
    
    On Demand: DVSN on How Jermaine Dupri Helped Craft 'Working On My Karma' &#124; Okayplayer &#124; New York &#124; Recording Engineer, Sound Designer, Music Editor, Audio Post
  


    
     
        &#60;img src="https://i.vimeocdn.com//video//939728242" alt="The Letter - Burberry Monogram Pocket Bag Campaign" class="image-loaded"&#62;
        
        
          The Letter - Burberry Monogram Pocket Bag Campaign
        
      
    
    The Letter - Burberry Monogram Pocket Bag Campaign &#124; Burberry &#124; Beijing &#124; Composer, Sound Designer, Voice Over, Foley Artist
  

 
    
 
        &#60;img src="https://i.vimeocdn.com//video//939718921" alt="Marshall Emberton" class="image-loaded"&#62;
        
        
          Marshall Emberton
        
      
    
    Marshall Emberton &#124; Marshall Headphones &#124; Beijing &#124; Composer, Sound Designer, Voice Over, Foley Artist, Audio Post
  





  
    
      
        &#60;img src="https://i.vimeocdn.com//video//940139952" alt="SHANG1 - GameChanger" class="image-loaded"&#62;
        
        
          SHANG1 - Game Changer
        
      
    
    SHANG1 - Game Changer &#124; SHANG1 BY SHANGYI &#124; Beijing &#124; Sound Designer, Audio Post
  


    
     
        &#60;img src="https://i.vimeocdn.com//video//1021164071" alt="Mongo Cycle 牧歌时空" class="image-loaded"&#62;
        
        
          Mongo Cycle 牧歌时空
        
      
    
    Mongo Cycle 牧歌时空 &#124; Mongo Cycle 牧歌时空 &#124; Beijing &#124; Sound Designer, Foley Artist, Audio Post
  

 
    
 
        &#60;img src="https://i.vimeocdn.com//video//940112121" alt="Burberry 新疆" class="image-loaded"&#62;
        
        
          Burberry 新疆
        
      
    
    Burberry 新疆 &#124; Burberry &#124; Beijing &#124; Voice Over, Recording Engineer, Audio Post
  






  
        &#60;img src="https://i.vimeocdn.com//video//1038843793" alt="Xtep All For Flying Dynamic Foam X Spring Running Shoes" class="image-loaded"&#62;
    
    
      Xtep All For Flying Dynamic Foam X Spring Running Shoes
    
  
  
    
      Xtep All For Flying Dynamic Foam X Spring Running Shoes
    
  

  
  Xtep All For Flying Dynamic Foam X Spring Running Shoes
  &#124; Xtep &#124; Beijing &#124; Composer, Sound Designer, Foley Artist, Audio Post

  




  
</description>
		
		<excerpt>PaprTape Portfolio                               Discography          Brands &#38;amp; People —     Singles —     Albums &#38;amp; EPs —     Films —     Theater...</excerpt>

		<!--<wfw:commentRss></wfw:commentRss>-->

	</item>
		
		
	<item>
		<title>Pricingxyz</title>
				
		<link>http://www.paprtape.com/Pricingxyz</link>

		<comments></comments>

		<pubDate>Sun, 06 Jul 2025 06:46:20 +0000</pubDate>

		<dc:creator>paprtape</dc:creator>
		
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">457278</guid>

		<description>“For a 15 to 30s social video, my typical rate ranges from $2,500 to $3,500 depending on complexity, revisions, and delivery timeline. That includes fully bespoke music, sound design, foley, and final mix. For around +/-60s, my rate typically ranges from $3,000 to $5,000 per video. However, if it's&#38;nbsp;a whole campaign with&#38;nbsp;multiple videos, such as the one we recently did for Google, I'm happy&#38;nbsp;to do a package deal.


If the project requires a full on music production such as a custom song with vocals, live players, or orchestras, then we can scope it out for more details. Those typically&#38;nbsp;go from $5000 and up depending on session needs,&#38;nbsp;licensing, etc.


This is general pricing. I understand the budget can vary depending on the project, so always feel free to reach out if a project needs a specific approach.“For Chinese Market:
Music Composition for Features, TV Series, Games and other projects with a 15 Minutes of Music:$750 USD / 5000元 RMB per minute of original music

Music Composition for Shorts, Live Events, Games, Theme Park Attractions and other projects with 5-15 Minutes of Music:$1125 USD / 7500元 RMB per minute of original music

Music Composition for Commercials, Trailers and other projects with around 1 Minutes, under 5 minutes, of Music:$1500 USD / 10000元 RMB per minute of original music

Live Instruments Recording is not included in the above prices, but can be added for around $1000-3500 per minute of music. Price is highly dependent on the instruments used, the specific players needed, and how much time is needed to record. If live instruments are desired, a free quote can be generated in the first weeks of the project after the composer has watched the visuals and had a conversation with the director about what kind of music is desired. (Video recording of live orchestra sessions can be added for $390 per day of filming).

Singers and Lyricists other than the composer are not included in these prices, but can be added. The prices for these are highly variable, and are usually more dependent on the fame of the artist rather than their ability. If you’re interested in a singer or lyricist that fits your budget, we can help you find one in most languages and styles.

There are no other fees besides these when using our Standard Licensing Agreement. All writing, production, mixing, studio and delivery costs are included._________________
ServiceTypical Rate RangeNotesSocial Campaign (≤60s) – Indie$2,500 – $4,000For startups, small fashion or product brandsSocial Campaign – Agency/Brand$4,000 – $8,000Includes exclusive use,

Commercial (30s–60s) – Regional$6,000 – $10,000Custom music, full sound design, exclusive license

Commercial – National / Global$10,000 – $25,000+Broadcast, global digital, perpetual usage

Fashion Film / Trailer$4,000 – $12,000+Based on scope, narrative, and run-time
Licensing Existing Track (Buyout)$3,000 – $15,000+Based on usage, media, and territoryStudio Day Rate$800 – $1,500/dayIncludes creative, edits, mixing
___________
🔸 Per-Minute Pricing (for Narrative, Film, Themed Projects)LengthPrice / MinuteNotes&#38;gt;15 min$800 – $1,000/minFilms, series, art projects5–15 min$1,200 – $1,500/minShorts, trailers, long-form branded content&#38;lt;5 min$1,500 – $2,000/minCommercials, fashion films, high-end reels
Includes original music + mix. Sound design or stems = extra.
🔸 Flat Rate Pricing (for Agencies, Commercials, and Social)Project TypeFlat Rate RangeSocial Media Campaign (30–60s)$4,000 – $6,000Branded Short / Fashion Film$6,000 – $12,000Commercials / Product Films$8,000 – $15,000+
Includes music, sound design, and exclusive license. Multi-version / territory / usage = adjust accordingly.
Project TypeAdd-On Sound Design FeeShortform (under 5 minutes)$500–$800 per minuteMid-length (5–15 minutes)$400–$700 per minuteLongform (15+ minutes, continuous)$300–$600 per minute
</description>
		
		<excerpt>“For a 15 to 30s social video, my typical rate ranges from $2,500 to $3,500 depending on complexity, revisions, and delivery timeline. That includes fully bespoke...</excerpt>

		<!--<wfw:commentRss></wfw:commentRss>-->

	</item>
		
		
	<item>
		<title>cn</title>
				
		<link>http://www.paprtape.com/cn</link>

		<comments></comments>

		<pubDate>Sat, 29 Mar 2025 06:39:10 +0000</pubDate>

		<dc:creator>paprtape</dc:creator>
		
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">456388</guid>

		<description>
    /* ... (your existing styles) ... */

    /* New/Updated styles for alignment */
    .top-header-container {
        display: flex; /* Use flexbox for easy alignment */
        justify-content: space-between; /* Push logo to left, language selector to right */
        align-items: center; /* Align items vertically in the middle */
        width: 100%; /* Ensure it takes full width if needed */
        /* Optional: Add a min-height if your logo is tall to ensure alignment */
        /* min-height: 60px; */ 
    }

    div.image-container {
        /* Keep the float for the image if it works, or we can rely on flexbox */
        /* float: left;  */
        /* margin: 10px; */
        /* Or, better for flexbox, remove float and let flex handle it */
         flex-shrink: 0; /* Prevents the logo container from shrinking */
    }

    div.image-container img {
        display: block; /* Removes potential inline spacing */
        /* Your existing image styles */
        width: 9px;
        height: 50px;
        margin: 10px 0; /* Adjust vertical margin as needed, remove horizontal */
    }

    /* Style for the language selector */
    .language-selector {
        /* text-align: right; */ /* Not needed with flexbox */
        /* margin-bottom: 10px; */ /* Adjust or remove if alignment is handled by flexbox */
        /* Align items to the right within the flex container */
        margin: 10px 0; /* Adjust vertical margin to match logo */
    }

    .language-selector a {
        margin-left: 15px; /* Space between language links */
        text-decoration: none;
        font-weight: bold;
        white-space: nowrap; /* Prevents links from breaking onto new lines */
    }

    .language-selector a.current-lang {
        color: grey;
        font-weight: normal;
        pointer-events: none;
        cursor: default;
    }




    
    
        
        
         
            
                &#60;img src="https://cortex.persona.co/t/original/i/9e21075698d347f5661f768a85c1e9ad63100e3fd6768e0aa2c323aa5b323c8e/PaprStudios-WH.png" alt="paprtape"&#62;
                 
            
        
        

        
        
             
             EN
             中文
             
        
        
        
    
    

    
  

杨伯翊
PaprTape 
音乐与声音设计

   
 作品 — 精选集 — 关于 — 联系
 








www.arturia.com/stories/paprtape


《纽约客》百年特辑 音乐与声音设计
《WOW杂志：蛇年特刊》 音乐与声音设计



「PaprTape 将城市声景与合成音色编织成治愈却充满力量的氛围万花筒。」
—Arturia


「《Morning Chiprs》是自然与科技的迷人交响……一场邀请听众与天地共鸣的听觉仪式。」
— Last Day Deaf



「《Lyra》是单次模拟录音的典范，音乐与影像在完美摄制中达成诗性共生。」
—ZR, Destroy//Exist






「《Wintry》以极简主义构筑宁静的环境诗篇，展现对音色纹理的梦幻掌控力。」
—Rob Pringle,&#38;nbsp;Plastic Magazine

</description>
		
		<excerpt>...</excerpt>

		<!--<wfw:commentRss></wfw:commentRss>-->

	</item>
		
		
	<item>
		<title>Press</title>
				
		<link>http://www.paprtape.com/Press</link>

		<comments></comments>

		<pubDate>Fri, 13 Sep 2024 18:30:23 +0000</pubDate>

		<dc:creator>paprtape</dc:creator>
		
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">454268</guid>

		<description>&#60;img src="https://cortex.persona.co/t/original/i/9e21075698d347f5661f768a85c1e9ad63100e3fd6768e0aa2c323aa5b323c8e/PaprStudios-WH.png" width="9.72" height="50" alt="paprtape" style="width: 9px; height: 50px;"&#62;

&#60;img width="6000" height="6000" width_o="6000" height_o="6000" src_o="https://cortex.persona.co/t/original/i/b3ae21b2a6b9392e5a1b9c2330a6cfb4e91b4f6d49381f15358d4862cee91319/Paprtape-Morning-Chirps.jpg" data-mid="1378010" border="0" data-scale="20"/&#62;September 26, 2024
MORNING CHIRPS



Preview Song“We enjoyed the sound design and textures.” 
-Visual Atlier 8
“Great track“
 -Nik Davies
“This is wonderful work, very delightful stuff! “&#38;nbsp; 
-Arielle, Ingrown Radio
                        
After the success of his first EP, Midafternoon Dream, PaprTape has
been dedicated to crafting unique soundscapes for clients and
brands. His collaborations have spanned various industries, working
closely with the Guggenheim Museum, Tommy Hilfiger, and other
notable names.

						
One morning in late August, PaprTape found inspiration while experimenting with the new Actias Q1 Synth from Moth Quantum. The early
sounds of birds and insects sparked his creativity, leading him to craft
a harmonious blend that sings with nature. Utilizing quantum computing technology, he simplified the complex synth to create a piece
that beautifully bridges the gap between the natural world and
advanced technology.

						
“When I hear the birds and insects singing in the morning, it inspires
me! I then tried to communicate with them using my synthesizer,”&#38;nbsp;PaprTape shares.

						
It has been two years since PaprTape’s last release. He explains that
he’s been immersed in creating music for others, leaving little time for
personal projects. “It’s nice to finally let myself be part of the music
again,” he says, sipping a cup of tea. “Making music for others has
been fulfilling, but there’s something special about finding solitude
and expressing yourself musically.”

						
Currently, PaprTape continues to work closely with directors, videog-
raphers, and artists across various fields, bringing their visions to life
with his signature sound.
PRESS ASSETS: DOWNLOAD HERE

Distributed by United Masters



</description>
		
		<excerpt>September 26, 2024 MORNING CHIRPS    Preview Song“We enjoyed the sound design and textures.”  -Visual Atlier 8 “Great track“  -Nik Davies “This is...</excerpt>

		<!--<wfw:commentRss></wfw:commentRss>-->

	</item>
		
		
	<item>
		<title>Morning Chirps</title>
				
		<link>http://www.paprtape.com/Morning-Chirps</link>

		<comments></comments>

		<pubDate>Fri, 13 Sep 2024 02:01:03 +0000</pubDate>

		<dc:creator>paprtape</dc:creator>
		
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">454259</guid>

		<description>&#60;img src="https://cortex.persona.co/t/original/i/9e21075698d347f5661f768a85c1e9ad63100e3fd6768e0aa2c323aa5b323c8e/PaprStudios-WH.png" width="9.72" height="50" alt="paprtape" style="width: 9px; height: 50px;"&#62;



&#60;img width="6000" height="6000" width_o="6000" height_o="6000" src_o="https://cortex.persona.co/t/original/i/9893c3b5b2f8f2d92b4af1770e25811cc0e45f98e02eb6c493912e5bf5172f85/Paprtape-Morning-Chirps.jpg" data-mid="1377919" border="0" data-scale="30"/&#62;September 26, 2024
MORNING CHIRPS



Preview Song
						
                        
After the success of his first EP, Midafternoon Dream, PaprTape has
been dedicated to crafting unique soundscapes for clients and
brands. His collaborations have spanned various industries, working
closely with the Guggenheim Museum, Tommy Hilfiger, and other
notable names.

						
One morning in late August, PaprTape found inspiration while experimenting with the new Actias Q1 Synth from Moth Quantum. The early
sounds of birds and insects sparked his creativity, leading him to craft
a harmonious blend that sings with nature. Utilizing quantum computing technology, he simplified the complex synth to create a piece
that beautifully bridges the gap between the natural world and
advanced technology.

						
“When I hear the birds and insects singing in the morning, it inspires
me! I then tried to communicate with them using my Actias,”&#38;nbsp;PaprTape shares.

						
It has been two years since PaprTape’s last release. He explains that
he’s been immersed in creating music for others, leaving little time for
personal projects. “It’s nice to finally let myself be part of the music
again,” he says, sipping a cup of tea. “Making music for others has
been fulfilling, but there’s something special about finding solitude
and expressing yourself musically.”

						
Currently, PaprTape continues to work closely with directors, videog-
raphers, and artists across various fields, bringing their visions to life
with his signature sound.“We enjoyed the sound design and textures.” -Visual Atlier 8“Great track“ -Nik Davies“This is wonderful work, very delightful stuff! “&#38;nbsp; -Arielle, Ingrown Radio"PaprTape's Morning Chiprs is a captivating blend of nature and technology... an enchanting auditory experience that invites listeners to connect with nature." — Last Day Deaf



Distributed by United Masters



</description>
		
		<excerpt>September 26, 2024 MORNING CHIRPS    Preview Song 						                          After the success of his first EP, Midafternoon Dream, PaprTape has been...</excerpt>

		<!--<wfw:commentRss></wfw:commentRss>-->

	</item>
		
		
	<item>
		<title>gy</title>
				
		<link>http://www.paprtape.com/gy</link>

		<comments></comments>

		<pubDate>Mon, 05 Feb 2024 00:51:46 +0000</pubDate>

		<dc:creator>paprtape</dc:creator>
		
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">451466</guid>

		<description>
       div.image img {
  float: left;

            margin: 10px;

  }
  h3,p {margin:5;}
    /* New/Updated styles for alignment */
    .top-header-container {
        display: flex; /* Use flexbox for easy alignment */
        justify-content: space-between; /* Push logo to left, language selector to right */
        align-items: center; /* Align items vertically in the middle */
        width: 100%; /* Ensure it takes full width if needed */
        /* Optional: Add a min-height if your logo is tall to ensure alignment */
        /* min-height: 60px; */ 
    }

    div.image-container {
        /* Keep the float for the image if it works, or we can rely on flexbox */
        /* float: left;  */
        /* margin: 10px; */
        /* Or, better for flexbox, remove float and let flex handle it */
         flex-shrink: 0; /* Prevents the logo container from shrinking */
    }

    div.image-container img {
        display: block; /* Removes potential inline spacing */
        /* Your existing image styles */
        width: 9px;
        height: 50px;
        margin: 10px 0; /* Adjust vertical margin as needed, remove horizontal */
    }

    /* Style for the language selector */
    .language-selector {
        /* text-align: right; */ /* Not needed with flexbox */
        /* margin-bottom: 10px; */ /* Adjust or remove if alignment is handled by flexbox */
        /* Align items to the right within the flex container */
        margin: 10px 0; /* Adjust vertical margin to match logo */
    }

    .language-selector a {
        margin-left: 15px; /* Space between language links */
        text-decoration: none;
        font-weight: bold;
        white-space: nowrap; /* Prevents links from breaking onto new lines */
    }

    .language-selector a.current-lang {
        color: grey;
        font-weight: normal;
        pointer-events: none;
        cursor: default;
    }




    
    
        
        
         
            
                &#60;img src="https://cortex.persona.co/t/original/i/9e21075698d347f5661f768a85c1e9ad63100e3fd6768e0aa2c323aa5b323c8e/PaprStudios-WH.png" alt="paprtape"&#62;
                 
            
        
        

        
        
             
             EN
             中文
             
        
        
        
    
    


关于


   
&#60;img width="2082" height="2082" width_o="2082" height_o="2082" src_o="https://cortex.persona.co/t/original/i/12c53f884977eda2902b64e9225644b1be9b423c4549466409e0bcd3d28a5fbe/P1190355.jpg" data-mid="1346452" border="0" data-scale="39"/&#62;楊伯翊，艺名 PaprTape，是一位多才多艺的艺术家，作为作曲家、声音设计师和音乐家，在业界享有盛名。PaprTape 热衷于融合传统与现代技术，创作出多种风格的音乐，服务于全球顶级客户和听众。

PaprTape 出色的作品引起了 Arturia 的关注，他们在其“艺术家故事”系列中展示了他为 Burberry 的 Olympia 包广告活动创作的音乐，该活动由 Mia Kong 主演。他的才华和对艺术的投入还为他赢得了诸多委托项目，包括为美国华人博物馆和纽约古根海姆博物馆创作音乐。

PaprTape 出生于美国俄亥俄州辛辛那提市，从小开始学习小提琴和钢琴，随后频繁往返于美国和台湾，向多位老师学习。他曾师从茱莉亚音乐学院的 Khuillip Jeung，并在亚洲职业生涯期间，凭借对邓丽君《你怎么说》的混音，在国际花卉博览会混音比赛中获得第一名。后来，他为一个女团制作音乐，并为林俊杰的《友人說 Somebody》创作了音乐和声音设计。
PaprTape 的才华和敬业精神使他获得了菲利普·格拉斯Philip Glass 乐团音乐总监 Michael Riesman 的学徒机会，并参与与菲利普·格拉斯一起制作乐谱和录音。从那时起，他继续为世界顶级品牌和艺术家制作、作曲和表演，其中包括 The Gap、Marshall 耳机和 Burberry 等。





&#60;img width="4976" height="2800" width_o="4976" height_o="2800" src_o="https://cortex.persona.co/t/original/i/3478441796fd5aac996178f59fc0513de797723c085c05770872b5f28350be1d/P1210516.jpg" data-mid="1346453" border="0" /&#62;
杨伯翊与菲利普·格拉斯（右）于詹姆斯·L·多兰录音棚进行《白喇嘛》配乐录制·2019年2月17日


杨伯翊 X Burberry &#124; 当鬼才显露温柔面：MicroFreak合成器的诗意演绎 
PaprTape x Burberry &#124; The gentle side of a freak with MicroFreak"PaprTape 将城市声景与合成器音色编织成抚慰心灵却充满力量的氛围万花筒。"(PaprTape weaves urban sounds into a kaleidoscope of soothing yet powerful ambience)
—Arturia
乐评 (单曲《Lyra》) PaprTape: Lyra "这首作品堪称单次模拟录音的典范——音乐与精心摄制的影像浑然一体，每个细节都完美捕捉。"(The track is the exemplification of a single-take analog recording, with everything captured perfectly in the captivating, beautifully shot and produced video which accompanies the music)—ZR, Destroy//Exist
乐评 (单曲《SINGULARITY》) PAPRTAPE - "SINGULARITY"&#38;nbsp;"...一场美妙而极简的表演：声波如脑波般弯曲流转，在躯体与机器间传递思想，彼此交融逆转。"(...a beautifully and deceptively simple performance and piece of music that captures the flow of ideas from body to machine, sine-waves bending like brainwaves becoming full thoughts and sometimes vice-versa)
—Ryan Hall, Tome to the Weather Machine乐评 (单曲《SINGULARITY》) PaprTape – Singularity&#38;nbsp;"《Singularity》是神圣的天启仪式，展现通往顿悟的升华之路——神性之美、孤独哲思与我们内在的无限宇宙在此共鸣。"(A sacrosanct exhibition of heavenly acclimation, ‘Singularity‘ appears part of the broader ascent towards enlightenment, if as an expression of providential beauty, solitude, &#38;amp; the infinite multiverse within us all)—Charles Davis, Give It A Spin
杨伯翊氛围音乐作品 Ambient music from PaprTape
"极简主义的抚慰诗篇：冷静而迷人，《Wintry》彰显艺术家构筑梦境纹理的功力与对乐器的绝对掌控。"(The arrangement offers a soothing ambient expression of minimalism. Both calming and intriguing, “Wintry” demonstrates the artist’s ability to create dreamy textures and a complete control over his instrument)—Rob Pringle, Plastic Magazine

乐评 (单曲《Wintry》) PaprTape - Wintry
"此曲散发的宁静令人成瘾，百听仍渴求重溯此刻灵魂——强烈推荐深挖PaprTape音乐宇宙。"(The peace exuded here is addictive, enticing one to repeatedly invoke the spirit of the moment – 1000 listens isn’t enough. A favorite of this blog, it is advised that one delves further into the catalog of Papr Tape)
—Charles Davis, Give It A Spin
杨伯翊《午后梦》：令人神游天外的舒缓恍惚之境
PaprTape "Midafternoon Dream": a mind numbingly soothing trance
"无忧之境徐徐展开：这首极简主义杰作构建出令人麻木般舒缓的恍惚状态。"(An unraveling ambience with no troubles, this piece is a minimalistic music masterpiece)
—Music Dances When You Sleep


七种融汇多元 7 Eclectic"沉浸其声如坠天堂音场，当音景抚平灵魂，便成纯粹极乐。心跳般的休止符在暮色晨光间律动——此曲连接呼吸与心跳的纸上诗篇，永驻心间。"(There is a rush of immersion as you listen to his works, a sense of being placed in a paradise-like acoustic play yard. When the soundscapes calm our soul, it becomes pure bliss. The beautiful pauses and heart-beats arrive from time to time; through dusk till dawn, we are amazed. I’m writing this on paper, and it will never wash out. This is a track to connect your breath with your heart)
—Niki, Give It A Spin



</description>
		
		<excerpt>...</excerpt>

		<!--<wfw:commentRss></wfw:commentRss>-->

	</item>
		
	</channel>
</rss>