-
Notifications
You must be signed in to change notification settings - Fork 2
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
Optionally store audio without container; Unlock audio formats wav and wavpack #15
Conversation
Codecov Report
@@ Coverage Diff @@
## main #15 +/- ##
==========================================
- Coverage 35.57% 34.63% -0.94%
==========================================
Files 7 7
Lines 357 384 +27
==========================================
+ Hits 127 133 +6
- Misses 230 251 +21
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi Michael,
thanks a stack for this excellent contribution. I just added some minor comments about "naming things". Thank you in advance for addressing them.
With kind regards,
Andreas.
Madness your speed borders on magic. |
Quick test with all format options: Status : I go back to the drawing board |
Excellent! Don't worry about WavPack+container, it just doesn't work so we will have to investigate and/or ask upstream, see #7.
…On 23 July 2021 05:22:13 CEST, MKO1640 ***@***.***> wrote:
Quick test with all format options:
wav = checked
flac = checked
wavpack = checked
flac+ogg = checked
waw+ogg = checked
flac+mka = checked
waw+mka = checked
wavpack+ogg = broken - gst_parse_error: Delayed linking failed. (7)
(./grammar.y(506): gst_parse_no_more_pads ():
/GstPipeline:pipeline0/GstWavpackEnc:wavpackenc0
wavpac+mka = broken - failed delayed linking some pad of GstWavpackEnc
named wavpackenc0 to pad audio_%u of GstSplitMuxSink named muxer
Status : I go back to the drawing board
--
You are receiving this because you commented.
Reply to this email directly or view it on GitHub:
#15 (comment)
--
Sent from my mind. This might have been typed on a mobile device, so please excuse my brevity.
|
Okay, thats a pity. Despite an intensive search, I have also not found a solution. best regards |
Hi again,
I believe the patch is fine. I will squash all commits into a single one and issue a new release after integrating it.
Cheers,
Andreas.
…On 23 July 2021 17:37:52 CEST, MKO1640 ***@***.***> wrote:
Okay, thats a pity. Despite an intensive search, I have also not found
a solution.
I learned a lot about gstreamer while searching for myself, which is
also good.
Do I still have to do something on my side?
I've added a few forgotten commits.
best regards
Michael
--
You are receiving this because you commented.
Reply to this email directly or view it on GitHub:
#15 (comment)
--
Sent from my mind. This might have been typed on a mobile device, so please excuse my brevity.
|
- Add capability for storing audio without putting it into container - Add audio formats "wav" and "WavPack"
This patch will make it possible to store audio without putting it into any container. At the same time, it will unlock choosing the audio format from either "flac" (default), "wav" or "wavpack".
The patch supersedes #14.