How to trim/cut clips with VLC

Yes, Using VLC player on mac to cut a part of the video is possible..

Goto

"Playback" in top menu while playing the video and at the point where u want to start cropping, click on

"Record", the tick mark beside Record in the sub menu indicates that the recording is happening, click again when u have to stop the cropping.

OPTION + COMMAND + R to start cropping
OPTION + COMMAND + R again to stop cropping

the cropped video saves to home directory by default in mp4 format


For some reason VLC has removed options to stream a partial clip from their transcoding and streaming wizards. But the options are still available at the cli.

Here's how I stream a portion of a file, while keeping the original audio and video streams intact (no transcoding done). Times are given in seconds:

vlc in.avi --start-time 65 --stop-time 95 :sout=#file{dst=/home/myser/Desktop/out.avi} :no-sout-rtp-sap :no-sout-standard-sap :sout-keep

With transcoding:

vlc in.avi --start-time 65 --stop-time 158 :sout='#transcode{vcodec=mp2v,vb=4096,acodec=mp2a,ab=192,scale=1,channels=2,deinterlace,audio-sync}:std{access=file, mux=ps,dst=/home/myser/Desktop/out.mpg}'

More info on transcoding here.


If you're up for other software, just try QuickTime, it has very nice and easy trim controls, you just drag the sliders at the video progress bar and then there's a trim option (I believe it's Cmd+T).