Re: [FFmpeg-user] Help recovering video of cherished moment

2016-12-17 Thread Carl Eugen Hoyos
2016-12-17 19:05 GMT+01:00 PAUL Kirchhoffer :

> - The MPlayer documentation indicated the codec was supported and I
> finally succeeded in getting Mplayer running on a 32-bit Ubuntu virtualbox.

Please test with an MPlayer Windows binary:
It may never have been tested on Linux, I just tested with MPlayer from 2008
when the relevant code was added and it did not work either on Linux.

> I think I succeeded in getting Mplayer to use the correct codec but I got
> no video.

> The videos have been copied to many different hard drives over the
> years - maybe they are corrupt.

This is not very likely.

Carl Eugen
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] setfield and display order and storage order

2016-12-17 Thread Kieran O Leary
Hi,

On 29 Nov 2016 14:23,  wrote:



I found that if I add '-field_order tt', then I can force a 'top first'
output with mov, but an mkv output with '-field_order tt' stays as 'top
coded first (swapped)'.
Dave

I am also curious about an answer to this but perhaps no one answered due
to the thread hijacking.
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] how to convert one mp4 file into multiple files with different setting

2016-12-17 Thread Cley Faye
2016-12-17 8:41 GMT+01:00 qw :

> I want to use ffmpeg to do the following complicated task:
>
>
> I have one mp4 file with one audio and one video stream. I want to convert
> the mp4 file into three encoding settings, and then save each output with
> one encoding setting into 3 files.
>
>
> How to do it by using single ffmpeg command?
>

​Every time you provide an output filename, all output settings are reset.
You could do something like this:

$ ffmpeg -i input.mp4 -c copy out1.mp4 -c:v h264 -c:a libvorbis out2.mp4 -c
copy -map 0:v out3.mp4

Each output will have the preceding options applied to them.
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".