Strona 1 z 1

konversja pliku dav na avi

: 04 paź 2015, 00:38
autor: topf
Witam
Przeszukałem net, ale nie znalazłem; czy jest coś w repozytoriach żeby móc przekonwertować plik video dav(z DVR - CCTV) na avi? Na windowsa jest kilka aplikacji tego typu, czy pod linuxem też się coś znajdzie?


thx

Re: konversja pliku dav na avi

: 04 paź 2015, 11:23
autor: Hwiparam

Kod: Zaznacz cały

ffmpeg -y -i movie.dav -vcodec libx264 -crf 24 movie.mp4
Jak do *.mp4 potrafi, to może i do *.avi też by umiał?

Re: konversja pliku dav na avi

: 04 paź 2015, 13:34
autor: topf

Kod: Zaznacz cały

ffmpeg: command not found

Re: konversja pliku dav na avi

: 04 paź 2015, 13:50
autor: igotit4free
Masz ten program w ogóle zainstalowany?

Re: konversja pliku dav na avi

: 04 paź 2015, 18:09
autor: Hwiparam
ffmpeg: command not found

Kod: Zaznacz cały

sudo apt-get install ffmpeg

Re: konversja pliku dav na avi

: 06 paź 2015, 21:24
autor: topf
Here is what I get

Kod: Zaznacz cały

jay@jay-G31M-ES2L:~$ sudo apt-get install ffmpeg
[sudo] password for jay: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package ffmpeg is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'ffmpeg' has no installation candidate

Re: konversja pliku dav na avi

: 07 paź 2015, 05:32
autor: Hwiparam

Kod: Zaznacz cały

sudo apt-get update
sudo apt-get upgrade
Aha, i jeszcze jedno...

Kod: Zaznacz cały

cat /etc/apt/sources.list
cat /etc/apt/sources.list.d/*
Pokaż nam wynik tych dwóch poleceń.

Re: konversja pliku dav na avi

: 08 paź 2015, 13:40
autor: topf
Dziękuję za odpowiedź. Ale czy komendy apt-get są konieczne - czy system i oprogramowanie nie instaluje się automatycznie? Niejednokrotnie Lubuntu pytał mnie czy dokonać aktualizacji? Jest jakaś różnica między apt-get update / apt-get upgrade a updatem w systemie graficznym?

Kod: Zaznacz cały

jay@jay-G31M-ES2L:~$ cat /etc/apt/sources.list
#deb cdrom:[Lubuntu 14.04.3 LTS _Trusty Tahr_ - Beta i386 (20150805)]/ trusty main multiverse restricted universe

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://pl.archive.ubuntu.com/ubuntu/ trusty main restricted
deb-src http://pl.archive.ubuntu.com/ubuntu/ trusty main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://pl.archive.ubuntu.com/ubuntu/ trusty-updates main restricted
deb-src http://pl.archive.ubuntu.com/ubuntu/ trusty-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://pl.archive.ubuntu.com/ubuntu/ trusty universe
deb-src http://pl.archive.ubuntu.com/ubuntu/ trusty universe
deb http://pl.archive.ubuntu.com/ubuntu/ trusty-updates universe
deb-src http://pl.archive.ubuntu.com/ubuntu/ trusty-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu 
## team, and may not be under a free licence. Please satisfy yourself as to 
## your rights to use the software. Also, please note that software in 
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://pl.archive.ubuntu.com/ubuntu/ trusty multiverse
deb-src http://pl.archive.ubuntu.com/ubuntu/ trusty multiverse
deb http://pl.archive.ubuntu.com/ubuntu/ trusty-updates multiverse
deb-src http://pl.archive.ubuntu.com/ubuntu/ trusty-updates multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://pl.archive.ubuntu.com/ubuntu/ trusty-backports main restricted universe multiverse
deb-src http://pl.archive.ubuntu.com/ubuntu/ trusty-backports main restricted universe multiverse

deb http://security.ubuntu.com/ubuntu trusty-security main restricted
deb-src http://security.ubuntu.com/ubuntu trusty-security main restricted
deb http://security.ubuntu.com/ubuntu trusty-security universe
deb-src http://security.ubuntu.com/ubuntu trusty-security universe
deb http://security.ubuntu.com/ubuntu trusty-security multiverse
deb-src http://security.ubuntu.com/ubuntu trusty-security multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu trusty partner
# deb-src http://archive.canonical.com/ubuntu trusty partner

## This software is not part of Ubuntu, but is offered by third-party
## developers who want to ship their latest software.
deb http://extras.ubuntu.com/ubuntu trusty main
deb-src http://extras.ubuntu.com/ubuntu trusty main
oraz drugi:

Kod: Zaznacz cały

jay@jay-G31M-ES2L:~$ cat /etc/apt/sources.list.d/*
cat: /etc/apt/sources.list.d/*: No such file or directory

Re: konversja pliku dav na avi

: 09 paź 2015, 10:45
autor: Hwiparam
Update w trybie graficznym i tak korzysta z tych samych repozytoriów i tego samego apt-get, którego Ty wywołałeś bezpośrednio z konsoli. Tu nie ma większego znaczenia, co byś nie użył, silnikiem napędzającym będzie APT/DPKG, te wszystkie graficzne aktualizatory (USC, Synaptic itp.) to po prostu nakładki na apt-get.
Reasumując: Oczywiście, mógłbyś to samo wyklikać w Centrum Oprogramowania Ubuntu - wedle Twojego uznania, choć ja tam osobiście preferuję konsolę ;)

P.S. Masz już tego ffmpeg?

Re: konversja pliku dav na avi

: 11 paź 2015, 11:29
autor: topf
Jak próbuję zainstalowac przez:

Kod: Zaznacz cały

sudo apt-get install ffmpeg
To mi piesze to samo to w poście z 6 paź 2015, o 20:24

Pozdrwaiam