ADVERTISEMENT

Indonesia's Kaleb J and Ruth Garcia share love for OPM

Published Mar 4, 2023 05:50 pm

Kaleb J is a popular R&B artist based in Indonesia. Ruth Garcia is likewise a rising pop act from the heritage rich nation.

The two are out with the easy-listening, R&B tune titled “All That I Needed.”

In an interview with Bulletin Entertainment, the two shared how the collaboration came about.

“We have good chemistry when it comes to good music,” said Ruth about Kaleb, who is also a label mate under Passion Vibe.

“We wrote lots of songs together but we never had a collaboration (record). So I was thinking this is a perfect opportunity for us to have a song together,” said Kaleb, who added “I really like her writing style. She’s so talented.”

“All That I Needed” was written by Kaleb and Ruth together with songwriters Abraham Edo and Belanegra Abe who also produced the track for them.

The two also shared the inspiration behind the song.

Ruth pointed out that it's her family mainly.

“At the second verse I wrote 'Though we’re miles apart, you’re still in my heart' the lines came up because my family and I live in a different city and country. For me, being apart with them taught me that distance is not an obstacle when it comes to love.”

“The inspiration came from my memories with families and friends. I try to capture all of the memories and put it altogether in this song,” Kaleb added.

So, is this the type of pop that Indonesians like listening to?

Said Ruth, “I think it's the kind of song that will be accepted anywhere in terms of the lyrics and melodies. We believe that we gave our best when we made this song. Whether it’s the kind of song Indonesians like to listen to or not, 'All That I Needed' is such a beautiful song.”

“I agree with Ruth. 'All That I Needed' is a kind of song that will be accepted everywhere. And it’s not just because of the acoustic pop sound, it is more than that. The message of this song is so powerful. It carries a beautiful meaning of love. This makes the song have an authentic feeling everytime you hear it,” opined Kaleb.

Ruth and Kaleb related that Indo-pop is a “lively and diverse scene” and both also agree that it has many colors and that both are proud to be part of it and are glad to be ambassadors sharing the sounds of Indo pop across borders.

But have they ever listened to Pinoy pop?

“I  listen to Christian Bautista, MYMP, and Lea Salonga. I adore their music,” shared Ruth.  

“Of course! I heard some Filipino Music, and I really like it,” enthused Kaleb.

“One of my favorites is 'Bakit Pa Ba' by Jay R. He is crazy talented, and his voice is so authentic. Also the song itself is already perfect. Truly an inspiration.”

Finally, Ruth said, “I hope our song will be something fresh and inspiring to our Filipino audiences. And I can't wait to visit the Philippines for a tour.”

“I can’t wait to meet all of you so we can sing along together,” said Kaleb.

“All That Matters” is available on all streaming platforms.

Related Tags

Pinoy Pop
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.