Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nemosharma6/vlc-plugin-marker
marker provides you the ability to mark important sections of a video. These sections can be viewed later without the need to search for it in the entire video.
https://github.com/nemosharma6/vlc-plugin-marker
lua vlc-plugin
Last synced: 14 days ago
JSON representation
marker provides you the ability to mark important sections of a video. These sections can be viewed later without the need to search for it in the entire video.
- Host: GitHub
- URL: https://github.com/nemosharma6/vlc-plugin-marker
- Owner: nemosharma6
- Created: 2015-05-17T16:38:07.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-06-01T04:09:15.000Z (over 5 years ago)
- Last Synced: 2024-08-02T07:09:23.001Z (4 months ago)
- Topics: lua, vlc-plugin
- Language: Lua
- Homepage:
- Size: 5.86 KB
- Stars: 7
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-vlc - vlc-plugin-marker - The marker plugin provides you the ability to mark important sections of a video. These sections can be viewed later without the need to search for it in the entire video. (VLC native plugins)
README
## vlc-plugin-marker
This vlc plugin, named marker , provides you the ability to mark important sections of a video. These sections can be viewed later without the need to search for it in the entire video.
This plugin provides you the ability to mark important sections of a video. These sections can be viewed later without the need to search for it in the entire video.
All plugin options are :
start : click to mark the start of the important section
stop : click to mark the end of the important section
play : click to play the selected section
reset : click to set the marked contents to null
playall : click to play all the marked sections of the video
delete : click to delete a particular marked section
add comment : click to add comment for the marked section
show comment : click to show the comment added for the selected section
### working:
The plugin works by storing the marked sections in a file(along with the comments). when the video is played again, the pop up box would contain the start and stop time of the marked sections. We can select from among the listed sections and perform our desired operation.
### installation:
create a folder to contain the .txt files. Locate the function activate in the code. Copy the address of the folder to the variable address as shown in the code and save it.
run the following command :
#### mac Users : cp [location of the code]/marker.lua /Applications/VLC.app/Contents/MacOS/share/lua/extensions/
#### linux Users : cp [location of the code]/marker.lua ~/.local/share/vlc/lua/extensions/
above command simply copies the code to the extensions sub-directory of our vlc application.
after completion, open vlc and enjoy the plugin.