LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 06-12-2015, 04:04 PM   #1
linustalman
LQ Guru
 
Registered: Mar 2010
Location: Ireland
Distribution: Debian 12 Bookworm
Posts: 5,877

Rep: Reputation: 479Reputation: 479Reputation: 479Reputation: 479Reputation: 479
Question Need to play video at 1.25x speed.


Hi LQ.

How can I play a video at 1.25x speed in Linux? I know VLC and SMPlayer can go to speeds of 1.20x, 1.30x, etc. but I need 1.25x.

Thanks.

Last edited by linustalman; 06-12-2015 at 04:05 PM.
 
Old 06-12-2015, 04:16 PM   #2
273
LQ Addict
 
Registered: Dec 2011
Location: UK
Distribution: Debian Sid AMD64, Raspbian Wheezy, various VMs
Posts: 7,680

Rep: Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373
Code:
mplayer -speed 1.25 /path/to/video/file.name
Seems to work here.
 
Old 06-12-2015, 04:19 PM   #3
linustalman
LQ Guru
 
Registered: Mar 2010
Location: Ireland
Distribution: Debian 12 Bookworm
Posts: 5,877

Original Poster
Rep: Reputation: 479Reputation: 479Reputation: 479Reputation: 479Reputation: 479
Quote:
Originally Posted by 273 View Post
Code:
mplayer -speed 1.25 /path/to/video/file.name
Seems to work here.
Hi 273.

That works except for the pitch being wrong -- they all sound like cartoon chipmunks.
 
Old 06-12-2015, 04:27 PM   #4
273
LQ Addict
 
Registered: Dec 2011
Location: UK
Distribution: Debian Sid AMD64, Raspbian Wheezy, various VMs
Posts: 7,680

Rep: Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373
Quote:
Originally Posted by LinusStallman View Post
Hi 273.

That works except for the pitch being wrong -- they all sound like cartoon chipmunks.
I suggest you either read the manpage or on of the online manpages, for example, here:
http://linux.die.net/man/1/mplayer
But, so that I can answer you completely, try the following:
Code:
mplayer -speed 1.25 -af scaletempo
 
Old 06-12-2015, 04:28 PM   #5
linustalman
LQ Guru
 
Registered: Mar 2010
Location: Ireland
Distribution: Debian 12 Bookworm
Posts: 5,877

Original Poster
Rep: Reputation: 479Reputation: 479Reputation: 479Reputation: 479Reputation: 479
Lightbulb

This seems to work fine:
Code:
mplayer -af scaletempo -speed 1.25 video.mp4
Edit: We must have posted at almost the same time.

Last edited by linustalman; 06-12-2015 at 04:29 PM.
 
Old 06-12-2015, 04:30 PM   #6
273
LQ Addict
 
Registered: Dec 2011
Location: UK
Distribution: Debian Sid AMD64, Raspbian Wheezy, various VMs
Posts: 7,680

Rep: Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373
Quote:
Originally Posted by LinusStallman View Post
This seems to work fine:
Code:
mplayer -af scaletempo -speed 1.25 video.mp4
Edit: We must have posted at almost the same time.
Aha, so you did look at the online man pages .
Glad this is solved though as I'll admit I'd not thought to bother doing it until now.
 
Old 06-12-2015, 04:32 PM   #7
linustalman
LQ Guru
 
Registered: Mar 2010
Location: Ireland
Distribution: Debian 12 Bookworm
Posts: 5,877

Original Poster
Rep: Reputation: 479Reputation: 479Reputation: 479Reputation: 479Reputation: 479
Post

Quote:
Originally Posted by 273 View Post
Aha, so you did look at the online man pages .
Glad this is solved though as I'll admit I'd not thought to bother doing it until now.
I found it here (end post by haomself): http://ubuntuforums.org/archive/inde...t-1226982.html
 
Old 06-12-2015, 04:33 PM   #8
linustalman
LQ Guru
 
Registered: Mar 2010
Location: Ireland
Distribution: Debian 12 Bookworm
Posts: 5,877

Original Poster
Rep: Reputation: 479Reputation: 479Reputation: 479Reputation: 479Reputation: 479
Thumbs up

I appreciate your help. Cheers.
 
Old 06-12-2015, 04:33 PM   #9
273
LQ Addict
 
Registered: Dec 2011
Location: UK
Distribution: Debian Sid AMD64, Raspbian Wheezy, various VMs
Posts: 7,680

Rep: Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373
Quote:
Originally Posted by LinusStallman View Post
I found it here (end post by haomself): http://ubuntuforums.org/archive/inde...t-1226982.html
Then please do read the man pages
 
Old 06-12-2015, 04:34 PM   #10
linustalman
LQ Guru
 
Registered: Mar 2010
Location: Ireland
Distribution: Debian 12 Bookworm
Posts: 5,877

Original Poster
Rep: Reputation: 479Reputation: 479Reputation: 479Reputation: 479Reputation: 479
Wink

Quote:
Originally Posted by 273 View Post
Then please do read the man pages
They are far too long.
 
Old 06-12-2015, 04:47 PM   #11
273
LQ Addict
 
Registered: Dec 2011
Location: UK
Distribution: Debian Sid AMD64, Raspbian Wheezy, various VMs
Posts: 7,680

Rep: Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373
Quote:
Originally Posted by LinusStallman View Post
They are far too long.
The trick is to search them. I know it's easy to search the man pages but, personally, I tent to use the site above, or one like it, then press the '/' key in Firefox and search for whatever it is I want, "speed" for example. Well, when I'm in a DE of course.
You're very welcome for the help though -- as I mentioned I'd not thought to look into it until you mentioned it.
 
Old 06-13-2015, 04:32 AM   #12
linustalman
LQ Guru
 
Registered: Mar 2010
Location: Ireland
Distribution: Debian 12 Bookworm
Posts: 5,877

Original Poster
Rep: Reputation: 479Reputation: 479Reputation: 479Reputation: 479Reputation: 479
Thumbs up

Quote:
Originally Posted by 273 View Post
The trick is to search them. I know it's easy to search the man pages but, personally, I tent to use the site above, or one like it, then press the '/' key in Firefox and search for whatever it is I want, "speed" for example. Well, when I'm in a DE of course.
You're very welcome for the help though -- as I mentioned I'd not thought to look into it until you mentioned it.
Thanks for the die.net tip -- I will look there first for future issues. It's far easier with Ctrl-f (I never knew '/' also did this in FF) than looking though the terminal pages.

Last edited by linustalman; 06-13-2015 at 04:34 AM.
 
Old 06-13-2015, 07:44 AM   #13
273
LQ Addict
 
Registered: Dec 2011
Location: UK
Distribution: Debian Sid AMD64, Raspbian Wheezy, various VMs
Posts: 7,680

Rep: Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373
Quote:
Originally Posted by LinusStallman View Post
Thanks for the die.net tip -- I will look there first for future issues. It's far easier with Ctrl-f (I never knew '/' also did this in FF) than looking though the terminal pages.
A friend who's an old [in experience not age] Unix/Linx guru told me about the '/' to search tip "just like vi" he said...
It's Ctrl+G to go the the next one then. I find it easier, somehow, to use '/' than CTR+F even though I end up using Ctrl+G to search further.
 
Old 06-13-2015, 09:39 AM   #14
linustalman
LQ Guru
 
Registered: Mar 2010
Location: Ireland
Distribution: Debian 12 Bookworm
Posts: 5,877

Original Poster
Rep: Reputation: 479Reputation: 479Reputation: 479Reputation: 479Reputation: 479
Lightbulb

Quote:
Originally Posted by 273 View Post
A friend who's an old [in experience not age] Unix/Linx guru told me about the '/' to search tip "just like vi" he said...
It's Ctrl+G to go the the next one then. I find it easier, somehow, to use '/' than CTR+F even though I end up using Ctrl+G to search further.
F3 also launches Quick find.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
New monitor - all video software crashes when I try to play video Lossenelin Linux - General 3 09-14-2010 06:30 AM
Lucid: Video apps crash after loading a video to play on Dell Latitude X300 johnbartley Linux - Hardware 9 08-16-2010 11:14 AM
Many video format (such as video/x-ms-asf and video/x-ms-wvx ) does not play? jmettova Debian 1 05-05-2009 12:22 PM
Firefox / Flash Player problem: Online video will play only audio, video is white. NOoBuntuLinux Linux - Software 1 03-28-2009 01:57 AM
PCI bus speed and video card speed juanbobo General 0 08-01-2005 02:13 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 07:43 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