Page 151 of 241 FirstFirst ... 51101141149150151152153161201 ... LastLast
Results 1,501 to 1,510 of 2402

Thread: HOWTO: Install and use the latest FFmpeg and x264

  1. #1501
    Join Date
    Jan 2009
    Location
    Santander, Spain
    Beans
    1,981
    Distro
    Xubuntu 18.04 Bionic Beaver

    Smile Re: HOWTO: Install and use the latest FFmpeg and x264

    Hello ron999,

    Thankyou very much, I have followed your recommendation, and yes, I could, at last, to convert the real audio file to a wav one, and now I can listen to it with rhythmbox.

    It is clear, I need to read more about ffmpeg in ordert to use it properly.

    Regards

  2. #1502
    Join Date
    Jul 2006
    Location
    Lancashire
    Beans
    Hidden!
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: HOWTO: Install and use the latest FFmpeg and x264

    @claracc
    ffmpeg is a great program.
    But if you want to use those ram links then mplayer is much better.
    Try mplayer, you'll find it's much quicker than ffmpeg for this job.
    The 37 second clip takes exactly 37 seconds to download with ffmpeg.
    With mplayer it downloads in a twinkle.
    Just try it please.
    Code:
    mplayer -bandwidth 9999999 -playlist http://www.bbc.co.uk/worldservice/learningenglish/multimedia/btp/ram_files/winchester_audio1.ram -vc null -vo null -ao pcm:fast:waveheader:file=winchester_audio2.wav

  3. #1503
    Join Date
    Jan 2009
    Location
    Santander, Spain
    Beans
    1,981
    Distro
    Xubuntu 18.04 Bionic Beaver

    Re: HOWTO: Install and use the latest FFmpeg and x264

    Hello ron999, I have tried the coneversion with mplayer as you have adviced, and it is as fast as a ray, much more than ffmpeg.

    So I will use mplayer to do the format conversion for .ram files.

    I see that I have to learn more about mplayer too.

    Thanks and regards

  4. #1504
    Join Date
    Sep 2006
    Beans
    3,713

    Re: HOWTO: Install and use the latest FFmpeg and x264

    Quote Originally Posted by andrew.46 View Post
    Hmmmm..... this is not much of an improvement I guess:

    Code:
    $ ./version.sh | grep 'POINT' | cut -d '"' -f 2 | sed 's/ /+git/'
    0.114.189+git60ef1f8
    Big advantage for me is that I don't understand awk
    Thanks for the alternate command. I don't understand awk very well and every time I use it I have to re-learn by fumbling around with it. I've shortened my command by combining the seds. I guess I just have to decide which one should replace the ubercommand in the pkgversion.

  5. #1505
    Join Date
    Dec 2006
    Beans
    7,349

    Re: HOWTO: Install and use the latest FFmpeg and x264

    Quote Originally Posted by FakeOutdoorsman View Post
    I've shortened my command by combining the seds.
    I see you have used this:

    Code:
    $ ./version.sh | awk '/POINT/{print $3,$4}' | sed 's/"//g;s/ /+git/'
    which certainly works, although I am more used to seeing the following:

    Code:
    $ ./version.sh | awk '/POINT/{print $3,$4}' | sed -e 's/"//g' -e 's/ /+git/'
    I read some discussion concerning use of either the semicolon or the -e option and was none the wiser as to which was the better, or more correct option .
    You think that's air you're breathing now?

  6. #1506
    Join Date
    Jun 2010
    Beans
    26

    Re: HOWTO: Install and use the latest FFmpeg and x264

    well no luck for me trying to compile ffmpeg as a shared library. But it seems I don't need ffmpeg-php anyway so I ll just use as it.

    Before you had a link for the http://code.google.com/p/x264-ffmpeg-up-to-date/ script on your tutorial. Is this in a sort of standbye because ffmpeg moved to git?

  7. #1507
    Join Date
    Sep 2006
    Beans
    3,713

    Re: HOWTO: Install and use the latest FFmpeg and x264

    Quote Originally Posted by undercash View Post
    Before you had a link for the http://code.google.com/p/x264-ffmpeg-up-to-date/ script on your tutorial. Is this in a sort of standbye because ffmpeg moved to git?
    I removed the link to that script because the author has failed to keep it reasonably up to date.

  8. #1508
    Join Date
    Jun 2010
    Beans
    26

    Re: HOWTO: Install and use the latest FFmpeg and x264

    ah I see. it's a pity even though it' s not really hard to update manually

  9. #1509
    Join Date
    Dec 2006
    Beans
    7,349

    Re: HOWTO: Install and use the latest FFmpeg and x264

    Quote Originally Posted by andrew.46 View Post
    I see you have used this:

    Code:
    $ ./version.sh | awk '/POINT/{print $3,$4}' | sed 's/"//g;s/ /+git/'
    I consulted the experts on comp.unix.shell and the following syntax might be what you are after:

    Code:
    $ ./version.sh | awk -F'[" ]' '/POINT/{print $4"+git"$5}'
    It is nicely done and probably hints to me that I really need to drag that awk book down from the shelf
    You think that's air you're breathing now?

  10. #1510
    Join Date
    Sep 2006
    Beans
    3,713

    Re: HOWTO: Install and use the latest FFmpeg and x264

    Yes, that's perfect. Thanks Andrew. I'll add this to the guide soon.

    I'll admit that I've never posted on a Usenet group before.

Page 151 of 241 FirstFirst ... 51101141149150151152153161201 ... LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •