LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > General
User Name
Password
General This forum is for non-technical general discussion which can include both Linux and non-Linux topics. Have fun!

Notices


Reply
  Search this Thread
Old 05-06-2022, 09:40 AM   #16
jmgibson1981
Senior Member
 
Registered: Jun 2015
Location: Tucson, AZ USA
Distribution: Debian
Posts: 1,141

Rep: Reputation: 392Reputation: 392Reputation: 392Reputation: 392

All of them are biased in some way. The only way to get somewhat accurate information is to track a lot of different ones, then you can see what's going on. It's sadly not as easy as finding "one that isn't biased". This world spins everything. And even if you do you still have to take everything with a grain of salt so to speak.
 
Old 05-06-2022, 10:44 AM   #17
Xeratul
Senior Member
 
Registered: Jun 2006
Location: UNIX
Distribution: FreeBSD
Posts: 2,657

Rep: Reputation: 255Reputation: 255Reputation: 255
Quote:
Originally Posted by teckk View Post
Deutsche Welle has a English version
Code:
yt-dlp -f 93 https://m.youtube.com/watch?v=GE_SfNVNyqk -o - | ffplay -
Sky News
Code:
yt-dlp -f 93 https://m.youtube.com/watch?v=9Auq9mYxFEE -o - | ffplay -
Newsy
Code:
yt-dlp -f 18 https://m.youtube.com/watch?v=gxJ6eJtGYFw -o - | ffplay -
Reuters
Code:
yt-dlp -f 93 https://m.youtube.com/watch?v=OsksEXx2X9M -o - | ffplay -
PBS
Code:
yt-dlp -f 18 https://m.youtube.com/watch?v=bhM2rT38JXE -o - | ffplay -
Fox
Code:
yt-dlp -f 18 https://m.youtube.com/watch?v=FACbviA9Umc -o - | ffplay -
ABC (US)
Code:
yt-dlp -f 93 https://m.youtube.com/watch?v=w_Ma8oQLmSM -o - | ffplay -
ABC (OZ)
Code:
yt-dlp -f 93 https://m.youtube.com/watch?v=vOTiJkg1voo -o - | ffplay -
One could make a shell script using select for a menu.
does youtube-dl works too with | mplayer - and the https ?
 
Old 05-06-2022, 11:18 AM   #18
teckk
LQ Guru
 
Registered: Oct 2004
Distribution: Arch
Posts: 5,137
Blog Entries: 6

Rep: Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826
Quote:
does youtube-dl works too with | mplayer - and the https ?
Sure. I don't have it installed now, I changed over to yt-dlp. But other than a little different functionality, it works about the same.

mplayer will sometimes gives errors on streams like that. Cannot seek backward in linear streams!

ffplay, mpv, plays this ok, and I would guess that vlc does too.
Code:
url=$(yt-dlp -f 93 -g https://m.youtube.com/watch?v=vOTiJkg1voo)

ffplay/mpv "$url"
mplayer errors
Code:
"Cannot seek backward in linear streams!"
I had to let mplayer cache a little. This works.
Code:
mplayer -cache 2048 -cache-min 80 "$url"
Read:
man mplayer
man mpv
man youtube-dl
man yt-dlp
man fifo
man mkfifo
 
Old 05-06-2022, 11:56 PM   #19
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Bias is relative.
There's a little bias, and there's a lot.
I like to choose news sources with as little bias as possible.
But even the bias can be part of the news, e.g. how certain news items are viewed in different countries.

BTW, news and media organisations are required to uphold journalistic, professional and legal standards. Amongst other things, this means stories are researched and verified before they go public. That's why I prefer to get news from there, not from social media "content creators" who aren't bound by (most) such regulations. Of course there's nothing wrong with a little opinionating every now and then, but one shouldn't mistake that for information.
 
Old 05-06-2022, 11:58 PM   #20
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by teckk View Post
One could make a shell script using select for a menu.
This was my first thought as soon as I saw your helpful links.
I chose mpv to play them, your script hardly needed any adjusting. Thanks.
Code:
#!/usr/bin/bash

feeds=(
#Deutsche Welle
https://m.youtube.com/watch?v=GE_SfNVNyqk

#Sky News
https://m.youtube.com/watch?v=9Auq9mYxFEE

#Newsy
https://m.youtube.com/watch?v=gxJ6eJtGYFw

#Reuters
https://m.youtube.com/watch?v=OsksEXx2X9M

#PBS
https://m.youtube.com/watch?v=bhM2rT38JXE

#Fox
https://m.youtube.com/watch?v=FACbviA9Umc

#ABC (US)
https://m.youtube.com/watch?v=w_Ma8oQLmSM

#ABC (OZ)
https://m.youtube.com/watch?v=vOTiJkg1voo
)

PS3="
Select an option.:  "

while :; do
    clear
    options=(DW Sky Newsy Reuters PBS Fox ABC-us ABC-au Quit)
    COLUMNS=1 # force vertical layout for select
    select opt in "${options[@]}"; do
        for index in "${!options[@]}"; do
            if [ "${options[$index]}" = "${opt}" ]; then
                case "$opt" in
                    Quit) clear; exit;;

                    *) #Do something with a ytdl and a media player
                        echo "You chose > $opt - ${feeds[$index]}"
                        mpv "${feeds[$index]}"
                    ;;
                esac
            fi
        done
        break
    done   
done
 
Old 05-07-2022, 07:54 AM   #21
rtmistler
Moderator
 
Registered: Mar 2011
Location: USA
Distribution: MINT Debian, Angstrom, SUSE, Ubuntu, Debian
Posts: 9,882
Blog Entries: 13

Rep: Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930
I think they all have potential bias.

What I'm interested in also is quietness:

A list of text only news sites
 
Old 05-08-2022, 09:27 AM   #22
hish2021
Member
 
Registered: Jan 2021
Posts: 117

Rep: Reputation: Disabled
Some content creators claim to have more subscribers than channels like CNN & MSNBC. And some claim to do investigative journalism: https://thegrayzone.com/.

News without analysis is nothing despite the fancy sets and throbbing music and the multiple "brought to you by ..." reminders of who's running the show.

And many hold "fact-checkers" in high esteem but the funding of this brood is interesting.

But Mary Poppins will make things right.
 
Old 05-08-2022, 09:50 AM   #23
wpeckham
LQ Guru
 
Registered: Apr 2010
Location: Continental USA
Distribution: Debian, Ubuntu, RedHat, DSL, Puppy, CentOS, Knoppix, Mint-DE, Sparky, VSIDO, tinycore, Q4OS,Manjaro
Posts: 5,623

Rep: Reputation: 2695Reputation: 2695Reputation: 2695Reputation: 2695Reputation: 2695Reputation: 2695Reputation: 2695Reputation: 2695Reputation: 2695Reputation: 2695Reputation: 2695
Quote:
Originally Posted by hish2021 View Post
Some content creators claim to have more subscribers than channels like CNN & MSNBC. And some claim to do investigative journalism: https://thegrayzone.com/.

News without analysis is nothing despite the fancy sets and throbbing music and the multiple "brought to you by ..." reminders of who's running the show.

And many hold "fact-checkers" in high esteem but the funding of this brood is interesting.

But Mary Poppins will make things right.
#1 NEWS without analysis is just facts. I value just facts, but also objective analysis. Enough "just facts" can lead to being able to detect analysis that is not objective!

#2 fact checkers have value (See SNOPES) as long as they actually check and present facts and have no political agenda. Supposed "fact checkers" that cherry pick facts to prove a point are called "liars". Look for the ones that debunk conservative lies, and also debunk liberal lies, to ensure that they have no political agenda. (Bonus points for finding ones that are financed by readers and not corporate donations! Those avoid having undue commercial interests, which can be as bad or worse than the political ones! )
 
Old 05-08-2022, 05:28 PM   #24
floppywhopper
Member
 
Registered: Aug 2004
Location: Western Australia
Distribution: Mageia , Centos
Posts: 643
Blog Entries: 2

Rep: Reputation: 136Reputation: 136
my top 3 news outlets for International news
DW https://www.dw.com/en/
Jerusalem Post https://www.jpost.com/
WION https://www.wionews.com/

others
https://eurasiantimes.com/
https://www.stuff.co.nz/
 
Old 05-14-2022, 08:29 AM   #25
//////
Member
 
Registered: Nov 2005
Location: Land of Linux :: Finland
Distribution: Arch Linux && OpenBSD 7.4 && Pop!_OS && Kali && Qubes-Os
Posts: 824

Rep: Reputation: 350Reputation: 350Reputation: 350Reputation: 350
i usually watch france24, and of course yle.fi. <- national news agency of finland.
 
Old 05-14-2022, 03:31 PM   #26
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by ////// View Post
and of course yle.fi. <- national news agency of finland.
+1 for YLE's Politiikkaradio, they've had some very interesting and well-informed interviews on the current conflict. Wish I could recommend it to more people here.
 
Old 05-18-2022, 12:14 PM   #27
sundialsvcs
LQ Guru
 
Registered: Feb 2004
Location: SE Tennessee, USA
Distribution: Gentoo, LFS
Posts: 10,659
Blog Entries: 4

Rep: Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941
When any person speaks – especially in public – bias comes out.

Add to this the fundamental reality that propaganda is universal. (Because it works.) Every nation does it, including yours. "Plan accordingly."
 
Old 05-19-2022, 10:49 AM   #28
hish2021
Member
 
Registered: Jan 2021
Posts: 117

Rep: Reputation: Disabled
Some "counter-narrative" views here: https://www.youtube.com/watch?v=6hD1mNrY6R4
 
Old 05-20-2022, 05:11 AM   #29
hish2021
Member
 
Registered: Jan 2021
Posts: 117

Rep: Reputation: Disabled
And another: https://www.youtube.com/watch?v=kxjAhdaxfw4
 
Old 05-20-2022, 08:34 AM   #30
wpeckham
LQ Guru
 
Registered: Apr 2010
Location: Continental USA
Distribution: Debian, Ubuntu, RedHat, DSL, Puppy, CentOS, Knoppix, Mint-DE, Sparky, VSIDO, tinycore, Q4OS,Manjaro
Posts: 5,623

Rep: Reputation: 2695Reputation: 2695Reputation: 2695Reputation: 2695Reputation: 2695Reputation: 2695Reputation: 2695Reputation: 2695Reputation: 2695Reputation: 2695Reputation: 2695
I would never trust ANYTHING on YouTube!
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: The Pirate Bay and a Never-Ending Search for an Unbiased Judge LXer Syndicated Linux News 0 05-25-2009 12:00 AM
LXer: Fedora 9 : Good News. Bad News. LXer Syndicated Linux News 0 04-18-2008 10:10 PM
LXer: What's your favorite news hub for free software news? LXer Syndicated Linux News 0 07-14-2007 03:16 PM

LinuxQuestions.org > Forums > Non-*NIX Forums > General

All times are GMT -5. The time now is 08:38 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration