code-wizard
code-wizard
Hey below are my configurations drf-haystack==1.8.1 Django==2.0.2 djangorestframework==3.7.7 django-haystack==2.8.1
For anyone else facing the same problem. I override the `to_representation()` in my serializer class like this ``` def to_representation(self, instance): """ If we have a serializer mapping, use that....
I manage to get this working.
> @code-wizard opening a ticket and then closing it without sharing the solution.. 👎 how did you get it to work? That's too bad of me! What I did was...
> Hi, I am facing the same issue. The first slice is only playable. Rest of the slices seems to be corrupt. > > @code-wizard - can you let me...
Yeah we should be able to get playable segments that will be really helpful
Here is my python code to merge the video files ```python for f in tempdir.iterdir(): if os.stat(str(f)).st_size > 0: videofiles.append(str(f)) video_index = 0 print(videofiles) if len(videofiles)>1: cap = cv2.VideoCapture(videofiles[0]) fourcc...