Welcome, Guest. Please login or register.

Author Topic: FFmpeg + FFplay git-a52f598 (31.05.2011) for AmigaOS 3.x  (Read 9220 times)

Description:

0 Members and 1 Guest are viewing this topic.

Offline ami_stuffTopic starter

  • Full Member
  • ***
  • Join Date: May 2009
  • Posts: 100
    • Show all replies
FFmpeg + FFplay git-a52f598 (31.05.2011) for AmigaOS 3.x
« on: June 04, 2011, 10:10:11 AM »


FFmpeg is a complete, cross-platform solution to record,
convert and stream audio and video. FFmpeg can also convert from
any sample rate to any other and resize video on the fly with a high
quality polyphase filter.


Download
 

Offline ami_stuffTopic starter

  • Full Member
  • ***
  • Join Date: May 2009
  • Posts: 100
    • Show all replies
Re: FFmpeg + FFplay git-a52f598 (31.05.2011) for AmigaOS 3.x
« Reply #1 on: June 05, 2011, 12:52:50 PM »
Quote from: Vulture;642491
Thx!

Any chance for a warpos version? :)


Sorry, no. I have no PPC hardware to test the builds, no WarpOS cygwin-hosted
crosscompiler and it would require too much work to recompile again all of the
external libs for PPC.

Quote from: stefcep2;642525
Can this convert mpegs/avi's to anim5?


Not yet, maybe in the future. ;) However I would prefere so see a decoder
implemented first. :) (right now there is only IFF ILBM decoder with HAM6/8
support)
 

Offline ami_stuffTopic starter

  • Full Member
  • ***
  • Join Date: May 2009
  • Posts: 100
    • Show all replies
Re: FFmpeg + FFplay git-a52f598 (31.05.2011) for AmigaOS 3.x
« Reply #2 on: June 06, 2011, 08:22:45 AM »
Quote from: Ratte;642880
http://www.youtube.com/watch?v=QY7bKwtrR7c&vq=large
A4000 / Apollo 4060 @ 90 MHz / 640 MB FastMem
playing some clips with FroggerNG ...

Hmmm .... I will try FFmpeg/FFplay this evening.
:)

It would be interesting to see how good/bad FFplay behaves on your hardware.

Please note that FroggerNG have by default enabled frame skipping, while FFplay not.

Maybe you can record a video with two tests:

I. with audio

FroggerNG file.mpg/file.divx AUTOSTART
FFplay -framedrop file.mpg/file.divx

and

II. without audio

FroggerNG NOSKIP NOAUDIO AUTOSTART file.mpg/file.divx
FFplay -an file.mpg/file.divx

it would be also interesting to see how much lowres speedups decoding:

FFplay -an -lowres 1 file.mpg/file.divx
« Last Edit: June 06, 2011, 06:14:53 PM by ami_stuff »
 

Offline ami_stuffTopic starter

  • Full Member
  • ***
  • Join Date: May 2009
  • Posts: 100
    • Show all replies
Re: FFmpeg + FFplay git-a52f598 (31.05.2011) for AmigaOS 3.x
« Reply #3 on: June 07, 2011, 10:13:33 AM »
Quote from: magnetic;643064
Firstly, thanks for the port, its very welcome.
By the quote above does this mean I can take say an mpeg4 and turn it into a ham8 anim file for playback on my a1200?


No. Three is no IFF ANIM encoder in FFmpeg, so this is not possible.
 

Offline ami_stuffTopic starter

  • Full Member
  • ***
  • Join Date: May 2009
  • Posts: 100
    • Show all replies
Re: FFmpeg + FFplay git-a52f598 (31.05.2011) for AmigaOS 3.x
« Reply #4 on: June 12, 2011, 01:43:18 PM »
Quote
Does anyone have experience on what command line options to use to convert videos for use on the Amiga?  Any help would be appreciated from someone who has experience with FFMpeg.

I have no idea, but maybe H261 would be ok for 030 or 040:

ffmpeg -i file.mpg -vcodec h261 -r 15 -s 176x144 -sws_flags lanczos -acodec pcm_u8 -ar 22050 file.avi

the fastest would be of course rawvideo:

ffmpeg -i file.mpg -vcodec rawvideo -sws_flags lanczos -r 15 -s 176x144 -acodec pcm_u8 -ar 22050 file.avi
« Last Edit: June 12, 2011, 01:58:38 PM by ami_stuff »