Search found 5989 matches: FFMPEG
Searched query: FFMPEG
- Tue May 20, 2014 4:53 am
- Forum: Windows
- Topic: Problem importing VOB
- Replies: 8
- Views: 1045
Re: Problem importing VOB
That's Video Transport Stream (TS) and Video OBject (VOB) in English. You're getting all those metaphorical blank looks from us because FFMpeg totally supports decoding Video OBjects. We have no idea why it's not working for you. I know about one really unusual problem. Was the DVD recorded ...
- Tue May 20, 2014 4:45 am
- Forum: Windows
- Topic: Problem importing VOB
- Replies: 8
- Views: 1045
Re: Problem importing VOB
... the drop-down list that appears (the file would be passed off to the next importer in the list after each one failed, until it got to the intended FFmpeg importer). You could open Help > Show Log... after failing to import the file to see if there is any information about the error. Gale
- Mon May 19, 2014 3:19 am
- Forum: Windows
- Topic: Problem importing VOB
- Replies: 8
- Views: 1045
Problem importing VOB
... and try to import a .VOB file I get a message: Audacity did not recognize the type of the file... Going to Edit - Preferences - Libraries shows FFmpeg Library Version F(52.64.2),C(52.72.2),U(5015.1) Audacity 2.0.5 running on Windows Vista Please Help! Thanks
- Sun May 18, 2014 10:31 pm
- Forum: Windows
- Topic: file won't go over 2GB
- Replies: 39
- Views: 5094
Re: file won't go over 2GB
... "Writing Application" it would tell you what version of libflac or other application wrote the file. Do you think you used "Custom FFmpeg export" instead of "FLAC files" to export the over 2 GB FLAC files from Audacity? It could be an explanation. Note: Do not download ...
- Sun May 18, 2014 12:05 am
- Forum: Windows
- Topic: Problem Importing 24-bit DTS
- Replies: 11
- Views: 3766
Re: Problem Importing 24-bit DTS
I have not figured out the correct syntax to use for listing or setting - it just returns Unrecognized option 'sample_format' For me ffmpeg -sample_fmts shows name depth u8 8 s16 16 s32 32 flt 32 dbl 64 u8p 8 s16p 16 s32p 32 fltp 32 dblp 64 OK I was using FFmpeg 0.6. In FFmpeg 1.0 I get ...
- Sat May 17, 2014 10:58 pm
- Forum: Windows
- Topic: Problem Importing 24-bit DTS
- Replies: 11
- Views: 3766
Re: Problem Importing 24-bit DTS
Is -c:a the same as -acodec? For recent versions of FFmpeg, yes. I have not figured out the correct syntax to use for listing or setting - it just returns Unrecognized option 'sample_format' For me ffmpeg -sample_fmts shows name depth u8 8 s16 16 ...
- Sat May 17, 2014 8:47 pm
- Forum: Windows
- Topic: Problem Importing 24-bit DTS
- Replies: 11
- Views: 3766
Re: Problem Importing 24-bit DTS
" Use custom mix " instead of "Always mix all tracks down" Now with FFmpeg ffmpeg -i - -c:a dca -strict -2 -ar 48000 "%f" The final result is dts, 6 channels, 48KHz, 16 bits. Is -c:a the same as -acodec I am not an expert in this, I just ...
- Sat May 17, 2014 3:50 pm
- Forum: Windows
- Topic: Problem Importing 24-bit DTS
- Replies: 11
- Views: 3766
Re: Problem Importing 24-bit DTS
Hmm
Audacity is able to export 24 bit PCM without FFmpeg.
File > Export Audio > Other uncompressed files > Options > Signed 24 bit PCM
Audacity is able to export 24 bit PCM without FFmpeg.
File > Export Audio > Other uncompressed files > Options > Signed 24 bit PCM
- Sat May 17, 2014 3:28 pm
- Forum: Windows
- Topic: Problem Importing 24-bit DTS
- Replies: 11
- Views: 3766
Re: Problem Importing 24-bit DTS
Hello again :roll: If the file is exported from Audacity as a .wav file with ffmpeg -i - -c:a pcm_s24le -ar 48000 -ac 6 "%f" The result is pcm, 6 channels, 48KHz, 24 bits. So all the original parameters are now kept (including bit depth). And it could ...
- Sat May 17, 2014 12:18 am
- Forum: Windows
- Topic: Problem Importing 24-bit DTS
- Replies: 11
- Views: 3766
Re: Problem Importing 24-bit DTS
Doh
I needed to set Audacity ...
Preferences > Import/Export
"Use custom mix" instead of "Always mix all tracks down"
Now with FFmpeg
The final result is
dts, 6 channels, 48KHz, 16 bits.
I needed to set Audacity ...
Preferences > Import/Export
"Use custom mix" instead of "Always mix all tracks down"
Now with FFmpeg
Code: Select all
ffmpeg -i - -c:a dca -strict -2 -ar 48000 "%f"dts, 6 channels, 48KHz, 16 bits.