summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* add subtitle name to job configuration log outputJohn Stebbins2019-08-111-0/+4
|
* add subtitle track name read/writeJohn Stebbins2019-08-1110-418/+574
| | | | | | | | | | | | | | | | Works similar to audio track names. If source has a subtitle track name, hb_subtitle_t.name is set. To set output subtitle track name, set hb_subtitle_config_t.name. Source track names are available in title returned by hb_title_to_dict and hb_title_to_json in SubtitleList[].Name In job dict it is also SubtitleList[].Name hb_preset_job_init and hb_preset_job_init_json initialize output tracks with the source track name. Also adds subtitle name support to LinGui
* a few fixes for audio track name handlingJohn Stebbins2019-08-114-9/+6
| | | | fixes a memory leak makes name const
* ffmpeg: add 'name' track udta tag readingJohn Stebbins2019-08-111-0/+65
|
* libhb: make source audio track name available to frontendsJohn Stebbins2019-08-1114-47/+109
| | | | | | | | | | | | | It gets stored in new hb_audio_config_t.in.name field. It is available in the title dict read through hb_title_to_dict() or hb_title_to_json() in AudioList[].Name. When a job is initialized with hb_preset_job_init or hb_preset_job_init_json(), output audio tracks are initialized with the source track name. Also adds output track name initialization to LinGui.
* mac: Remove libsamplerate from Xcode project.Bradley Sepos2019-08-111-6/+0
|
* Remove libsamplerateJohn Stebbins2019-08-118-88/+50
| | | | Convert the last use of libsamplerate in sync.c to swresample
* MacGui: improve queue accessibility.Damiano Galassi2019-08-111-0/+9
|
* MaGui: fix xpc service localization.Damiano Galassi2019-08-116-6/+58
|
* MacGui: improve xpc crash recovery, set dvdnav option in the xpc service.Damiano Galassi2019-08-115-10/+26
|
* MacGui: properly cleanup the xpc service temporary files; fix encode toolbar ↵Damiano Galassi2019-08-113-8/+10
| | | | items state when going from scanning to encoding.
* MacGui: recover when the xpc service crashes.Damiano Galassi2019-08-116-22/+63
|
* MacGui: move the queue libhb instance to an xpc service.Damiano Galassi2019-08-1130-290/+1298
|
* [MacGUI] Update german localization (for new queue)Nomis1012019-08-0711-91/+176
| | | | Sync with latest Transifex
* MacGui: update Italian localization.Damiano Galassi2019-08-0610-87/+186
|
* MacGui: rename the Actions toolbar item to Action to be coherent with the ↵Damiano Galassi2019-08-061-3/+3
| | | | other Mac apps.
* Update deprecated gnu dialects name in project.pbxprojNomis1012019-08-061-4/+4
| | | | | The name gnu++0x is deprecated since 2011. We should use the up-to-date name gnu++11 instead. http://www.stroustrup.com/C++11FAQ.html
* audio_resample: set input and output samplerateJohn Stebbins2019-08-055-7/+48
| | | | Fixes https://github.com/HandBrake/HandBrake/issues/2124
* MacGui: correct the HBEncodeLogLocation key. Fix #2220.Damiano Galassi2019-08-051-1/+1
|
* contrib: Update to x265 3.1.2.Bradley Sepos2019-08-014-20/+20
| | | | Fixes hangs encoding some files.
* LinGui: make selection of gtk3/gtk4 configure-ableJohn Stebbins2019-07-314-17/+24
|
* LinGui: only show progress bar on active queue entryJohn Stebbins2019-07-312-1/+2
|
* WinGui: UI / Consistency improvements on Audio and Subtitle Defaultssr552019-07-3121-602/+318
|
* stream: fix building of subtitle list in PES filesJohn Stebbins2019-07-311-1/+1
| | | | | a very old cut & paste error. people must not use subtitles in PES much ;)
* MacGui: don't send the search pass progress to the Finder progress bar.Damiano Galassi2019-07-311-1/+2
|
* Fix some typos (#2202)Nomis1012019-07-3150-70/+70
| | | Fix some typos
* LinGui: make chapter list rows non-selectableJohn Stebbins2019-07-302-0/+2
| | | | I.e. do not highlight the entire row when clicked with the mouse
* LinGui: change chapter list to GtkListBoxJohn Stebbins2019-07-3013-2434/+517
| | | | | | | | | GtkListBox is more flexible than GtkTreeView. It is possible now to process key press events without creating a custom text cell renderer. Also due to the way event handling changes in GTK4, it was no longer even possible to create a custom cell renderer that can process key events. So this GtkListBox implementation is compatible with GTK4.
* LinGui: fix build error on ubuntu bionicJohn Stebbins2019-07-301-23/+20
|
* MacGui: add a preference to automatically clear completed queue items.Damiano Galassi2019-07-304-28/+51
|
* MacGui: set the progress labels to a monospaced digit font.Damiano Galassi2019-07-303-5/+19
|
* MacGui: add a nicer icon to the details toolbar button.Damiano Galassi2019-07-304-4/+29
|
* LinGui: gtk4 port, use rotation transform in settings stackJohn Stebbins2019-07-291-1/+1
| | | | Because we can :*p
* LinGui: gtk4 port, fix reading/writing GtkSpinButton textJohn Stebbins2019-07-296-49/+25
| | | | | In GTK4, GtkSpinButton is no longer a subclass of GtkEntry. Must use GtkEditable APIs in GTK4
* LinGui: gtk4 port, minimize appearence of tool bar separatorsJohn Stebbins2019-07-291-14/+6
| | | | | | | These are not supposed to be visible, but gtk4 is not respecting the "draw" property of GtkSeparatorToolItem. When this is fixed, I can restore proper spacing between "Open Source" and "Add To Queue" toolbar buttons.
* LinGui: gtk4 port, fix summary tab preview image scalingJohn Stebbins2019-07-294-42/+57
| | | | | | | | | | | | GTK4 added a new widgit GtkPicture that is almost identical to GtkImage. The main difference appears to be that GtkImage now scales down the size of the given pixbuf using some undocumented algorithm. It's filling some of the space available, but not all of it. But it isn't a hard size limit because making the window bigger continues to make the image bigger. GtkPicture shows the pixbuf unscaled as expected. So use GtkPicture for the preview image :*(
* LinGui: gtk4 port, fix search in language combo boxJohn Stebbins2019-07-292-9/+57
| | | | language search requires key-press handling which changed in gtk4
* LinGui: disable gtk4 key-press handling for chapter listJohn Stebbins2019-07-292-2/+9
| | | | | | | | | gtk4 makes it very difficult to handle key-press in a GtkCellRenderer I will need to rewrite the capter list as a GtkListBox instead of a GtkTreeView to re-enable this. key-press handling is used here to automatically move to the next chapter when finished editing the current
* LinGui: add queue row delete key handling for gtk4John Stebbins2019-07-291-0/+38
| | | | | Event handling in gtk4 is substantially different than gtk3. This restores handling of delete key on queue rows in gtk4 port
* LinGui: use GtkNotebookPage in gtk4 ui descriptionJohn Stebbins2019-07-291-383/+379
| | | | This is the modern gtk4 way...
* LinGui: remove ubuntu 18.10 (cosmic) snapshotsJohn Stebbins2019-07-291-15/+0
| | | | Cosmic is EOL so launchpad no longer accepts build requests
* MacGui: refactor the preferences keys and autonaming methods; fix the queue ↵Damiano Galassi2019-07-2931-449/+555
| | | | when running multiple HandBrake instances; fixed a number of bugs.
* WinGui: Force set FastDecode = false for x265. It's only an option under the ↵sr552019-07-281-1/+2
| | | | dropdown, not an additional set. Fixes #2211
* MacGui: add file size to the statistics. Fix selected text color when dark ↵Damiano Galassi2019-07-285-24/+59
| | | | mode is enabled.
* WinGui: Better formatting for encode timessr552019-07-273-4/+4
|
* MacGui: show statistics for completed jobs.Damiano Galassi2019-07-276-64/+196
|
* MacGui: improve queue labels when multiple jobs are selected; fix some bugs.Damiano Galassi2019-07-2718-220/+488
|
* LinGui: WIP gtk4 supportJohn Stebbins2019-07-2615-1104/+9123
| | | | | | | | | | | | | | | | Known issues and todo: notebooks, use GtkNotebookPage semantics in ui file fix keypress delete in queue_list fix dest_file grab-focus? (highlight of filename for editing) focus-in/out with GtkEventControllerKey preview_state_cb how to handle icon-ified preview? preview_configure_cb, saving preview window size? accelerator alt-d grab-focus destination key-press-event in chapter list, ghbcellrenderertext -> GtkEventControllerKey Why doesn't summary preview image scale correctly? "System" in about dialog? why is the tab there when "system" prop not set? GtkSeparatorToolitem seems to ignore "draw" prop?
* MacGui: store queue items statistics.Damiano Galassi2019-07-257-2/+114
|
* MacGui: improve queue init.Damiano Galassi2019-07-252-75/+102
|