VideoHelp Forum
+ Reply to Thread
Page 12 of 25
FirstFirst ... 2 10 11 12 13 14 22 ... LastLast
Results 331 to 360 of 721
Thread
  1. Member
    Join Date
    Nov 2017
    Location
    Madrid, Spain
    Search PM
    Hi, sorry for the delay, at this moment that feature is not available in the application.

    Originally Posted by Goni05 View Post
    Eibol,

    First, this is a great tool! I will have to add it to my arsenal of tools to edit videos.

    What brought me to find your tool in the first place was converting my library of MP3+G over to MP4/MKV. I think this was one of the firsts post on this forum thread. I have found that using the Stream Multiplex works great, but I cannot seem to figure out how to batch up an entire library to convert everything. I was hoping that since the video and audio streams are just in separate files (same name, different extension), we could batch them up easily, but I do not see how to do it in your tool. Is this possible?
    Quote Quote  
  2. Member
    Join Date
    Nov 2017
    Location
    Madrid, Spain
    Search PM
    Multi-file feature, a distinctive time-saving feature of the application, has been troublesome due to persisting random issues, specially on fast machines, causing unreliability, missing output files. Finally it seems it now works as expected, 100% reliable and even faster. Anyone using multi-file feature may wish to update to this version:

    Updated 2.1.1 executable: https://drive.upm.es/index.php/s/8RcbVoVXwa2YMz6/download

    Cheers
    Quote Quote  
  3. Member
    Join Date
    Nov 2017
    Location
    Madrid, Spain
    Search PM
    New version 2.1.2

    Changelog:
    - Fixed multi-file random issues, like missing or misplaced output files.
    - Fixed crash on multi-file with files shorter than 1 second.
    - Fixed bug loading GPU decoding menu.
    - Fixed bug overwriting files with the same name and different extension.
    - Delete source files option set as persistent setting.
    - Try in console page code set to UTF-8.
    - Right click file to show total seconds/frames.
    - Changed Join files output naming scheme.
    - Fixed Sendto bug not adding subfolders on startup.
    - When application is already running, selected files are sent to first instance.
    - Fixed installer bug on Windows 7 with .NET already installed.


    Installer:
    https://files.videohelp.com/u/273695/FFbatch_setup_2.1.2_x86.exe
    https://files.videohelp.com/u/273695/FFbatch_setup_2.1.2_x64.exe

    Portable:
    https://files.videohelp.com/u/273695/FFmpeg_Batch_2.1.2_Portable.exe
    https://files.videohelp.com/u/273695/FFmpeg_Batch_2.1.2_Portable_x64.exe
    Last edited by Eibol; 15th Jan 2020 at 10:29. Reason: Minor change
    Quote Quote  
  4. how to set fast-pskip=0
    according to this page https://sites.google.com/site/linuxencoding/x264-ffmpeg-mapping i tried to add "-flags2 -fastpskip" but getting error. kindly help please.

    nvm problem solved.
    Last edited by iKron; 15th Jan 2020 at 15:45.
    Quote Quote  
  5. Member
    Join Date
    Nov 2017
    Location
    Madrid, Spain
    Search PM
    Originally Posted by firekid View Post
    how to set fast-pskip=0
    according to this page https://sites.google.com/site/linuxencoding/x264-ffmpeg-mapping i tried to add "-flags2 -fastpskip" but getting error. kindly help please.

    nvm problem solved.
    I guess you are encoding h264, so maybe you just need to add -x264-params, like this:

    Code:
    -c:v libx264 -crf 20 -x264-params --no-fast-skip -c:a copy
    Quote Quote  
  6. thank you i only used "-fast-pskip 0" which worked fine. is this command fine too?

    i need audio command help please. i used following command

    Code:
    -c:v copy -c:a aac -vbr 3
    audio encoding fine but i think app not using vbr value. i tried to use value 1, 2, 3, 4, 5 but all time audio output gave same bit rate
    Quote Quote  
  7. Member
    Join Date
    Nov 2017
    Location
    Madrid, Spain
    Search PM
    Originally Posted by firekid View Post
    thank you i only used "-fast-pskip 0" which worked fine. is this command fine too?

    i need audio command help please. i used following command

    Code:
    -c:v copy -c:a aac -vbr 3
    audio encoding fine but i think app not using vbr value. i tried to use value 1, 2, 3, 4, 5 but all time audio output gave same bit rate
    Regarding video, I guess so, but no sure about that.

    Regarding audio, don't use -vbr, use
    Code:
    -c:a aac -q:a 2
    But it is not recommended, CBR 96K or higher is fine for anything.
    Quote Quote  
  8. thanks you.
    Last edited by iKron; 16th Jan 2020 at 06:47.
    Quote Quote  
  9. Member
    Join Date
    Nov 2017
    Location
    Madrid, Spain
    Search PM
    Fraunhofer AAC encoder is only available in custom non-redistributable ffmpeg compilations, due to licensing issues.
    I compiled it myself some time ago, in case anyone needs it.

    Then you could use something like -c:a libfdk_aac -vbr 3

    By the way, any donation is welcome at the project site
    Last edited by Eibol; 16th Jan 2020 at 08:46. Reason: Removed fdk link
    Quote Quote  
  10. Member
    Join Date
    Aug 2013
    Location
    Central Germany
    Search PM
    You are not allowed to distribute your copy...

    But people who are interested in recent builds and can spare a few GB harddisk space for a building environment can use the media-autobuild suite to easily compile an ffmpeg with all desired libraries, selecting the "non-free license" model during configuration. And keep the result for themselves.

    Major disadvantage: There are so many updates for ffmpeg itself, as well as for the linked libraries, that sometimes you need patience and even some will to participate when a bug prevents the building process from finishing.
    Quote Quote  
  11. Member
    Join Date
    Nov 2017
    Location
    Madrid, Spain
    Search PM
    Originally Posted by LigH.de View Post
    You are not allowed to distribute your copy...

    But people who are interested in recent builds and can spare a few GB harddisk space for a building environment can use the media-autobuild suite to easily compile an ffmpeg with all desired libraries, selecting the "non-free license" model during configuration. And keep the result for themselves.

    Major disadvantage: There are so many updates for ffmpeg itself, as well as for the linked libraries, that sometimes you need patience and even some will to participate when a bug prevents the building process from finishing.
    You are right, I will remove it from public access. It's a rather controversial situation. Thanks for the clarification.
    Even so, I will continue offering this compilation I did myself privately to anyone interested por personal purposes.
    Quote Quote  
  12. Originally Posted by Eibol View Post
    Fraunhofer AAC encoder is only available in custom non-redistributable ffmpeg compilations, due to licensing issues.
    I compiled it myself some time ago, in case anyone needs it.

    Then you could use something like -c:a libfdk_aac -vbr 3

    By the way, any donation is welcome at the project site
    donated some small amount of money and thank you for quick reply. new ffmpeg.exe worked fine. but after playing with audio encode setting i think i will stick with 192K CBR

    btw i am not sure if ffmpeg encode like this. if video has .srt, encoededoutput encode auto convert to .ass

    Code:
    Text #1
    ID                                       : 3
    Format                                   : ASS
    Codec ID                                 : S_TEXT/ASS
    Codec ID/Info                            : Advanced Sub Station Alpha
    Compression mode                         : Lossless
    Writing library                          : Lavc57.106.104 ssa
    Language                                 : English
    Default                                  : Yes
    Forced                                   : No
    Statistics Tags Issue                    : mkvmerge v25.0.0 ('Prog Noir') 32-bit 2020-01-15 19:24:06 / Lavf57.82.104 
    FromStats_BitRate                        : 0
    FromStats_Duration                       : 00:00:00.000000000
    FromStats_FrameCount                     : 0
    FromStats_StreamSize                     : 0
    Quote Quote  
  13. Member
    Join Date
    Nov 2017
    Location
    Madrid, Spain
    Search PM
    Originally Posted by firekid View Post
    Originally Posted by Eibol View Post
    Fraunhofer AAC encoder is only available in custom non-redistributable ffmpeg compilations, due to licensing issues.
    I compiled it myself some time ago, in case anyone needs it.

    Then you could use something like -c:a libfdk_aac -vbr 3

    By the way, any donation is welcome at the project site
    donated some small amount of money and thank you for quick reply. new ffmpeg.exe worked fine. but after playing with audio encode setting i think i will stick with 192K CBR

    btw i am not sure if ffmpeg encode like this. if video has .srt, encoededoutput encode auto convert to .ass

    Code:
    Text #1
    ID                                       : 3
    Format                                   : ASS
    Codec ID                                 : S_TEXT/ASS
    Codec ID/Info                            : Advanced Sub Station Alpha
    Compression mode                         : Lossless
    Writing library                          : Lavc57.106.104 ssa
    Language                                 : English
    Default                                  : Yes
    Forced                                   : No
    Statistics Tags Issue                    : mkvmerge v25.0.0 ('Prog Noir') 32-bit 2020-01-15 19:24:06 / Lavf57.82.104 
    FromStats_BitRate                        : 0
    FromStats_Duration                       : 00:00:00.000000000
    FromStats_FrameCount                     : 0
    FromStats_StreamSize                     : 0
    Many thanks.
    What is the subtitles source format, and what ffmpeg parameters are you using?
    Quote Quote  
  14. i used default preset
    Code:
    -c:v libx264 -crf 20 -c:a copy
    here is the original file. i cut it to 40sec so you if you want you can easily download.
    Code:
    https://www16.zippyshare.com/v/a4DkIEH1/file.html
    output encoded video .ass add extra styling.


    this is the source media info
    Code:
    General
    Unique ID                                : 109324240357003202998569541283006313225 (0x523F15335EB856A0FDCB0314279AF309)
    Complete name                            : test.mkv
    Format                                   : Matroska
    Format version                           : Version 4 / Version 2
    File size                                : 30.8 MiB
    Duration                                 : 44 s 0 ms
    Overall bit rate mode                    : Variable
    Overall bit rate                         : 5 872 kb/s
    Encoded date                             : UTC 2020-01-15 19:24:06
    Writing application                      : mkvmerge v25.0.0 ('Prog Noir') 32-bit
    Writing library                          : libebml v1.3.6 + libmatroska v1.4.9
    
    Video
    ID                                       : 1
    Format                                   : AVC
    Format/Info                              : Advanced Video Codec
    Format profile                           : Main@L4
    Format settings, CABAC                   : Yes
    Format settings, RefFrames               : 3 frames
    Codec ID                                 : V_MPEG4/ISO/AVC
    Duration                                 : 44 s 0 ms
    Bit rate mode                            : Variable
    Bit rate                                 : 5 800 kb/s
    Maximum bit rate                         : 8 700 kb/s
    Width                                    : 1 920 pixels
    Height                                   : 1 080 pixels
    Display aspect ratio                     : 16:9
    Frame rate mode                          : Constant
    Frame rate                               : 25.000 FPS
    Color space                              : YUV
    Chroma subsampling                       : 4:2:0
    Bit depth                                : 8 bits
    Scan type                                : Progressive
    Bits/(Pixel*Frame)                       : 0.112
    Stream size                              : 30.1 MiB (98%)
    Writing library                          : x264 core 148 r2715 7e75228
    Encoding settings                        : cabac=1 / ref=3 / deblock=1:0:0 / analyse=0x1:0x111 / me=umh / subme=10 / psy=1 / psy_rd=1.00:0.00 / mixed_ref=1 / me_range=24 / chroma_me=1 / trellis=2 / 8x8dct=0 / cqm=0 / deadzone=21,11 / fast_pskip=1 / chroma_qp_offset=-2 / threads=8 / lookahead_threads=1 / sliced_threads=0 / nr=0 / decimate=1 / interlaced=0 / bluray_compat=0 / stitchable=1 / constrained_intra=0 / bframes=2 / b_pyramid=0 / b_adapt=2 / b_bias=0 / direct=3 / weightb=1 / open_gop=0 / weightp=2 / keyint=250 / keyint_min=25 / scenecut=0 / intra_refresh=0 / rc_lookahead=50 / rc=2pass / mbtree=1 / bitrate=5800 / ratetol=1.0 / qcomp=0.50 / qpmin=6 / qpmax=51 / qpstep=4 / cplxblur=20.0 / qblur=0.5 / vbv_maxrate=8700 / vbv_bufsize=11600 / nal_hrd=vbr / filler=0 / ip_ratio=1.40 / aq=1:1.00
    Default                                  : Yes
    Forced                                   : No
    
    Audio
    ID                                       : 2
    Format                                   : E-AC-3
    Format/Info                              : Enhanced Audio Coding 3
    Format settings, Endianness              : Big
    Codec ID                                 : A_EAC3
    Duration                                 : 44 s 0 ms
    Bit rate mode                            : Constant
    Bit rate                                 : 128 kb/s
    Channel(s)                               : 2 channels
    Channel positions                        : Front: L R
    Sampling rate                            : 48.0 kHz
    Frame rate                               : 187.500 FPS (256 SPF)
    Compression mode                         : Lossy
    Stream size                              : 688 KiB (2%)
    Language                                 : Chinese
    Service kind                             : Complete Main
    Default                                  : Yes
    Forced                                   : No
    
    Text #1
    ID                                       : 3
    Format                                   : UTF-8
    Codec ID                                 : S_TEXT/UTF8
    Codec ID/Info                            : UTF-8 Plain Text
    Bit rate                                 : 0 b/s
    Count of elements                        : 0
    Stream size                              : 0.00 Byte (0%)
    Language                                 : English
    Default                                  : Yes
    Forced                                   : No
    
    Text #2
    ID                                       : 4
    Format                                   : UTF-8
    Codec ID                                 : S_TEXT/UTF8
    Codec ID/Info                            : UTF-8 Plain Text
    Bit rate                                 : 0 b/s
    Count of elements                        : 0
    Stream size                              : 0.00 Byte (0%)
    Title                                    : Latin American
    Language                                 : Spanish
    Default                                  : No
    Forced                                   : No
    
    Text #3
    ID                                       : 5
    Format                                   : UTF-8
    Codec ID                                 : S_TEXT/UTF8
    Codec ID/Info                            : UTF-8 Plain Text
    Bit rate                                 : 0 b/s
    Count of elements                        : 0
    Stream size                              : 0.00 Byte (0%)
    Language                                 : Indonesian
    Default                                  : No
    Forced                                   : No
    
    Text #4
    ID                                       : 6
    Format                                   : UTF-8
    Codec ID                                 : S_TEXT/UTF8
    Codec ID/Info                            : UTF-8 Plain Text
    Bit rate                                 : 0 b/s
    Count of elements                        : 0
    Stream size                              : 0.00 Byte (0%)
    Language                                 : Japanese
    Default                                  : No
    Forced                                   : No
    
    Text #5
    ID                                       : 7
    Format                                   : UTF-8
    Codec ID                                 : S_TEXT/UTF8
    Codec ID/Info                            : UTF-8 Plain Text
    Bit rate                                 : 0 b/s
    Count of elements                        : 0
    Stream size                              : 0.00 Byte (0%)
    Language                                 : Korean
    Default                                  : No
    Forced                                   : No
    
    Text #6
    ID                                       : 8
    Format                                   : UTF-8
    Codec ID                                 : S_TEXT/UTF8
    Codec ID/Info                            : UTF-8 Plain Text
    Bit rate                                 : 0 b/s
    Count of elements                        : 0
    Stream size                              : 0.00 Byte (0%)
    Language                                 : Malay
    Default                                  : No
    Forced                                   : No
    
    Text #7
    ID                                       : 9
    Format                                   : UTF-8
    Codec ID                                 : S_TEXT/UTF8
    Codec ID/Info                            : UTF-8 Plain Text
    Bit rate                                 : 0 b/s
    Count of elements                        : 0
    Stream size                              : 0.00 Byte (0%)
    Language                                 : Thai
    Default                                  : No
    Forced                                   : No
    
    Text #8
    ID                                       : 10
    Format                                   : UTF-8
    Codec ID                                 : S_TEXT/UTF8
    Codec ID/Info                            : UTF-8 Plain Text
    Bit rate                                 : 0 b/s
    Count of elements                        : 0
    Stream size                              : 0.00 Byte (0%)
    Language                                 : Vietnamese
    Default                                  : No
    Forced                                   : No
    
    Text #9
    ID                                       : 11
    Format                                   : UTF-8
    Codec ID                                 : S_TEXT/UTF8
    Codec ID/Info                            : UTF-8 Plain Text
    Bit rate                                 : 0 b/s
    Count of elements                        : 0
    Stream size                              : 0.00 Byte (0%)
    Title                                    : Simplified
    Language                                 : Chinese
    Default                                  : No
    Forced                                   : No
    
    Text #10
    ID                                       : 12
    Format                                   : UTF-8
    Codec ID                                 : S_TEXT/UTF8
    Codec ID/Info                            : UTF-8 Plain Text
    Bit rate                                 : 0 b/s
    Count of elements                        : 0
    Stream size                              : 0.00 Byte (0%)
    Title                                    : Traditional
    Language                                 : Chinese
    Default                                  : No
    Forced                                   : No
    here is the output media info

    Code:
    General
    Unique ID                                : 294598726410423406545639968514813165111 (0xDDA1A69FE3ABD86514E0367DBD837E37)
    Complete name                            : test.mkv
    Format                                   : Matroska
    Format version                           : Version 4 / Version 2
    File size                                : 35.2 MiB
    Duration                                 : 44 s 0 ms
    Overall bit rate                         : 6 706 kb/s
    Writing application                      : Lavf57.82.104
    Writing library                          : Lavf57.82.104
    ErrorDetectionType                       : Per level 1
    
    Video
    ID                                       : 1
    Format                                   : AVC
    Format/Info                              : Advanced Video Codec
    Format profile                           : High@L4
    Format settings, CABAC                   : Yes
    Format settings, RefFrames               : 4 frames
    Codec ID                                 : V_MPEG4/ISO/AVC
    Duration                                 : 44 s 0 ms
    Bit rate                                 : 6 444 kb/s
    Width                                    : 1 920 pixels
    Height                                   : 1 080 pixels
    Display aspect ratio                     : 16:9
    Frame rate mode                          : Constant
    Frame rate                               : 25.000 FPS
    Color space                              : YUV
    Chroma subsampling                       : 4:2:0
    Bit depth                                : 8 bits
    Scan type                                : Progressive
    Bits/(Pixel*Frame)                       : 0.124
    Stream size                              : 33.8 MiB (96%)
    Writing library                          : x264 core 152 r2851 ba24899
    Encoding settings                        : cabac=1 / ref=3 / deblock=1:0:0 / analyse=0x3:0x113 / me=hex / subme=7 / psy=1 / psy_rd=1.00:0.00 / mixed_ref=1 / me_range=16 / chroma_me=1 / trellis=1 / 8x8dct=1 / cqm=0 / deadzone=21,11 / fast_pskip=1 / chroma_qp_offset=-2 / threads=12 / lookahead_threads=2 / sliced_threads=0 / nr=0 / decimate=1 / interlaced=0 / bluray_compat=0 / constrained_intra=0 / bframes=3 / b_pyramid=2 / b_adapt=1 / b_bias=0 / direct=1 / weightb=1 / open_gop=0 / weightp=2 / keyint=250 / keyint_min=25 / scenecut=40 / intra_refresh=0 / rc_lookahead=40 / rc=crf / mbtree=1 / crf=20.0 / qcomp=0.60 / qpmin=0 / qpmax=69 / qpstep=4 / ip_ratio=1.40 / aq=1:1.00
    Default                                  : Yes
    Forced                                   : No
    Statistics Tags Issue                    : mkvmerge v25.0.0 ('Prog Noir') 32-bit 2020-01-15 19:24:06 / Lavf57.82.104 
    FromStats_BitRate                        : 5740352
    FromStats_Duration                       : 00:00:44.000000000
    FromStats_FrameCount                     : 1100
    FromStats_StreamSize                     : 31571941
    
    Audio
    ID                                       : 2
    Format                                   : E-AC-3
    Format/Info                              : Enhanced Audio Coding 3
    Format settings, Endianness              : Big
    Codec ID                                 : A_EAC3
    Duration                                 : 44 s 0 ms
    Bit rate mode                            : Constant
    Bit rate                                 : 128 kb/s
    Channel(s)                               : 2 channels
    Channel positions                        : Front: L R
    Sampling rate                            : 48.0 kHz
    Frame rate                               : 187.500 FPS (256 SPF)
    Bit depth                                : 32 bits
    Compression mode                         : Lossy
    Stream size                              : 688 KiB (2%)
    Language                                 : Chinese
    Service kind                             : Complete Main
    Default                                  : Yes
    Forced                                   : No
    Statistics Tags Issue                    : mkvmerge v25.0.0 ('Prog Noir') 32-bit 2020-01-15 19:24:06 / Lavf57.82.104 
    FromStats_BitRate                        : 128000
    FromStats_Duration                       : 00:00:44.000000000
    FromStats_FrameCount                     : 1375
    FromStats_StreamSize                     : 704000
    
    Text
    ID                                       : 3
    Format                                   : ASS
    Codec ID                                 : S_TEXT/ASS
    Codec ID/Info                            : Advanced Sub Station Alpha
    Compression mode                         : Lossless
    Writing library                          : Lavc57.106.104 ssa
    Language                                 : English
    Default                                  : Yes
    Forced                                   : No
    Statistics Tags Issue                    : mkvmerge v25.0.0 ('Prog Noir') 32-bit 2020-01-15 19:24:06 / Lavf57.82.104 
    FromStats_BitRate                        : 0
    FromStats_Duration                       : 00:00:00.000000000
    FromStats_FrameCount                     : 0
    FromStats_StreamSize                     : 0
    Quote Quote  
  15. Member
    Join Date
    Nov 2017
    Location
    Madrid, Spain
    Search PM
    Originally Posted by firekid View Post
    i used default preset
    Code:
    -c:v libx264 -crf 20 -c:a copy
    here is the original file. i cut it to 40sec so you if you want you can easily download.
    Code:
    https://www16.zippyshare.com/v/a4DkIEH1/file.html
    output encoded video .ass add extra styling.


    this is the source media info
    Code:
    General
    Unique ID                                : 109324240357003202998569541283006313225 (0x523F15335EB856A0FDCB0314279AF309)
    Complete name                            : test.mkv
    Format                                   : Matroska
    Format version                           : Version 4 / Version 2
    File size                                : 30.8 MiB
    Duration                                 : 44 s 0 ms
    Overall bit rate mode                    : Variable
    Overall bit rate                         : 5 872 kb/s
    Encoded date                             : UTC 2020-01-15 19:24:06
    Writing application                      : mkvmerge v25.0.0 ('Prog Noir') 32-bit
    Writing library                          : libebml v1.3.6 + libmatroska v1.4.9
    
    Video
    ID                                       : 1
    Format                                   : AVC
    Format/Info                              : Advanced Video Codec
    Format profile                           : Main@L4
    Format settings, CABAC                   : Yes
    Format settings, RefFrames               : 3 frames
    Codec ID                                 : V_MPEG4/ISO/AVC
    Duration                                 : 44 s 0 ms
    Bit rate mode                            : Variable
    Bit rate                                 : 5 800 kb/s
    Maximum bit rate                         : 8 700 kb/s
    Width                                    : 1 920 pixels
    Height                                   : 1 080 pixels
    Display aspect ratio                     : 16:9
    Frame rate mode                          : Constant
    Frame rate                               : 25.000 FPS
    Color space                              : YUV
    Chroma subsampling                       : 4:2:0
    Bit depth                                : 8 bits
    Scan type                                : Progressive
    Bits/(Pixel*Frame)                       : 0.112
    Stream size                              : 30.1 MiB (98%)
    Writing library                          : x264 core 148 r2715 7e75228
    Encoding settings                        : cabac=1 / ref=3 / deblock=1:0:0 / analyse=0x1:0x111 / me=umh / subme=10 / psy=1 / psy_rd=1.00:0.00 / mixed_ref=1 / me_range=24 / chroma_me=1 / trellis=2 / 8x8dct=0 / cqm=0 / deadzone=21,11 / fast_pskip=1 / chroma_qp_offset=-2 / threads=8 / lookahead_threads=1 / sliced_threads=0 / nr=0 / decimate=1 / interlaced=0 / bluray_compat=0 / stitchable=1 / constrained_intra=0 / bframes=2 / b_pyramid=0 / b_adapt=2 / b_bias=0 / direct=3 / weightb=1 / open_gop=0 / weightp=2 / keyint=250 / keyint_min=25 / scenecut=0 / intra_refresh=0 / rc_lookahead=50 / rc=2pass / mbtree=1 / bitrate=5800 / ratetol=1.0 / qcomp=0.50 / qpmin=6 / qpmax=51 / qpstep=4 / cplxblur=20.0 / qblur=0.5 / vbv_maxrate=8700 / vbv_bufsize=11600 / nal_hrd=vbr / filler=0 / ip_ratio=1.40 / aq=1:1.00
    Default                                  : Yes
    Forced                                   : No
    
    Audio
    ID                                       : 2
    Format                                   : E-AC-3
    Format/Info                              : Enhanced Audio Coding 3
    Format settings, Endianness              : Big
    Codec ID                                 : A_EAC3
    Duration                                 : 44 s 0 ms
    Bit rate mode                            : Constant
    Bit rate                                 : 128 kb/s
    Channel(s)                               : 2 channels
    Channel positions                        : Front: L R
    Sampling rate                            : 48.0 kHz
    Frame rate                               : 187.500 FPS (256 SPF)
    Compression mode                         : Lossy
    Stream size                              : 688 KiB (2%)
    Language                                 : Chinese
    Service kind                             : Complete Main
    Default                                  : Yes
    Forced                                   : No
    
    Text #1
    ID                                       : 3
    Format                                   : UTF-8
    Codec ID                                 : S_TEXT/UTF8
    Codec ID/Info                            : UTF-8 Plain Text
    Bit rate                                 : 0 b/s
    Count of elements                        : 0
    Stream size                              : 0.00 Byte (0%)
    Language                                 : English
    Default                                  : Yes
    Forced                                   : No
    
    Text #2
    ID                                       : 4
    Format                                   : UTF-8
    Codec ID                                 : S_TEXT/UTF8
    Codec ID/Info                            : UTF-8 Plain Text
    Bit rate                                 : 0 b/s
    Count of elements                        : 0
    Stream size                              : 0.00 Byte (0%)
    Title                                    : Latin American
    Language                                 : Spanish
    Default                                  : No
    Forced                                   : No
    
    Text #3
    ID                                       : 5
    Format                                   : UTF-8
    Codec ID                                 : S_TEXT/UTF8
    Codec ID/Info                            : UTF-8 Plain Text
    Bit rate                                 : 0 b/s
    Count of elements                        : 0
    Stream size                              : 0.00 Byte (0%)
    Language                                 : Indonesian
    Default                                  : No
    Forced                                   : No
    
    Text #4
    ID                                       : 6
    Format                                   : UTF-8
    Codec ID                                 : S_TEXT/UTF8
    Codec ID/Info                            : UTF-8 Plain Text
    Bit rate                                 : 0 b/s
    Count of elements                        : 0
    Stream size                              : 0.00 Byte (0%)
    Language                                 : Japanese
    Default                                  : No
    Forced                                   : No
    
    Text #5
    ID                                       : 7
    Format                                   : UTF-8
    Codec ID                                 : S_TEXT/UTF8
    Codec ID/Info                            : UTF-8 Plain Text
    Bit rate                                 : 0 b/s
    Count of elements                        : 0
    Stream size                              : 0.00 Byte (0%)
    Language                                 : Korean
    Default                                  : No
    Forced                                   : No
    
    Text #6
    ID                                       : 8
    Format                                   : UTF-8
    Codec ID                                 : S_TEXT/UTF8
    Codec ID/Info                            : UTF-8 Plain Text
    Bit rate                                 : 0 b/s
    Count of elements                        : 0
    Stream size                              : 0.00 Byte (0%)
    Language                                 : Malay
    Default                                  : No
    Forced                                   : No
    
    Text #7
    ID                                       : 9
    Format                                   : UTF-8
    Codec ID                                 : S_TEXT/UTF8
    Codec ID/Info                            : UTF-8 Plain Text
    Bit rate                                 : 0 b/s
    Count of elements                        : 0
    Stream size                              : 0.00 Byte (0%)
    Language                                 : Thai
    Default                                  : No
    Forced                                   : No
    
    Text #8
    ID                                       : 10
    Format                                   : UTF-8
    Codec ID                                 : S_TEXT/UTF8
    Codec ID/Info                            : UTF-8 Plain Text
    Bit rate                                 : 0 b/s
    Count of elements                        : 0
    Stream size                              : 0.00 Byte (0%)
    Language                                 : Vietnamese
    Default                                  : No
    Forced                                   : No
    
    Text #9
    ID                                       : 11
    Format                                   : UTF-8
    Codec ID                                 : S_TEXT/UTF8
    Codec ID/Info                            : UTF-8 Plain Text
    Bit rate                                 : 0 b/s
    Count of elements                        : 0
    Stream size                              : 0.00 Byte (0%)
    Title                                    : Simplified
    Language                                 : Chinese
    Default                                  : No
    Forced                                   : No
    
    Text #10
    ID                                       : 12
    Format                                   : UTF-8
    Codec ID                                 : S_TEXT/UTF8
    Codec ID/Info                            : UTF-8 Plain Text
    Bit rate                                 : 0 b/s
    Count of elements                        : 0
    Stream size                              : 0.00 Byte (0%)
    Title                                    : Traditional
    Language                                 : Chinese
    Default                                  : No
    Forced                                   : No
    here is the output media info

    Code:
    General
    Unique ID                                : 294598726410423406545639968514813165111 (0xDDA1A69FE3ABD86514E0367DBD837E37)
    Complete name                            : test.mkv
    Format                                   : Matroska
    Format version                           : Version 4 / Version 2
    File size                                : 35.2 MiB
    Duration                                 : 44 s 0 ms
    Overall bit rate                         : 6 706 kb/s
    Writing application                      : Lavf57.82.104
    Writing library                          : Lavf57.82.104
    ErrorDetectionType                       : Per level 1
    
    Video
    ID                                       : 1
    Format                                   : AVC
    Format/Info                              : Advanced Video Codec
    Format profile                           : High@L4
    Format settings, CABAC                   : Yes
    Format settings, RefFrames               : 4 frames
    Codec ID                                 : V_MPEG4/ISO/AVC
    Duration                                 : 44 s 0 ms
    Bit rate                                 : 6 444 kb/s
    Width                                    : 1 920 pixels
    Height                                   : 1 080 pixels
    Display aspect ratio                     : 16:9
    Frame rate mode                          : Constant
    Frame rate                               : 25.000 FPS
    Color space                              : YUV
    Chroma subsampling                       : 4:2:0
    Bit depth                                : 8 bits
    Scan type                                : Progressive
    Bits/(Pixel*Frame)                       : 0.124
    Stream size                              : 33.8 MiB (96%)
    Writing library                          : x264 core 152 r2851 ba24899
    Encoding settings                        : cabac=1 / ref=3 / deblock=1:0:0 / analyse=0x3:0x113 / me=hex / subme=7 / psy=1 / psy_rd=1.00:0.00 / mixed_ref=1 / me_range=16 / chroma_me=1 / trellis=1 / 8x8dct=1 / cqm=0 / deadzone=21,11 / fast_pskip=1 / chroma_qp_offset=-2 / threads=12 / lookahead_threads=2 / sliced_threads=0 / nr=0 / decimate=1 / interlaced=0 / bluray_compat=0 / constrained_intra=0 / bframes=3 / b_pyramid=2 / b_adapt=1 / b_bias=0 / direct=1 / weightb=1 / open_gop=0 / weightp=2 / keyint=250 / keyint_min=25 / scenecut=40 / intra_refresh=0 / rc_lookahead=40 / rc=crf / mbtree=1 / crf=20.0 / qcomp=0.60 / qpmin=0 / qpmax=69 / qpstep=4 / ip_ratio=1.40 / aq=1:1.00
    Default                                  : Yes
    Forced                                   : No
    Statistics Tags Issue                    : mkvmerge v25.0.0 ('Prog Noir') 32-bit 2020-01-15 19:24:06 / Lavf57.82.104 
    FromStats_BitRate                        : 5740352
    FromStats_Duration                       : 00:00:44.000000000
    FromStats_FrameCount                     : 1100
    FromStats_StreamSize                     : 31571941
    
    Audio
    ID                                       : 2
    Format                                   : E-AC-3
    Format/Info                              : Enhanced Audio Coding 3
    Format settings, Endianness              : Big
    Codec ID                                 : A_EAC3
    Duration                                 : 44 s 0 ms
    Bit rate mode                            : Constant
    Bit rate                                 : 128 kb/s
    Channel(s)                               : 2 channels
    Channel positions                        : Front: L R
    Sampling rate                            : 48.0 kHz
    Frame rate                               : 187.500 FPS (256 SPF)
    Bit depth                                : 32 bits
    Compression mode                         : Lossy
    Stream size                              : 688 KiB (2%)
    Language                                 : Chinese
    Service kind                             : Complete Main
    Default                                  : Yes
    Forced                                   : No
    Statistics Tags Issue                    : mkvmerge v25.0.0 ('Prog Noir') 32-bit 2020-01-15 19:24:06 / Lavf57.82.104 
    FromStats_BitRate                        : 128000
    FromStats_Duration                       : 00:00:44.000000000
    FromStats_FrameCount                     : 1375
    FromStats_StreamSize                     : 704000
    
    Text
    ID                                       : 3
    Format                                   : ASS
    Codec ID                                 : S_TEXT/ASS
    Codec ID/Info                            : Advanced Sub Station Alpha
    Compression mode                         : Lossless
    Writing library                          : Lavc57.106.104 ssa
    Language                                 : English
    Default                                  : Yes
    Forced                                   : No
    Statistics Tags Issue                    : mkvmerge v25.0.0 ('Prog Noir') 32-bit 2020-01-15 19:24:06 / Lavf57.82.104 
    FromStats_BitRate                        : 0
    FromStats_Duration                       : 00:00:00.000000000
    FromStats_FrameCount                     : 0
    FromStats_StreamSize                     : 0
    I think you just need to map all streams and copy subtitles, something like this:
    Code:
    -map 0 -c:v libx264 -crf 20 -c:a copy -c:s copy
    Quote Quote  
  16. thank you, worked perfect
    Quote Quote  
  17. is there anyway we can keep the original source audio positions? when i encode it's changing the audio channel position.

    Code:
    -c:v copy -c:a aac -cutoff 20K -b:a 256K

    source audio info:
    Code:
    Audio
    ID                                       : 2
    Format                                   : DTS
    Format/Info                              : Digital Theater Systems
    Mode                                     : 16
    Format settings, Endianness              : Big
    Codec ID                                 : A_DTS
    Duration                                 : 20 s 107 ms
    Bit rate mode                            : Constant
    Bit rate                                 : 1 509 kb/s
    Channel(s)                               : 6 channels
    Channel positions                        : Front: L C R, Side: L R, LFE
    Sampling rate                            : 48.0 kHz
    Frame rate                               : 93.750 FPS (512 SPF)
    Bit depth                                : 24 bits
    Compression mode                         : Lossy
    Stream size                              : 3.62 MiB (13%)
    Language                                 : English
    Default                                  : Yes
    Forced                                   : No
    output audio:
    Code:
    Audio
    ID                                       : 2
    Format                                   : AAC
    Format/Info                              : Advanced Audio Codec
    Format profile                           : LC
    Codec ID                                 : A_AAC
    Duration                                 : 20 s 128 ms
    Channel(s)                               : 6 channels
    Channel positions                        : Front: L C R, Side: C, Back: L R
    Sampling rate                            : 48.0 kHz
    Frame rate                               : 46.875 FPS (1024 SPF)
    Compression mode                         : Lossy
    Writing library                          : Lavc58.65.103 aac
    Language                                 : English
    Default                                  : Yes
    Forced                                   : No
    Statistics Tags Issue                    : mkvmerge v25.0.0 ('Prog Noir') 32-bit 2020-01-16 19:47:50 / Lavf58.35.102 
    FromStats_BitRate                        : 1508974
    FromStats_Duration                       : 00:00:20.128000000
    FromStats_FrameCount                     : 1885
    FromStats_StreamSize                     : 3792620
    Last edited by iKron; 16th Jan 2020 at 14:43.
    Quote Quote  
  18. Member
    Join Date
    Nov 2017
    Location
    Madrid, Spain
    Search PM
    That I don't know, maybe aac does not support the same audio configuration as DTS.
    This page may help: FFmpeg Audio Channel Manipulation

    Originally Posted by firekid View Post
    is there anyway we can keep the original source audio positions? when i encode it's changing the audio channel position.

    Code:
    -c:v copy -c:a aac -cutoff 20K -b:a 256K

    source audio info:
    Code:
    Audio
    ID                                       : 2
    Format                                   : DTS
    Format/Info                              : Digital Theater Systems
    Mode                                     : 16
    Format settings, Endianness              : Big
    Codec ID                                 : A_DTS
    Duration                                 : 20 s 107 ms
    Bit rate mode                            : Constant
    Bit rate                                 : 1 509 kb/s
    Channel(s)                               : 6 channels
    Channel positions                        : Front: L C R, Side: L R, LFE
    Sampling rate                            : 48.0 kHz
    Frame rate                               : 93.750 FPS (512 SPF)
    Bit depth                                : 24 bits
    Compression mode                         : Lossy
    Stream size                              : 3.62 MiB (13%)
    Language                                 : English
    Default                                  : Yes
    Forced                                   : No
    output audio:
    Code:
    Audio
    ID                                       : 2
    Format                                   : AAC
    Format/Info                              : Advanced Audio Codec
    Format profile                           : LC
    Codec ID                                 : A_AAC
    Duration                                 : 20 s 128 ms
    Channel(s)                               : 6 channels
    Channel positions                        : Front: L C R, Side: C, Back: L R
    Sampling rate                            : 48.0 kHz
    Frame rate                               : 46.875 FPS (1024 SPF)
    Compression mode                         : Lossy
    Writing library                          : Lavc58.65.103 aac
    Language                                 : English
    Default                                  : Yes
    Forced                                   : No
    Statistics Tags Issue                    : mkvmerge v25.0.0 ('Prog Noir') 32-bit 2020-01-16 19:47:50 / Lavf58.35.102 
    FromStats_BitRate                        : 1508974
    FromStats_Duration                       : 00:00:20.128000000
    FromStats_FrameCount                     : 1885
    FromStats_StreamSize                     : 3792620
    Quote Quote  
  19. Hi Eibol,

    Your GUI looks like it will come in handy converting my audible library.

    The command I need to pass to ffmpeg (that works in stand alone)
    Code:
    ffmpeg -y -activation_bytes mybytes -i original_audible_file.aax -c:a copy -vn output.m4a
    I then do the following to export the cover art
    Code:
    ffmpeg -y -i audiobook.aax cover.png
    I then combine the png into ther m4a manually.

    I attempted to play around with your GUI but can't work out how to convert this working single line into a batch compatible line to convert the aax to m4a and embed the cover art.

    Are you able to see easily what my parameters should be?

    Thank you in advance!
    Quote Quote  
  20. Member
    Join Date
    Nov 2017
    Location
    Madrid, Spain
    Search PM
    Originally Posted by Presjar View Post
    Hi Eibol,

    Your GUI looks like it will come in handy converting my audible library.

    The command I need to pass to ffmpeg (that works in stand alone)
    Code:
    ffmpeg -y -activation_bytes mybytes -i original_audible_file.aax -c:a copy -vn output.m4a
    I then do the following to export the cover art
    Code:
    ffmpeg -y -i audiobook.aax cover.png
    I then combine the png into ther m4a manually.

    I attempted to play around with your GUI but can't work out how to convert this working single line into a batch compatible line to convert the aax to m4a and embed the cover art.

    Are you able to see easily what my parameters should be?

    Thank you in advance!
    Hello, currently there is no way to achieve what you need, but depending on the parameters you use, you can do it in two or three individual batch operations.
    Quote Quote  
  21. Member
    Join Date
    Nov 2017
    Location
    Madrid, Spain
    Search PM
    New version 2.1.3

    Changelog:

    FFmpeg 4.2.2
    Added silence detector wizard.
    Fixed a few input path scenarios leading to output files being improperly overwriten.
    Fixed bug sending files to current application instance.
    Other minor bugfixes.

    Installer:
    https://files.videohelp.com/u/273695/FFbatch_setup_2.1.3_x86.exe
    https://files.videohelp.com/u/273695/FFbatch_setup_2.1.3_x64.exe

    Portable:
    https://files.videohelp.com/u/273695/FFmpeg_Batch_2.1.3_Portable.exe
    https://files.videohelp.com/u/273695/FFmpeg_Batch_2.1.3_Portable_x64.exe
    Quote Quote  
  22. Good, how about I have the latest version? FFmpeg Batch AV Converter, How can I achieve an aspect in scale 16; 9 to an mkv file with dimensions 1280x720
    Quote Quote  
  23. Member
    Join Date
    Nov 2017
    Location
    Madrid, Spain
    Search PM
    Originally Posted by twin1979 View Post
    Good, how about I have the latest version? FFmpeg Batch AV Converter, How can I achieve an aspect in scale 16; 9 to an mkv file with dimensions 1280x720
    You have on default presets the following one, which may suit your needs:

    Code:
    -map 0 -c:v libx264 -crf 23 -vf scale=1280:720 -c:a aac -b:a 128K
    Quote Quote  
  24. I set the parameters to default and the 16: 9 aspect is not achieved and I have an mkv file with 60fps and I want to leave it at 23fps and also not leave it at 23fps
    Quote Quote  
  25. use default parametrs and nothing
    Quote Quote  
  26. Member
    Join Date
    Nov 2017
    Location
    Madrid, Spain
    Search PM
    This can help you get the results you need:
    https://trac.ffmpeg.org/wiki/Scaling"]Scaling
    Quote Quote  
  27. Hi Eibol,

    I try to use your program to change video format to adapt it in portrait mode and fit the output screen. How can i do that.
    Thank you
    Quote Quote  
  28. Member
    Join Date
    Nov 2017
    Location
    Madrid, Spain
    Search PM
    Originally Posted by katanka View Post
    Hi Eibol,

    I try to use your program to change video format to adapt it in portrait mode and fit the output screen. How can i do that.
    Thank you
    Hi, what do you need exactly, change size/aspect ratio of source files or something like that?
    Quote Quote  
  29. I use a TV to view video clips but it is placed vertically.
    So I want to change the orientation of the video and certainly also its aspect ratio
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!