Re: X-frame options exempt

2021-11-03 Thread Keenan Green
Thanks Benjamin. I found a couple sites that successfully launched without chrome error. I take it x-frame exempt, is not for embedding as expected. On Tue, Nov 2, 2021 at 9:44 AM bnmng wrote: > I think the problem here is Google doesn't want to be embedded and there > isn't much you can do ab

Re: Converting Audio Files with SoX

2021-11-03 Thread Kasper Laudrup
On 03/11/2021 14.41, Shada Bahassan wrote: I have audio recording files that are compressed using the .ul format. So I'd like to convert it to .wav format in order to read these records. Without having any exerience with SoX, it does sound like something it should be capable of. I discov

Re: Converting Audio Files with SoX

2021-11-03 Thread Shada Bahassan
Thank you for the prompt response. I have audio recording files that are compressed using the .ul format. So I'd like to convert it to .wav format in order to read these records. I discovered Sox, which assisted me in converting, but I'm not sure how to use it in the command line and django.

converting audio file in Django

2021-11-03 Thread Shada Bahassan
Is there any platform command line utility that can convert audio file from ul formats to wav format? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-use

Re: Converting Audio Files with SoX

2021-11-03 Thread Kasper Laudrup
On 03/11/2021 11.15, Shada Bahassan wrote: I'm trying to get a walk to convert a bunch of audio files from .ul file to .wav file but I can't seem to get my head around how to call SoX (http://sox.sourceforge.net/) in CMD and Django. Where does Django enter the picture? Do you want to call a

Re: Has anyone connected Django with AWS cognito in multi-tenant environment?

2021-11-03 Thread Alex Fernandes
Heey Mike, I was wondering if you found a solution to this? Cheers, Alex Op vrijdag 1 februari 2019 om 04:21:43 UTC+1 schreef mike hennessy: > I'm new to Django, but not new to web development. I'm picking up > Django/Python and I'm interested in setting up a SaaS multi-tenant > application w

Converting Audio Files with SoX

2021-11-03 Thread Shada Bahassan
I'm trying to get a walk to convert a bunch of audio files from .ul file to .wav file but I can't seem to get my head around how to call SoX (http://sox.sourceforge.net/) in CMD and Django. -- You received this message because you are subscribed to the Google Groups "Django users" group. To

DeleteView in Django4.0 does not call .delete() method

2021-11-03 Thread Eugene Prikazchikov
Hi there, I am giving a try to Django 4.0 on one of my projects and I see that DeleteView does not call .delete() method anymore. Instead, it only calls self.object.delete(). This breaks my code, since some of my views override .delete() method to do extra work on object deletion (for example t