Results 1 to 10 of 10

Thread: FLV to MP4 (videos from you tube)

  1. #1
    Join Date
    Jul 2008
    Beans
    107

    FLV to MP4 (videos from you tube)

    Is there a program to convert FLV to MP4?

    Also, is it possible to convert FLV to MP3, what application would convert FLV to MP3?

    Thank you all

    This board rocks

  2. #2
    Join Date
    Jul 2008
    Location
    Birmingham, England
    Beans
    2,400

    Re: FLV to MP4 (videos from you tube)

    Quote Originally Posted by mal_conductor View Post
    Is there a program to convert FLV to MP4?
    ffmpeg
    Code:
    ffmpeg -i input.flv -vcodec libx264 -sameq -acodec copy output.mp4


    Also, is it possible to convert FLV to MP3, what application would convert FLV to MP3?
    ffmpeg
    Code:
    ffmpeg -i input.flv -vn -acodec libmp3lame -ac 2 -ab 128k output.mp3
    You may need to follow FakeOutdoorsMan's guide to get restricted codecs in there and remember that you cannot make a better file via transcoding
    Also the man page has good info on options

  3. #3
    Join Date
    Jan 2008
    Location
    Manchester UK
    Beans
    13,573
    Distro
    Ubuntu

    Re: FLV to MP4 (videos from you tube)

    The instructions are here

    It all looks very complicated but it`s just copy and paste.

  4. #4
    Join Date
    May 2009
    Location
    Fareham, UK
    Beans
    1,524
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: FLV to MP4 (videos from you tube)

    if using firefox you could use this https://addons.mozilla.org/en-US/firefox/addon/10137 to download in mp4
    Catch me on Freenode - imark

  5. #5
    Join Date
    Oct 2005
    Beans
    520

    Re: FLV to MP4 (videos from you tube)

    Use winff its in the repos

  6. #6
    Join Date
    Jan 2008
    Location
    Manchester UK
    Beans
    13,573
    Distro
    Ubuntu

    Re: FLV to MP4 (videos from you tube)

    But you`ll still need to compile ffmpeg to get it to make mp4s

  7. #7
    Join Date
    May 2009
    Location
    Fareham, UK
    Beans
    1,524
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: FLV to MP4 (videos from you tube)

    Quote Originally Posted by nothingspecial View Post
    But you`ll still need to compile ffmpeg to get it to make mp4s
    it runs mp4s with ubuntu-restricted-extras and libavcodec-extra-52 installed no problem, dont need to compile
    Catch me on Freenode - imark

  8. #8
    Join Date
    Sep 2006
    Beans
    3,713

    Re: FLV to MP4 (videos from you tube)

    Quote Originally Posted by mal_conductor View Post
    Is there a program to convert FLV to MP4?

    Also, is it possible to convert FLV to MP3, what application would convert FLV to MP3?

    Thank you all

    This board rocks
    FLV is a container format that can contain some of the same video types as MP4, which is also a container format. So, you may be able to simply copy the video from the FLV to the MP4. Show the output of:
    Code:
    ffmpeg -i the_name_of_your_flv_file_that_you_want_to_convert.flv
    This will give some info that can be used to come up with an appropriate FFmpeg command.


    Quote Originally Posted by SuperSonic4 View Post
    ffmpeg
    Code:
    ffmpeg -i input.flv -vcodec libx264 -sameq -acodec copy output.mp4
    The -sameq option should generally be avoided when encoding with libx264. Also, newer FFmpeg require use of encoding presets when using libx264:
    Code:
    ffmpeg -i input.flv -vcodec libx264 -vpre hq -crf 22 -threads 0 -acodec copy output.mp4

    Quote Originally Posted by CaptainMark View Post
    it runs mp4s with ubuntu-restricted-extras and libavcodec-extra-52 installed no problem, dont need to compile
    Not necessarily. In Karmic, ubuntu-restricted-extras unfortunately installs the "stripped" libavcodec for some odd reason. Not very intuitive if you ask me. Also, Karmic's libavcodec-extra-52 does not include libfaac, an AAC audio encoder, which is a popular audio format for MP4. Medibuntu is in the process of releasing a somewhat dated version of libavcodec that will address this issue.

    Or you can compile a recent FFmpeg yourself as mentioned by nothingspecial if you don't want to wait a week or so for Medibuntu.

  9. #9
    Join Date
    Dec 2009
    Beans
    12

    Re: FLV to MP4 (videos from you tube)

    I use keepvid.com, seems the easiest way to do it! You can download the video at original quality too, so if it was uploaded at 1280x720 that's what you'll get.

  10. #10
    Join Date
    Jun 2007
    Beans
    17,337

    Re: FLV to MP4 (videos from you tube)

    in Karmic, ubuntu-restricted-extras unfortunately installs the "stripped" libavcodec for some odd reason
    Well there seems to be no movement to changing that, and atm expect the same in lucid.

    Even when correctly configured, the recommendation to install u-r-e is certainly overused and somewhat ill advised. ( the installation of the ms....fonts can fail for many people and cause further hassles.

    Maybe further comments can spur either action or reason why not needed.

    karmic
    https://bugs.launchpad.net/ubuntu/+s...as/+bug/462366

    lucid
    https://bugs.launchpad.net/ubuntu/+s...as/+bug/494745

    (( find the whole matter very curious, at the same time as repoting karmic bug also made 3 suggestions to improve vlc. Was expecting no real action on vlc, and this to be corrected. Instead 2 of the three vlc's were implemented for lucid, and this goes nowhere..?

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
  •