User Tools

Site Tools


computers:media:encoding:start

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
computers:media:encoding:start [2008/06/30 18:22] davidcomputers:media:encoding:start [2011/05/26 16:45] (current) david
Line 1: Line 1:
 ====== Audio ====== ====== Audio ======
 +
 +===== flac to mp3 =====
  
 Conversion of **flac** files to **mp3** files in linux can be done with this shell script I found here online:  [[http://lglinux.blogspot.com/2007/09/convert-flac-to-mp3.html]] Conversion of **flac** files to **mp3** files in linux can be done with this shell script I found here online:  [[http://lglinux.blogspot.com/2007/09/convert-flac-to-mp3.html]]
 +
 +Example Usage:
 +<code>
 +cd /to/where/you/have/flac/files
 +nice -n 19 flac2mp3.sh /tmp/mp3 standard
 +</code>
  
 **Requires:**  lame, flac, id3v2 **Requires:**  lame, flac, id3v2
Line 100: Line 108:
   * [[http://forum.doom9.org/showthread.php?t=136007| (.96 BETA - has 'PCH' profile)]]   * [[http://forum.doom9.org/showthread.php?t=136007| (.96 BETA - has 'PCH' profile)]]
    
 +===== Mythtv to AVI =====
 +
 +Well, I've not had too much success with Mythtv's built in transcoding, probably due to a bad setup on my part.  I have found that if I use the "Super" encoder on the raw .MPG file recordings, it does a very nice job of crunching down (especially cartoons for the kids) the files from their original HD size to something manageable for archive.
 +
 +  - First thing to do is make symbolic links to the recordings so I can copy them all properly named in human readable format.  I am using these two things for that:
 +    - [[http://www.mythtv.org/wiki/Mythname.pl|Mythname.pl]] (which I put in **~/bin/mythname.pl**) to give us a command line program that can interogate the data base to find the name of the recording.
 +    - This little bash script that will make symbolic links right where you are <code bash>
 +#!/bin/bash
 +for filename in /var/lib/mythtv/recordings/*.mpg
 +do
 +  # windows did not like the colons in the name, so changing to underscores and periods
 +  fname=`mythname.pl --rep=. --subtitle $filename | tr : _ | tr ';.' .`.mpg
 +  echo "Linking $filename to $fname"
 +  ln -s $filename $fname
 +done
 +exit 0
 +</code>
 +  - Download everything to your PC with "Super" on it
 +  - Use this ({{:computers:media:encoding:super_transcodearthursettings.png?64|}}) configuration for transcoding 
 +  - Dump all the files into SUPER and wait a very long time!
 +
 ===== Mythtv to DVD ===== ===== Mythtv to DVD =====
  
computers/media/encoding/start.1214850126.txt.gz · Last modified: 2008/06/30 18:22 by david