[FFmpeg-user] How to extract DVD subtitle from this VOB file?

2018-03-08 Thread Farhad Mohammadi Majd
Hello, I have ffmpeg v3.2.9 on Debian v9.3 I have searched WWW for suitable command but none of them worked for me, and ffmpeg is complex. == My file == $ ffmpeg -i VTS_01_1.VOB . . . . Input #0, mpeg, from 'VTS_01_1.VOB':   Duration: 00:24:40.83, start: 0.040033, . Stream

Re: [FFmpeg-user] How to extract DVD subtitle from this VOB file?

2018-03-08 Thread Farhad Mohammadi Majd
> I guess your DVD-Film is concatenated ... The full film is consists of three files, this is the first file. > in this case you have to extract the whole concatenated VOB with > mplayer and dump it into a file before you can  apply ffmpeg I don't have mplayer on the system, I have mpv instead,

Re: [FFmpeg-user] How to extract DVD subtitle from this VOB file?

2018-03-11 Thread Farhad Mohammadi Majd
Al right, I did install both Mplayer and MEncoder. on 2018-03-08--12:01:13 Adi Marvillo wrote: > [code] > mplayer dvd://TITLE -dumpstream -dumpfile ~/media/movie.vob # be sure > to > select the correct TITLE - in this case it would be 1 I test the command but it was unsuccessful because it is wr

Re: [FFmpeg-user] How to extract DVD subtitle from this VOB file?

2018-03-15 Thread Farhad Mohammadi Majd
at 2018 Mar 13 18:19:45, Adi Marvillo wrote: > I can't support you with anything with this information. Please > provide > [code] ffprobe stream.dump [/code]. Look the used ffmpeg codecs > (libx264) up in the Documentation. cheers [code] $ ffprobe stream.dump  ffprobe version 3.2.10-1~deb9u1 Copy

Re: [FFmpeg-user] How to extract DVD subtitle from this VOB file?

2018-03-25 Thread Farhad Mohammadi Majd
at 2018 Mar 15 15:42:32, Adi Marvillo (adi5 at gmx.at) wrote: > This is your command: > *ffmpeg -i ./dump.stream -g 25 -keyint_min 3 -vf -aspect "16:9" -map > v > -c:v libx264 -map a -c:a copy ./output.mkv > *ffprobe doesn't show a subtitle stream, don't know where it is... as > much as I know subt

[FFmpeg-user] FFplay and MPV can't play this video but Parole can

2018-03-25 Thread Farhad Mohammadi Majd
Hello, FFplay and mpv can play it but there is no video output: Playing: [ffmpeg/demuxer] mov,mp4,m4a,3gp,3g2,mj2: Missing key frame while reordering index according to edit list [ffmpeg/demuxer] mov,mp4,m4a,3gp,3g2,mj2: Could not find codec parameters for stream 0 (Video: h264 (avc1 / 0x3163

Re: [FFmpeg-user] FFplay and MPV can't play this video but Parole can

2018-03-26 Thread Farhad Mohammadi Majd
at 2018 Mar 25 11:31:22, Paul B Mahol (onemda at gmail.com) wrote: > Probably issue with your video drivers/device? I don't think it is related to such things, because I can play everything except this one. at 2018 Mar 25 20:47:54, Carl Eugen Hoyos (ceffmpeg at gmail.com) wrote: > Please upload a

[FFmpeg-user] Is this the best method to keep audio quality when converting lossy audio to another lossy audio?

2018-06-01 Thread Farhad Mohammadi Majd
Hello, I have a large collection of audio files contains music in mp3 format, due to need to free space of hard disk, I need to reduce their size. It seems opus is the best format for this purpose, in order to have the quality of original mp3 files, currently I use ffmpeg command to convert them t

Re: [FFmpeg-user] Is this the best method to keep audio quality when converting lossy audio to another lossy audio?

2018-06-01 Thread Farhad Mohammadi Majd
at  Fri Jun 1 14:03:58 EEST 2018, Reino Wijnsma (rwijnsma at xs4all.nl) wrote: > so instead of converting the mp3 files to flac, you can also pipe the > decoded mp3 audio from 'ffmpeg' to 'opusenc' By this method all the metadata will be lost!! > On the other hand, if you compiled FFmpeg with li