LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 05-08-2019, 08:56 AM   #1
bong.mau
Member
 
Registered: Apr 2004
Posts: 391

Rep: Reputation: 30
video editor


Hi

i need suggestions about what video editor to use
my linux is debian 9.9 with lxde
what i need is video editor not requiring too much dep..
(i think lxde uses gtk...please inform me if i'm wrong)
i need a simple to use and able to manage mp4,avi,wmv,mp3
i installed openshot:istallation run without errors,but when i launch it,i get a blank screen
i think is due to old video card,glxinfo reports to me i'm using opengl 1.4
any help will be appreciated
 
Old 05-08-2019, 11:06 AM   #2
teckk
LQ Guru
 
Registered: Oct 2004
Distribution: Arch
Posts: 5,137
Blog Entries: 6

Rep: Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826
I've used ffmpeg for years
Quote:
what i need is video editor not requiring too much dep
Code:
pacman -Si ffmpeg
...
Name            : ffmpeg
Version         : 1:4.1.3-1
Description     : Complete solution to record, convert and stream audio and video
...
URL             : https://ffmpeg.org/
...
Provides        : libavcodec.so=58-64  libavdevice.so=58-64  libavfilter.so=7-64
                  libavformat.so=58-64  libavutil.so=56-64  libpostproc.so=55-64
                  libswresample.so=3-64  libswscale.so=5-64
Depends On      : alsa-lib  aom  bzip2  fontconfig  fribidi  gmp  gnutls  gsm  jack
                  lame  libass.so=9-64  libavc1394  libbluray.so=2-64  libdrm
                  libfreetype.so=6-64  libiec61883  libmodplug  libomxil-bellagio
                  libpulse  libraw1394  libsoxr  libssh  libtheora  libva.so=2-64
                  libva-drm.so=2-64  libva-x11.so=2-64  libvdpau
                  libvidstab.so=1.1-64  libvorbisenc.so=2-64  libvorbis.so=0-64
                  libvpx.so=6-64  libwebp  libx11  libx264.so=157-64
                  libx265.so=169-64  libxcb  libxext  libxml2  libxv
                  libxvidcore.so=4-64  opencore-amr  openjpeg2  opus  sdl2  speex
                  v4l-utils  xz  zlib
Optional Deps   : ladspa: LADSPA filters
...
Download Size   : 8.53 MiB
Installed Size  : 29.05 MiB
...
https://linux.die.net/man/1/ffmpeg
https://trac.ffmpeg.org/wiki/TitleIndex

That an encoder but will edit videos easy enough, get sections of video..
Code:
ffmpeg -ss 00:02:03 -t 00:03:15 -i infile.mp4 -c:a copy -c:v copy out1.mp4
ffmpeg -ss 00:07:13 -t 00:12:20 -i infile.mp4 -c:a copy -c:v copy out2.mp4
Then concat the segments together. Look at man ffmpeg
Lots of ffmpeg samples online and on this forum.

There are front ends like handbrake
Code:
pacman -Si handbrake
...
Name            : handbrake
Version         : 1.2.2-2
Description     : Multithreaded video transcoder
...
URL             : https://handbrake.fr/
...
Depends On      : bzip2  gcc-libs  zlib  gst-plugins-base  libnotify  dbus-glib
                  gtk3  xz  libass  lame  libxml2  opus  libvorbis  libtheora
                  libsamplerate  speex  x264  jansson  librsvg  libgudev
                  desktop-file-utils  hicolor-icon-theme
Optional Deps   : gst-plugins-good: for video previews
                  gst-libav: for video previews
                  libdvdcss: for decoding encrypted DVDs
...
Download Size   : 10.88 MiB
Installed Size  : 54.39 MiB
...
pacman -Ss video edit gives me these(Abbreviated)
Code:
avidemux-cli 2.7.3-1
    Graphical tool to edit video (filter/re-encode/split)
avidemux-qt 2.7.3-1
    Graphical tool to edit video (filter/re-encode/split) - Qt GUI
kdenlive 19.04.0-3 (kde-applications kdemultimedia)
    A non-linear video editor for Linux using the MLT video framework
mjpegtools 2.1.0-4 [installed]
    Set of tools that can do recording of videos and playback, simple cut-and-paste editing and the MPEG compression of audio and video
gnome-subtitles 1.4.2-2
    Video subtitle editor for GNOME
gst-editing-services 1.14.4-1
    GStreamer library for creating audio/video editors
libopenshot 0.2.3-1
    A high quality, open-source video editing, animation, and playback library for C++, Python, and Ruby.
openshot 2.4.4-1
    an open-source, non-linear video editor for Linux based on MLT framework
pitivi 0.999-2
    Editor for audio/video projects using the GStreamer framework
shotcut 19.02.28-1
    Cross-platform Qt based Video Editor
 
Old 05-09-2019, 01:01 AM   #3
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
winff should be available on debian stable, it's a gui frontend for ffmpeg.
it should be fairly lightweight (and simplistic; do not expect fancy features).
 
Old 05-09-2019, 05:46 AM   #4
fatmac
LQ Guru
 
Registered: Sep 2011
Location: Upper Hale, Surrey/Hants Border, UK
Distribution: Mainly Devuan, antiX, & Void, with Tiny Core, Fatdog, & BSD thrown in.
Posts: 5,493

Rep: Reputation: Disabled
I use OpenShot, does what I need for creating videos for uploading.
 
Old 05-09-2019, 05:51 AM   #5
hydrurga
LQ Guru
 
Registered: Nov 2008
Location: Pictland
Distribution: Linux Mint 21 MATE
Posts: 8,048
Blog Entries: 5

Rep: Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925
Quote:
Originally Posted by fatmac View Post
I use OpenShot, does what I need for creating videos for uploading.
The OP mentions that they have problems running OpenShot.

In saying that though, perhaps the OP could create a new thread about resolving the issues they have with that software.
 
Old 05-09-2019, 09:42 AM   #6
bong.mau
Member
 
Registered: Apr 2004
Posts: 391

Original Poster
Rep: Reputation: 30
thanks

Thanks for the answer...thanks for the support
Maurizio
 
Old 09-26-2021, 01:35 PM   #7
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,636

Rep: Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965
Quote:
Originally Posted by StephenShort View Post
If you've never used quality video editing before, you'll have many questions when you first run the program.
Oh? Such as what? Why don't you list and answer a few of them here, to save folks some headaches? And you do realize that this thread had been closed for two years, right??
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: Avidemux Video Editor An Easy To Use Video Editor For Linux LXer Syndicated Linux News 0 06-15-2017 07:18 PM
LXer: OpenShot 2.2 Open-Source Video Editor Released with 4K Video Editing, More LXer Syndicated Linux News 0 12-22-2016 07:31 AM
how to convert video file format using kino video editor sumeet inani Linux - Newbie 5 03-17-2009 11:26 PM
LXer: Open Movie Editor: Linux Video Editor with Plot Twists LXer Syndicated Linux News 0 10-27-2008 09:50 PM
LXer: This week at LWN: The Grumpy Editor's video journey part 2: Video editors LXer Syndicated Linux News 0 01-31-2008 11:41 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 07:54 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration