OS X: Save mtv.com video files (they don't show up in Safari's Activity)

 
Thread Tools Search this Thread
Operating Systems OS X (Apple) OS X: Save mtv.com video files (they don't show up in Safari's Activity)
# 1  
Old 02-16-2012
OS X: Save mtv.com video files (they don't show up in Safari's Activity)

Hi

Howto save videos from MTV.com? I am using OS X.

example

Code:
http://www.mtv.com/videos/misc/730863/the-situations-confrontation.jhtml#id=1678445

Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. AIX

Showmount don't show NFS4

Configure nfs4 on aix ok i did all chnfsdom #return correct domain chnfs -r /export chnfs -p /export configured and shared pseudo root #etc/exports /export -nfsroot /var/pubblica -exname=/export/pubblica,vers=4,sec=sys:krb5p:krb5i:krb5:dh,rw exportfs -a mount correct mount... (1 Reply)
Discussion started by: Linusolaradm1
1 Replies

2. Shell Programming and Scripting

save streaming video data for later viewing?

I have limited bandwidth in my apartment and no cable TV service. I was wondering if it is possible to write a script that would download the video data from my favorite TV shows (legally... many networks post their videos online for free) while I sleep, so that later I can watch them on my TV... (5 Replies)
Discussion started by: euclid3628800
5 Replies

3. Shell Programming and Scripting

awk script to remove spaces - examples don't show up correctly

I have the following data from a manual database dump. I need to format the columns so that I can import them into an excel spread sheet. So far I have been able to get past the hurdles with vi and grep. Now I have one last issue that I can't get past. Here is an example of the data. Here is... (18 Replies)
Discussion started by: Chris_Rivera
18 Replies

4. Shell Programming and Scripting

Don't show keyboard input on terminal

I am developing a script that will run with '/bin/ksh' shell. The script is intended to receive a password by keyboard input, but for security reasons I would like to hide what the user is typing. The keyboard input is being caught by 'read' command. exmaple : echo "Please type your new... (1 Reply)
Discussion started by: marianor31
1 Replies

5. Linux

Recording X or VNC Activity to a Video File?

I have the need to record some step by step instructions to help with instruction in using Fedora Core 3. I was wondering if there are any ways to capture X or VNC activity to a video file. It can be any of the most common formats (MPEG, DiVX/ViDX, Ogg Theora, etc...) Does anyone know of any apps... (3 Replies)
Discussion started by: deckard
3 Replies

6. Linux

Why don't my clock show am or pm?

Is it not possible to get the "Digital" clock in KDE 3.3 to show am or pm? Well I just noticed the plain clock setting is the only one that shows it. (2 Replies)
Discussion started by: CTroxtell21
2 Replies
Login or Register to Ask a Question
WebService::YouTube(3pm)				User Contributed Perl Documentation				  WebService::YouTube(3pm)

NAME
WebService::YouTube - Perl interface to YouTube VERSION
This document describes WebService::YouTube version 1.0.3 SYNOPSIS
use WebService::YouTube; my $youtube = WebService::YouTube->new( { dev_id => 'YOUR_DEV_ID' } ); # Get videos via REST API my @videos = $youtube->videos->list_featured; # Get videos via RSS Feed my @videos = $youtube->feeds->recently_added; DESCRIPTION
This is a Perl interface to YouTube API and RSS. See Developers Page <http://youtube.com/dev> and About RSS <http://www.youtube.com/rssls> for details. This module support only Legacy API, does not support YouTube Data API based on Google data protocol. See YouTube Data API Overview <http://code.google.com/apis/youtube/overview.html> for details. SUBROUTINES
/METHODS new(\%fields) Creates and returns a new WebService::YouTube object. %fields can contain parameters enumerated in "ACCESSORS" section. videos( ) Returns a WebService::YouTube::Videos object. feeds( ) Returns a WebService::YouTube::Feeds object. ACCESSORS dev_id Developer ID ua LWP::UserAgent object DIAGNOSTICS
None. CONFIGURATION AND ENVIRONMENT
WebService::YouTube requires no configuration files or environment variables. DEPENDENCIES
Class::Accessor::Fast, WebService::YouTube::Videos, WebService::YouTube::Feeds INCOMPATIBILITIES
WWW::YouTube BUGS AND LIMITATIONS
No bugs have been reported. Please report any bugs or feature requests to "bug-webservice-youtube@rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=WebService-YouTube>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. AUTHOR
Hironori Yoshida <yoshida@cpan.org> LICENSE AND COPYRIGHT
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic. perl v5.10.1 2010-08-01 WebService::YouTube(3pm)