OSError: [Errno 22] Invalid argument #2360
Replies: 2 comments
-
|
I believe it is an issue with how python is installed on my system but cannot figure out what. Started getting the error when I updated to the latest version. |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Definitely an issue on your system, it works as expected on the unit test and other projects. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, when I try to import the moviepy library by using
from moviepy import *,I get the error OSError: [Errno 22] Invalid argument
Below are the details -
`OSError Traceback (most recent call last)
Cell In[1], line 4
2 from PIL import Image, ImageDraw, ImageFont
3 import os
----> 4 from moviepy import *
File c:\Users\prasa\anaconda\Lib\site-packages\moviepy_init_.py:4
1 """Imports everything that you need from the MoviePy submodules so that every thing
2 can be directly imported with
from moviepy import *.3 """
----> 4 from moviepy.audio import fx as afx
5 from moviepy.audio.AudioClip import (
6 AudioArrayClip,
7 AudioClip,
8 CompositeAudioClip,
9 concatenate_audioclips,
10 )
11 from moviepy.audio.io.AudioFileClip import AudioFileClip
File c:\Users\prasa\anaconda\Lib\site-packages\moviepy\audio\fx_init_.py:5
1 """All the audio effects that can be applied to AudioClip and VideoClip."""
3 # import every video fx function
----> 5 from moviepy.audio.fx.AudioDelay import AudioDelay
6 from moviepy.audio.fx.AudioFadeIn import AudioFadeIn
...
---> 71 self.string = stream.read()
72 self.position = Position.start()
73 self.mark = Position.start()
OSError: [Errno 22] Invalid argument`
Beta Was this translation helpful? Give feedback.
All reactions