Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sickbeard-mp4-automator merge #54

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open

Commits on Mar 2, 2015

  1. Sickbeard-mp4-automator merge

    Updated the modifications made in Sickbeard mp4 automator to the latest
    version of python-video-converter in such a way that they are backwards
    compatible with prior version unlike my last pull attempt.
    
    Changes made here add the ability to output files with multiple audio
    and subtitle tracks taking advantage of FFMPEGs -map function. Can pull
    from multiple or single sources. to create complex files with different
    tracks.
    
    Options are presented as nested dictionaries now but previously used
    style dictionaries are still compatible.
    
    Tests will need to be updated
    Michael Higgins committed Mar 2, 2015
    Configuration menu
    Copy the full SHA
    85c6011 View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2015

  1. begin test updates

    Michael Higgins committed Mar 5, 2015
    Configuration menu
    Copy the full SHA
    6f577ba View commit details
    Browse the repository at this point in the history
  2. fix sample rate

    Michael Higgins committed Mar 5, 2015
    Configuration menu
    Copy the full SHA
    64d21ce View commit details
    Browse the repository at this point in the history
  3. adjust error raising

    makes it more compliant with how the script functioned previously
    (allows it to pass some of the tests)
    Michael Higgins committed Mar 5, 2015
    Configuration menu
    Copy the full SHA
    ad0206f View commit details
    Browse the repository at this point in the history
  4. adjust tests to expect some additional data

    reorganizes commands
    Michael Higgins committed Mar 5, 2015
    Configuration menu
    Copy the full SHA
    7f89033 View commit details
    Browse the repository at this point in the history
  5. values to list

    for python 3 compatibility
    Michael Higgins committed Mar 5, 2015
    Configuration menu
    Copy the full SHA
    5bfa11d View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2015

  1. unicodecodeerror protection and pre and post opts

    -option to pass ffmpeg options before the inputfile and before the
    output file when needed. Being used for things like `-fix_sub_duration`
    and `-threads auto`. Defaults to none.
    -unicodedecodeerror exception catching which can occur with certain
    characters in file names breaking the script
    Michael Higgins committed Mar 20, 2015
    Configuration menu
    Copy the full SHA
    b182df7 View commit details
    Browse the repository at this point in the history
  2. audio filter, bitrate safety, ac3 max channels

    -support for passing audio filters using the `filter` option
    -bitrates violating the min or max are approximated to their closest
    min/max value to avoid ffmpeg crashing due to absence of any bitrate
    setting
    -do not allow ac3 channels > 6. AC3 does not support any channel
    settings greater than 5.1 and will cause ffmpeg to abort
    Michael Higgins committed Mar 20, 2015
    Configuration menu
    Copy the full SHA
    de63d2f View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2015

  1. test update

    includes the minimum bitrate
    Michael Higgins committed Mar 22, 2015
    Configuration menu
    Copy the full SHA
    e8a837d View commit details
    Browse the repository at this point in the history
  2. read video level

    ffprobe read video level
    Michael Higgins committed Mar 22, 2015
    Configuration menu
    Copy the full SHA
    79e7314 View commit details
    Browse the repository at this point in the history