Skip to content

Commit d3d5a90

Browse files
committed
Update README.md with advantages and disadvantages of using git command and direct command for vidiopy installation
1 parent 57257eb commit d3d5a90

File tree

1 file changed

+25
-8
lines changed

1 file changed

+25
-8
lines changed

README.md

Lines changed: 25 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,30 @@ pip install vidiopy
2121
```
2222

2323
Note:
24-
- Using the git comand version has many Advantages.
25-
- Bug Fixes.
26-
- Secure.
27-
- Latest.
28-
- Using the dirct comand `pip install vidiopy` has many disadvantages.
29-
- Not Secure [repoted Issue #7](https://github.com/SohamTilekar/vidiopy/issues/7)
30-
- More Bugs.
24+
25+
- Using the git comand version has many Advantages.
26+
- Bug Fixes.
27+
- Secure.
28+
- Latest.
29+
- Using the dirct comand `pip install vidiopy` has many disadvantages.
30+
- Not Secure [repoted Issue #7](https://github.com/SohamTilekar/vidiopy/issues/7)
31+
- More Bugs.
32+
33+
## Usage
34+
35+
Here's a simple example of how to use VidioPy to create a video file:
36+
37+
```python
38+
import vidiopy
39+
40+
video = vidiopy.VideoFileClip("path/to/video.mp4")
41+
text = vidiopy.TextClip("Hello, world!", fontsize=70, color="white")
42+
text.set_position(lambda t: (100, 50 + 10*t))
43+
video = vidiopy.CompositeVideoClip([video, text])
44+
video.write_videofile("output.mp4")
45+
```
46+
47+
See the Detailed Documentation [here](https://sohamtilekar.github.io/vidiopy/)
3148

3249
## Contribution
3350

@@ -48,7 +65,7 @@ To contribute:
4865

4966
## Disclaimer
5067

51-
**VidioPy is currently in the early stages of development and is not yet a complete product. Some features may be limited or incomplete. Currently, VidioPy does not support audio while writing video files, and there are no built-in video effects.** Use it at your own discretion, and feel free to report any issues or provide feedback.
68+
**VidioPy is currently in the early stages of development and is not yet a complete product. Some features may be limited or incomplete. Currently, VidioPy does not support audio while writing video files, and there are no built-in video effects.** Use it at your own discretion, and feel free to report any issues, feature request or provide feedback.
5269

5370
## License
5471

0 commit comments

Comments
 (0)