Re: Audio portion of dash downloads slow

2022-03-13 Thread VeniVidiVideo
On Mar 13, 2022, at 5:45 PM, Nick Payne  wrote:
> When I download a program with GiP using dash rather than hls, the initial 
> separate download of the audio always comes down at only somewhere between 5% 
> and 10% of the speed that I get when the video portion of the download is 
> happening. Do other users see the same? This is with the latest v3.29 GiP.

Did the audio actually download in much less time than the video, overall?  So 
you're mainly concerned about the reported download speeds?

If so, it's possible that the audio, being much smaller than the video, is 
having its download speed calculated from many fewer samples, so it is less 
accurate.  Its measurement would also be drastically more affected by any 
startup and/or shutdown overhead that is included in the download time.  No 
guarantees, but as long as the audio is actually downloading in substantially 
less time than the video the problem may simply be in how these speeds are 
being calculated.

- larryy
___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer


Re: RIAA wipes youtube-dl from the internet

2020-10-24 Thread VeniVidiVideo
Thanks for the (sad) heads up and the wget solution.  I had to use an extra 
flag to get it:

wget https://yt-dl.org/downloads/latest/youtube-dl --no-check-certificate -O 
youtube-dl_latest

But that worked, and obtained the 2020.09.20 version.  Curiously it's quite a 
bit smaller than the 2020.09.06 version I had installed.  Keeping both until I 
know the version I just downloaded works well.

-vvv

> On Oct 24, 2020, at 10:32 AM, Roger Bell_West  wrote:
> 
> On Sat, Oct 24, 2020 at 03:24:45PM +0100, Jim web wrote:
>> i.e. came from the openmandriva address.
>> 
>> Is that correct and as should be expected?
> 
> No idea, but it's identical to the version 2020.09.20 that I already had.
> 
> ___
> get_iplayer mailing list
> get_iplayer@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/get_iplayer


___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer


Re: OT Question on audio downloads from youtube

2020-09-23 Thread VeniVidiVideo
On Sep 23, 2020, at 6:27 AM, Jim web  wrote:
> Erm... I think there may be a misunderstanding... Possibly you misunderstod
> my use of 'best' in inverted commas.

Ah, yes, though the misunderstanding came from your comment about uploaders 
having to provide multiple versions.

But, yes, finding the original uploaded version should correspond to “best”.

However, I don’t believe YouTube does any upconverting.  Only downconverting, 
to be able to serve lower bandwidth viewers without the video hanging 
mid-stream.  I suppose as better and better tools, like the Topaz AI package, 
become available they might change that, but while downconverting is cheap 
computationally, upconverting effectively is going to remain computationally 
expensive, so maybe not.

So unless and until they begin doing automatic upconverting, grabbing the 
highest resolution is equivalent to “bestvideo” (or just "best") *and* the 
originally uploaded video, as you were suggesting.

-vvv
___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer


Re: OT Question on audio downloads from youtube

2020-09-23 Thread VeniVidiVideo
On Sep 22, 2020, at 12:20 PM, Jim web  wrote:
> I've never looked at uploading anything for YT. The question in my mind is
> as follows:
> 
> Yes, it generally offers a range of download formats. But what format was
> *uploaded* in the first place? I wonder if getting the 'best' audio from YT
> simply may mean the least harm from a transcode YT has done.  Or are
> uploaders expected to provide multiple versions? I suspect not.
> 
> If my suspicion is correct, the 'best' would be to find the version as
> uploaded, I assume.

That's incorrect.  Especially since youtube-dl targets YouTube, there are 
usually multiple versions available to be downloaded.  YouTube routinely 
maintains multiple resolutions of the video at least.  There may be multiple 
bitrates or formats for the audio as well, but I'm not sure about that.  The 
uploader doesn't have to worry about the multiple video resolutions.  YouTube 
takes care of the downcovert automatically.  They do that so people can stream 
videos with very different bandwidths, from 3G phone connections to Gigabit 
fiber connections.

youtube-dl even offers a -f "bestvideo+bestaudio" option that will separately 
download the highest quality video and the highest quality audio and combine 
them.  I don't use youtube-dl all that often, but when I do I typically use 
something like this:

youtube-dl -f "bestvideo+bestaudio/best" --merge-output-format "mkv" 
--prefer-ffmpeg --sub-lang 'en' --write-sub --convert-subtitles 'srt' 
--embed-subs -o "Output File" http://www.youtube.com/watch?v=

Actually, I define most of those in ~/.config/youtube-dl/config, so the actual 
command can look like just

youtube-dl -o "Output File" http://...

But those are the options that yield the best quality all around from YouTube 
using youtube-dl.

-vvv
___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer


Re: OT Question on audio downloads from youtube

2020-09-21 Thread VeniVidiVideo
As you suspect, there is no value in losslessly re-encoding something that is 
already lossy encoded.  If the re-encoding process is perfect you'll still just 
end up with a perfect copy of the original lossy recording.

Using youtube-dl with appropriate parameters should get you as good as you can 
get.  Same with JDownloader2.

-vvv

> On Sep 21, 2020, at 5:56 PM, budge  wrote:
> 
> Please forgive the OT question but I am seeking advice on sensible download 
> format for saving the audio from youtube videos which are available to 
> supplement specific items from my early music collection.
> 
> My preferred solution is to download the audio using youtube-dl and I know I 
> could then encode the file as a flac file but this creates huge files, albeit 
> lossless, so my question is, is there any point in doing this if the initial 
> audio quality is limited by the youtube video recording system bit rate?  
> Also, as a more senior citizen, I believe I am unlikely to be able to hear 
> the difference between the flac and other options.
> 
> I know there are members in this group who have significant knowledge and 
> experience in these matters and I am hoping for suggestions for the best 
> format for my purposes.
> 
> Budge.
> 
> 
> ___
> get_iplayer mailing list
> get_iplayer@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/get_iplayer


___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer


Re: Syntax for grabbing all episodes of the new season of Celebrity Master Chef

2020-07-05 Thread VeniVidiVideo
Boy, the hypocrisy here is stunning.  The BBC allows time-limited downloads, 
but does NOT allow downloads without an expiration date.  Every single license 
payer here is violating BBC's terms of service by using GiP to download files 
that do not expire.  Yet heaven forbid someone from outside the UK violate 
those same terms of service.  Plus, every US participant that has ever spoken 
up has observed they'd happily pay the license fee if they could.  Hell, I 
tried to work out an arrangement to pretend to live in an apartment on 
somebody's property so I could have an address and pay the license fee, just to 
contribute my fair share, but the fellow decided not to follow through.  I 
didn't blame him for wanting to avoid any impropriety, but you holier-than-thou 
types really suck.  People in glass houses...

- larryy

> On Jul 5, 2020, at 8:31 AM, James Robinson 
>  wrote:
> 
> Could not agree more.  Well said.
> 
>> On 04 July 2020 at 17:29 Jon Davies  wrote:
>> 
>> 
>> On Sat, 4 Jul 2020 at 13:58, Barry Toner  wrote:
>>> Can someone please tell me how I do this?  I promised some friends in the 
>>> USA I would grab this show for them.  I need the video and don’t need 
>>> subtitles or audio description.
>> 
>> This is why I stopped subscribing to this list a couple of years ago -
>> I've been resubscribed by the old backup, but will be going again.  I
>> want nothing to do with anyone or anything that promotes violation of
>> the BBC terms of use.  See
>> https://www.bbc.co.uk/usingthebbc/terms-of-use/ - particularly 7a, the
>> bit that says
>> 
>> a. Don’t mess with our services
>> 
>> What do we mean by that? This sort of thing:
>> ...Accessing content from outside the UK that you aren’t allowed to,
>> or helping others do the same.
>> 
>> So, please just stop using get-iplayer for this sort of thing.  People
>> have put effort into building get-iplayer to enable fair use within
>> the UK in circumstances that the BBC's own software doesn't support.
>> 
>> Yes, I'm angry.  I'm angry that people, including you Barry Toner, are
>> abusing the work others (and to a much lesser extent I) have put into
>> get-iplayer and the various distribution points for it.
>> 
>> So I'm pulling the plug on what's left of the Ubuntu repository
>> (though it was getting no further updates for other reasons), and
>> pulling the plug on the Raspbian repository.  If you don't like this,
>> tough.  Do your own thing.  I'm having no part in this any more.
>> 
>> Jon
>> 
>> ___
>> get_iplayer mailing list
>> get_iplayer@lists.infradead.org
>> http://lists.infradead.org/mailman/listinfo/get_iplayer
> 
> ___
> get_iplayer mailing list
> get_iplayer@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/get_iplayer


___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer


Re: His Dark Materials m000csdk: only audiodescribed available?

2019-12-25 Thread VeniVidiVideo
On Dec 25, 2019, at 4:34 AM, Don Grunbaum  wrote:
> From what I can see on the iPlayer website, only audiodescribed versions are 
> available. Playing using VLC doesn't play the AD.

That's curious.  AD is, of necessity, in the audio track.  If it's actually 
present, VLC would have to play it.  Unless there are multiple audio tracks.  
Maybe have a look, in VLC, at "Audio" > "Audio Track" > ... and see if there's 
more than one audio track listed.  Maybe these files are coming with both a 
regular audio track and an audiodescribed audio track?
___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer


Re: Loss of BBC HD channels on satellite

2018-10-18 Thread VeniVidiVideo
On Oct 18, 2018, at 3:43 PM, a...@cityscape.co.uk wrote:
> On Thu 18 Oct 2018 at 20:22:12 +0100, RS wrote:
>> This is off topic since it does not concern get_iplayer or the iPlayer, so
>> if you are going to be offended please stop reading.
> 
> Deconstruction: I know that what I am about to post has nothing to do
> with get_iplayer but I am going to force you to download it and read it.
> Don't complain or get shirty; I will ignore you because I know what is
> best for *me*.
> 
> I also suspect that many will be offended my temerity but it's for *my*
> good, so you will have to like it or lump it. I am sure you will be
> understanding of my needs to impose on you; as you would of anyone else
> who posts off-topic mails.

Better deconstruction:

Original poster politely communicates what could be vital information for 
people who have a shared interest in BBC programming.

Second poster has a stick up his butt.
___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer


Re: BBC Licensing Expose

2017-02-28 Thread VeniVidiVideo
Whatever your politics or personal standards on decency, lies are lies.  
Wikipedia banned citations to Daily Mail for good reasons.

https://www.theguardian.com/technology/2017/feb/08/wikipedia-bans-daily-mail-as-unreliable-source-for-website

"The editors described the arguments for a ban as 'centred on the Daily Mail’s 
reputation for poor fact checking, sensationalism and flat-out fabrication'."

Little point in wasting bandwidth on them here.

- larryy

> On Feb 28, 2017, at 2:01 AM, Dennis Smith  wrote:
> 
> The daily mail, self admitting to all things hateful, causes a lot of
> the issues surrounding decency, race, and morality. Save yourself from
> the exposure of such repugnance if you use Chrome try this:
> https://chrome.google.com/webstore/detail/daily-mail-blocker/ghjadbffkapbnlbccfjoljfhgolbofhi?hl=en-GB
> It's a great extention to limit your exposure to the links taht draw
> you in with their made up news and clickbait.
> 
> Dennis Smith
> M1DLG
> 
> On 27 February 2017 at 14:12, Roger Tricker  wrote:
>> There will, almost certainly, be different views on what is defined by your 
>> term, 'decency'. Please don't judge on behalf of others, whose views may 
>> well differ from yours. Not right or wrong, necessarily, but different.
>> 
>> RogerWithoutaD
>> 
>> -Original Message-
>> From: get_iplayer [mailto:get_iplayer-boun...@lists.infradead.org] On Behalf 
>> Of David Woodhouse
>> Sent: 27 February 2017 13:46
>> To: Tony Quinn ; get_iplayer@lists.infradead.org
>> Subject: Re: BBC Licensing Expose
>> 
>> On Mon, 2017-02-27 at 13:22 +, Tony Quinn wrote:
>>> 
>>> On 27/02/2017 12:34, David Woodhouse wrote:
 On Mon, 2017-02-27 at 12:08 +, Tony Quinn wrote:
> has content which should be discussed.
 
 It is off-topic for this list, and even if it wasn't, it's not
 appropriate to post links to that site.
 
 
>>> 
>>> Who exactly appointed you the arbiter of what is appropriate?
>> 
>> On this list? I did.
>> 
>> In other circumstances? Such as when I'm on the train and I witness some 
>> Mail-reader shouting at the 'nasty brown people'? Nobody appointed me then. 
>> But that doesn't mean I'll stand by and do nothing, either...
>> 
>> We all have a collective responsibility to uphold decency.
>> 
>> --
>> dwmw2
>> 
>> 
>> ___
>> get_iplayer mailing list
>> get_iplayer@lists.infradead.org
>> http://lists.infradead.org/mailman/listinfo/get_iplayer
> 
> ___
> get_iplayer mailing list
> get_iplayer@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/get_iplayer


___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer