BitChute: Howto get the video title?

How to get the title, if there is no “h1” or similar?

https://createfeed.fivefilters.org/index.php?url=https%3A%2F%2Fwww.bitchute.com%2Fchannel%2Fgwpziiqzrvt3%2F&item=.channel-videos-container&item_title=a&item_url=a&item_desc=p&max=7&order=document

<div class="channel-videos-title">
<a href="/video/VIDEO-ID/" class="spa">VIDEO-TITLE</a>
</div>

The main thing to do here is to choose a better item element. Your version will pick the first <a> element for the URL and title. If you select the inner item element <div class="channel-videos-text-container">...</div> you’ll get the result you want:

(I modified it to to include date and the pick out the description element rather than the first <p> element within it.)

1 Like