Linux
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
I understand the end result you want to achieve, but what do you mean with "parse a rss reader through ffplay"? Parsing is taking in a string (text) and building some datastructure from it (like an AST). You can parse a rss feed (it's XML) but I don't get what parsing a rss reader is. Also "through ffplay"? You want ffplay to parse your rss for you? Or do you want to parse rss and than have ffplay somehow display the result (the news headlines taking from the feed)? ffplay displays videos and images (I use it as my only video player lol). If you want to render some text underneath a video stream I think you need ffmpeg first and than pipe the result into ffplay.
Thank you for your explanation, but what I had in mind "in depth" was to "store" the latest news acquired from a rss link into a variable (say, $NEWS), and then display it all way down with -vf drawtext=text="''$NEWS':fontsize=etc:other:attributes"
followed by a scroll effect (to the left)... which I'm pretty sure its possible, but I don't know which package is appropriate for the former.
I see, I didn't know ffplay could do some ffmpeg stuff by itself but it makes sense (ffplay is bundled with ffmpeg). I tried a very small example, you have to tweak it:
-vf drawtext="fontsize=20:fontcolor=white:text=example line of text:y=h-line_h:x=mod(w+text_w-50*t\,w)"
It makes the text scroll right to left, looping back to the start when it goes off screen. I adapted it slightly from the examples section of the manual: https://ffmpeg.org/ffmpeg-filters.html#Examples-71
Yes! This is more like it. Thank you.
Now to figure out a package that acquires the latest news out of a rss link and prints it in the cli.