Vhs to dvd linux

Linux Mint Forums

Forum rules
Before you post please read how to get help. Topics in this forum are automatically closed 6 months after creation.

Convert VHS to DVD

Post by larfingiraffe » Wed Oct 19, 2016 5:57 am

I have an old VHS tape that I want to convert to a digital format. My VHS player has Scart output and the «audio» style (is that RCA?) of leads. I think I need some sort of device to plug this into to digitize the stream, which I hopefully can then capture with VLC. Can anyone recommend an inexpensive device that’s available in the UK and known to work with Mint? Are there alternative ways to go about this?

Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 1 time in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.

Re: Convert VHS to DVD

Post by deepakdeshp » Wed Oct 19, 2016 8:12 am

If your laptop has firewire port, you can follow this.

If I have helped you solve a problem, please add [ SOLVED] t o your first post title , it helps other users looking for help.
Regards,
Deepak

Mint 21.1 Cinnamon 64 bit with AMD A6 / 8GB
Mint 21.1 Cinnamon AMD Ryzen3500U/8gb

Re: Convert VHS to DVD

Post by larfingiraffe » Wed Oct 19, 2016 8:43 am

Thanks v much for your response. There is some useful info there but the hardware side of it is not so useful. He uses his camera to translate from RCA to firewire but I don’t have a camera that would do that for me. I suspect that I’ll have to splash out for a USB gadget that translates the RCA+audio to USB. I’ve tried looking at the linux Wiki page that tells you what works with linux, but I’m having a bit of trouble matching these up with what’s available at a reasonable price — often the brand names change, or you cannot find out what the chip is in the interesting one you spotted on Amazon. I would consider a pci-based card too (I’m on a desktop not laptop), but USB is more versatile.

Re: Convert VHS to DVD

Post by ginjabunny » Sun Oct 23, 2016 12:12 pm

I hear your problem, virtually all video capture boxes or cards come with proprietary Windows software, which is why I have to use a WinXP PC to record TV through a usb digital box I a bought at Maplin.
I have explored using Linux with various capture devices but could never get any to work unless there was software specifically written for it (for example Black Magic).
If you can get hold of one, maybe an old analogue TV card/usb dongle would do the trick as software like TVtime works with most, but still a minefield.

Читайте также:  Виды и назначение linux

The only thing I can suggest is look for usb box or pci card for video capture and then search to see if it works on Linux before buying it, Linux will recognise most hardware but finding software that works with it is the problem. Alternatively maybe run Windows in Virtualbox but not sure if that would work either?

jimallyn Level 19
Posts: 9075 Joined: Thu Jun 05, 2014 7:34 pm Location: Wenatchee, WA USA

Re: Convert VHS to DVD

Post by jimallyn » Mon Oct 24, 2016 1:48 am

I looked into video convertors a while back. I wound up not needing one after all, but there were several under $35 convertors that work on Linux on ebay. Don’t remember which ones though, sorry.

“If the government were coming for your TVs and cars, then you’d be upset. But, as it is, they’re only coming for your sons.” — Daniel Berrigan

Источник

Skylark95 / concatdvd.sh

This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters

#! /bin/bash
if [ -z $1 ] || [ -z $2 ] ; then
echo » Usage: concatdvd CONCAT_STRING OUTPUT «
echo » Example: concatdvd \» concat:video1.mpg|concat:video2.mpg \» out.mpg «
exit 1
fi
ffmpeg -i $1 -c copy -f dvd $2

This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters

#! /bin/bash
while getopts » :s:t:i: » opt ; do
case $opt in
s)
STARTTIME= $OPTARG
;;
t)
DURATION= $OPTARG
;;
i)
FILE= $OPTARG
;;
\? )
echo » Invalid option: — $OPTARG » >&2
exit 1
;;
🙂
echo » Option — $OPTARG requires an argument. » >&2
exit 1
;;
esac
done
if [ -z $STARTTIME ] || [ -z $DURATION ] || [ -z $FILE ] ; then
echo » Usage: cutdvd -s STARTTIME -t DURATION -i FILE » >&2
exit 1
fi
ffmpeg -i $FILE -vcodec copy -acodec copy -ss $STARTTIME -t $DURATION -f dvd cut_ $FILE
Читайте также:  Linux tails на русском

This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters

#! /bin/bash
while getopts » :s:t:i: » opt ; do
case $opt in
s)
STARTTIME= $OPTARG
;;
t)
DURATION= $OPTARG
;;
i)
FILE= $OPTARG
;;
\? )
echo » Invalid option: — $OPTARG » >&2
exit 1
;;
🙂
echo » Option — $OPTARG requires an argument. » >&2
exit 1
;;
esac
done
if [ -z $STARTTIME ] || [ -z $DURATION ] || [ -z $FILE ] ; then
echo » Usage: encodedvd -s STARTTIME -t DURATION -i FILE » >&2
exit 1
fi
# -vf pad=720:540:0:30:0x000000,fifo,scale=720:480
ffmpeg -ss $STARTTIME -t $DURATION -i $FILE -ss $STARTTIME -t $DURATION -i $FILE -map 1:1 -map 0:0 -target ntsc-dvd -sn -g 12 -bf 2 -strict 1 -ac 2 -aspect 1.3333333333333333 -s 720×480 -trellis 1 -mbd 2 -b:a 192k -b:v 4000k dvd_ $FILE

This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters

#! /bin/bash
while getopts » :d:s » opt ; do
case $opt in
d)
DURATION= $OPTARG
;;
s)
SHUTDOWN=true
;;
\? )
echo » Invalid option: — $OPTARG » >&2
exit 1
;;
🙂
echo » Option — $OPTARG requires an argument. » >&2
exit 1
;;
esac
done
if [ -z $DURATION ] ; then
echo » Usage: vhsrecord -d DURATION [-s] » >&2
exit 1
fi
NOW= $( date +%m-%d-%y_%H%M )
vlc v4l2:///dev/video0 :v4l2-standard=NTSC :input-slave=alsa://hw:2,0 :live-caching=300 —stop-time= $DURATION —sout » #transcode,scale=1,acodec=a52,ab=192,fps=29.97,channels=2>:duplicate> » vlc://quit
if [ » $SHUTDOWN » = true ] ; then
poweroff
fi

This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters

#! /bin/bash
vlc v4l2:///dev/video0 :v4l2-standard=NTSC :input-slave=alsa://hw:2,0 :live-caching=300

Источник

Оцифруйте кассеты VHS из вашего дистрибутива GNU / Linux

Видеомагнитофоны (видеомагнитофоны) VHS Они не будут существовать вечно, и кассеты VHS не будут вечными, поэтому постепенно будет все труднее сохранять все наши видео в этом старом формате. Если речь идет о фильмах, скорее всего, они уже были ремастированы и оцифрованы, поэтому мы найдем их в таких форматах, как DVD, BD и т. Д. Но мы не найдем все видео оцифрованными, это касается наших домашних записей.

Читайте также:  Calibrate touch screen linux

Поэтому, если у вас есть видеомагнитофон VHS на вашем телевизоре, лучше всего как можно скорее начать конвертировать в цифровой формат чтобы иметь возможность хранить его более надежным и безопасным способом, предотвращая потерю этих видео, когда мы больше не можем найти видеомагнитофоны, даже подержанные. И процесс проще, чем вы думаете, и это можно сделать из Linux .

1-Требуемое оборудование:

Во-первых, иметь Видеомагнитофона или видеомагнитофон для воспроизведения кассеты VHS. В компьютере, который мы используем для преобразования, также будет необходим фундаментальный элемент, карта видеозахвата. Если вы используете ноутбук, вы можете найти их внешними, а если вы используете настольный компьютер, вы, вероятно, предпочтете какой-то PCI.

Выбирайте карту, совместимую с Linux, то есть есть бесплатные драйвера ядра. Раньше это было головной болью, но в настоящее время распространено, что самые известные уже поддерживают Linux (Hauppauge, Avermedia, . ). Вполне возможно, что если вы используете 100% бесплатный дистрибутив, у вас возникнут проблемы с установкой определенных пакетов кодеков и конкретной прошивки, такой как ivtv-прошивка.

После установки карты видеозахвата у нее должно быть соединение RCA, чтобы иметь возможность подключать ее через Кабель RCA к видеомагнитофону, все готово к конвертации или оцифровке.

2-Проверьте видеовыход

Как только все будет подключено и готово, мы должны открыть видеоплеер, такой как VLC или mplayer, чтобы иметь возможность проверьте видеовыход то, что мы подключили к нашему входу видеомагнитофона, записывается правильно. В противном случае необходимо будет правильно установить драйверы или пакет, о котором я упоминал выше. В принципе, проблем быть не должно, все должно быть в порядке, и вы можете видеть видео, которое воспроизводится на видеомагнитофоне.

У вас также должны быть установлены другие базовые пакеты, такие как ffmpeg и v4l-utils для работы с видеосигналом . И настройте его для приема входа RCA (если у вас коаксиальный или S-видео кабель, вам придется изменить этот шаг):

3-Начало оцифровки

к начать запись То, что входит в нас через устройство захвата видео, мы можем использовать разные программы, хотя для этого неплохо напрямую использовать mplayer, чтобы он захватил с нашего устройства захвата, в нашем случае / dev / video0:

mplayer -cache 8192 /dev/video0 -dumpstream -dumpfile mi_video.mp4

И с этим мы получим цифровое видео называется my_video.mp. Кстати, убедитесь, что видео перемотано правильно, иначе вы захватите видео только частично .

Содержание статьи соответствует нашим принципам редакционная этика. Чтобы сообщить об ошибке, нажмите здесь.

Полный путь к статье: Из Linux » GNU / Linux » Оцифруйте кассеты VHS из вашего дистрибутива GNU / Linux

Источник

Оцените статью
Adblock
detector