Southfreak-in-plan-b-2023-s01e03-04-hindi-hot-web-series-720p-hdrip-x264-mkv Info

print(video_feature)

Here is a simple python class representing the features of the file.

# create an instance of VideoFeature video_feature = VideoFeature( title="Southfreak In Plan B", season=1, episode=[3, 4], year=2023, language="Hindi", video_quality="720p", video_codec="H.264", container_format="MKV" )

def __str__(self): return f"Title: {self.title}\nSeason: {self.season}\nEpisode: {self.episode}\nYear: {self.year}\nLanguage: {self.language}\nVideo Quality: {self.video_quality}\nVideo Codec: {self.video_codec}\nContainer Format: {self.container_format}"

class VideoFeature: def __init__(self, title, season, episode, year, language, video_quality, video_codec, container_format): self.title = title self.season = season self.episode = episode self.year = year self.language = language self.video_quality = video_quality self.video_codec = video_codec self.container_format = container_format