Recording sound directly from a DVD into your computer

Can you record sound directly into your computer from a DVD playing on your computer?

Audio Hijack also creates large files, size-wise. This can be a problem if you are working with putting music on audio cds. Google "ripdifferent" for a site that discusses various methods of legally backing up legally purchased media. The gray area here actually has to do with breaking encryption- under US copyright law, users have always been allowed to make a single back-up (Fair Use) of any recorded media they have purchased. It is possible that media companies are, themselves, in violation of copyright law by making it difficult to make said backups by encrypting their media. Also, copying (ripping, recording, etc.) any DVD in any way would seem to be covered by the warning at the start of all DVDs (including soundtracks), which would include Audio Hijack, for instance. This all came about when the digital revolution made it possible to create exact copies. Back in the day, copying an LP to cassette, for instance, was not considered a problem, because you would lose a generation. BTW, ripping music DVDs can be problematic, as they are mastered differently than are "movies," and some Mac ripping programs have difficulty with them. Proceed cautiously and consider legal ramifications, but also consider retaining YOUR legal rights as well.

Similar Messages

  • Recording sound directly from the web?

    I have Adobe Soundbooth CS3, and I'm trying to find a way to record a sound directly (on the wire) from a web page. I've been unable to do this, being relegated to the built-in microphone.
    One example, is recording the interesting "Audio Preview" on Youtube.
    Is there some trick I can do to accomplish this?
    Thanks.

    Check this out:
    http://www.johntp.com/2007/04/12/how-to-extract-audio-from-youtube-videos/

  • Recording audio ONLY from a DVD into iTunes

    Hi, I'm new to macs having just got an iMac G5. So far I love it and it's loads better than any windows based system I've had. I'm wondering if it is possible to record the audio only from some music DVD's I have into iTunes...can anyone help or is this simply not possible?

    Audio Hijack also creates large files, size-wise. This can be a problem if you are working with putting music on audio cds. Google "ripdifferent" for a site that discusses various methods of legally backing up legally purchased media. The gray area here actually has to do with breaking encryption- under US copyright law, users have always been allowed to make a single back-up (Fair Use) of any recorded media they have purchased. It is possible that media companies are, themselves, in violation of copyright law by making it difficult to make said backups by encrypting their media. Also, copying (ripping, recording, etc.) any DVD in any way would seem to be covered by the warning at the start of all DVDs (including soundtracks), which would include Audio Hijack, for instance. This all came about when the digital revolution made it possible to create exact copies. Back in the day, copying an LP to cassette, for instance, was not considered a problem, because you would lose a generation. BTW, ripping music DVDs can be problematic, as they are mastered differently than are "movies," and some Mac ripping programs have difficulty with them. Proceed cautiously and consider legal ramifications, but also consider retaining YOUR legal rights as well.

  • I'm trying to redeem my digital copies by inserting the disk and entering in my code, but I keep getting an error message that says "An error occurred while copying "*movie* from the DVD to your computer- the required disk cannot be found"

    I don't know what is going on, I have tried this with several movies as we got a few for Christmas and I keep getting the same error message- I will admit that my MAC is a couple of years old, so I wonder if it is a hardware problem with my disk drive- the error message has a smaller type message saying to check the DVD for dirt or damage and try it again, but the disks are all brand new with nothing on them at all- I have already experienced trying to get a digital copy when it has expired (stupid movie companies) and they wouldnt' let me redeem it, I worry that I will have the same problem if I wait too long to get these movies...

    yes have latest edition of itunes, i have two ipads connected to the itunes one is working one is not, they belong to my kids, i set them up at xmas for them and all working fine til yesterday, kids say they have done any thing, can i take it to an aplle shop< or any more ideas, it just repeating trying to sync  and coming up with the disk space cannot be found, don't want to risk connecting my other ipad up to the computer, i havent changed anything on my computer for months

  • How can I enter the data from the recordset into your insert query

    Hi
    i would like to know how I can enter the data from the recordset into your insert query without using a  hidden field.
    thanks
    ------------------------------------------------------------------------------------Below is the code------------------------------------------------------------------------------------- -----
    <?php require_once('../../Connections/ezzyConn.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
       $theValue = function_exists("mysql_real_escape_string") ?  mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "frmpostComment")) {
       $insertSQL = sprintf("INSERT INTO comments (com_topic, com_user, title,  com_content, com_date, online_id) VALUES (%s, %s, %s, %s, %s, %s)",
                           GetSQLValueString($_POST['com_topic'], "int"),
                           GetSQLValueString($_POST['commentby'], "int"),
                           GetSQLValueString($_POST['title'], "text"),
                           GetSQLValueString($_POST['com_content'], "text"),
                           GetSQLValueString($_POST['com_date'], "text"),
                           GetSQLValueString($_POST['online_id'], "int"));
      mysql_select_db($database_ezzyConn, $ezzyConn);
      $Result1 = mysql_query($insertSQL, $ezzyConn) or die(mysql_error());
      $insertGoTo = "index.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $insertGoTo));
    $colname_rsCommentby = "-1";
    if (isset($_SESSION['MM_Username'])) {
      $colname_rsCommentby = $_SESSION['MM_Username'];
    mysql_select_db($database_ezzyConn, $ezzyConn);
    $query_rsTopics = "SELECT topic_id, topic FROM topics ORDER BY topic_date DESC";
    $rsTopics = mysql_query($query_rsTopics, $ezzyConn) or die(mysql_error());
    $row_rsTopics = mysql_fetch_assoc($rsTopics);
    $totalRows_rsTopics = mysql_num_rows($rsTopics);
    mysql_select_db($database_ezzyConn, $ezzyConn);
    $query_rsOnline = "SELECT online_id, `online` FROM `online` ORDER BY online_id DESC";
    $rsOnline = mysql_query($query_rsOnline, $ezzyConn) or die(mysql_error());
    $row_rsOnline = mysql_fetch_assoc($rsOnline);
    $totalRows_rsOnline = mysql_num_rows($rsOnline);
    $colname_rsCommentby = "-1";
    if (isset($_SESSION['MM_Username'])) {
      $colname_rsCommentby = $_SESSION['MM_Username'];
    mysql_select_db($database_ezzyConn, $ezzyConn);
    $query_rsCommentby  = sprintf("SELECT user_id, username FROM users WHERE username = %s",  GetSQLValueString($colname_rsCommentby, "text"));
    $rsCommentby = mysql_query($query_rsCommentby, $ezzyConn) or die(mysql_error());
    $row_rsCommentby = mysql_fetch_assoc($rsCommentby);
    $totalRows_rsCommentby = mysql_num_rows($rsCommentby);
    ?>
    <?php include("../includes/access.php"); ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>ezzybay - easy click, ezzy shopping</title>
    <link href="../css/global.css" rel="stylesheet" type="text/css" />
    <link href="../css/navigation.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="wrapper">
      <?php include("../includes/top.php"); ?>
      <div id="content">
      <div id="pageTitle">
        <h2>CMS Section:</h2>
        <p>Comment Topics Page</p>
      </div>
      <?php include("../includes/leftnav.php"); ?>
        <div id="mainContent">
          <form action="<?php echo $editFormAction; ?>" method="post" name="frmpostComment" id="frmpostComment">
            <table align="center">
            <caption>Post Comment</caption>
              <tr valign="baseline">
                <td nowrap="nowrap" align="right">Topic:</td>
                <td><select name="com_topic" class="listbox" id="com_topic">
                  <?php
    do { 
    ?>
                   <option value="<?php echo  $row_rsTopics['topic_id']?>"><?php echo  $row_rsTopics['topic']?></option>
                  <?php
    } while ($row_rsTopics = mysql_fetch_assoc($rsTopics));
      $rows = mysql_num_rows($rsTopics);
      if($rows > 0) {
          mysql_data_seek($rsTopics, 0);
          $row_rsTopics = mysql_fetch_assoc($rsTopics);
    ?>
                </select></td>
              </tr>
              <tr valign="baseline">
                <td nowrap="nowrap" align="right">Title:</td>
                <td><input name="title" type="text" class="textfield" value="" size="32" /></td>
              </tr>
              <tr valign="baseline">
                <td nowrap="nowrap" align="right" valign="top">Comment:</td>
                <td><textarea name="com_content" cols="50" rows="5" class="textarea"></textarea></td>
              </tr>
              <tr valign="baseline">
                <td nowrap="nowrap" align="right">Status:</td>
                <td><select name="online_id" class="smalllistbox">
                  <?php
    do { 
    ?>
                   <option value="<?php echo $row_rsOnline['online_id']?>"  <?php if (!(strcmp($row_rsOnline['online_id'], 2))) {echo  "SELECTED";} ?>><?php echo  $row_rsOnline['online']?></option>
                  <?php
    } while ($row_rsOnline = mysql_fetch_assoc($rsOnline));
    ?>
                </select></td>
              </tr>
              <tr> </tr>
              <tr valign="baseline">
                <td nowrap="nowrap" align="right"> </td>
                <td><input type="submit" class="button" value="Insert record" /></td>
              </tr>
            </table>
            <input name="commentby" type="hidden" id="commentby" value="<?php echo $row_rsCommentby['user_id']; ?>" />
            <input type="hidden" name="com_date" value="<?php echo date("d/m/y : H:i:s", time()) ?>" />
            <input type="hidden" name="MM_insert" value="frmpostComment" />
          </form>
        </div>
      </div>
    <?php include("../includes/footer.php"); ?>
    </div>
    </body>
    </html>
    <?php
    mysql_free_result($rsTopics);
    mysql_free_result($rsOnline);
    mysql_free_result($rsCommentby);
    ?>

    I'll keep it simple and only use the date as an example. Hopefully you get the concept from the example. Basically you create a recordset and insert the recordset value instead of the POST value into your insert query. In the example below I declared a variable for $the_date and entered the variable into the INSERT query instead of the hidden POST field.
    <?php require_once('../../Connections/ezzyConn.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
       $theValue = function_exists("mysql_real_escape_string") ?  mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $the_date = date("d/m/y : H:i:s", time());
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "frmpostComment")) {
       $insertSQL = sprintf("INSERT INTO comments (com_topic, com_user, title,  com_content, com_date, online_id) VALUES (%s, %s, %s, %s, %s, %s)",
                           GetSQLValueString($_POST['com_topic'], "int"),
                           GetSQLValueString($_POST['commentby'], "int"),
                           GetSQLValueString($_POST['title'], "text"),
                           GetSQLValueString($_POST['com_content'], "text"),
                           GetSQLValueString($the_date, "text"),
                           GetSQLValueString($_POST['online_id'], "int"));
      mysql_select_db($database_ezzyConn, $ezzyConn);
      $Result1 = mysql_query($insertSQL, $ezzyConn) or die(mysql_error());
      $insertGoTo = "index.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $insertGoTo));
    ?>

  • Can the creators of themes get into your computer or take info from your computer if you use said theme?

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [[/questions/927506]]</blockquote>
    I'm just curious if the creators of a theme can get access into your computer or get info from it if you use the theme?

    From [https://addons.mozilla.org/faq Add-ons for Firefox > Frequently Asked Questions]:
    '''Are add-ons safe to install?'''<br>
    Unless clearly marked otherwise, add-ons available from this gallery have been checked and approved by Mozilla's team of editors and are safe to install. We recommend that you only install approved add-ons. If you wish to install unapproved add-ons or add-ons from third-party websites, use caution as these add-ons may harm your computer or violate your privacy. [https://addons.mozilla.org/developers/docs/policies/reviews Learn more about our approval process]
    '''What does it mean if an add-on is "experimental" or "preliminarily reviewed"?'''<br>
    Experimental add-ons have been checked by our editors to make sure they don't have security problems, but they may still have bugs or not work properly. Use caution when installing experimental add-ons and uninstall the add-on immediately if you notice problems. [https://addons.mozilla.org/developers/docs/policies/reviews Learn more about our review process]
    '''What does it mean if an add-on is "not reviewed"?'''<br>
    While all add-ons publicly available in our gallery are reviewed by an editor, you may receive a direct link to an add-on that hasn't yet been reviewed. Use caution when installing these add-ons, as they could harm your computer or violate your privacy. We recommend that you only install reviewed add-ons. [https://addons.mozilla.org/developers/docs/policies/reviews Learn more about our review process]
    ''Tylerdowner wrote:''
    Just a theme, no, I don't believe so.
    It's incorrect to suggest that a theme doesn't have the same technical capabilities. Go look at the plethora of themes that are bundled with an extension, e.g. Silvermel, Charamel, Oxygen KDE, etc.

  • Importing from a DVD into Premiere CS6 and MPG files.

    HI I'm new to this forum and to CS6. I'm well versed in CS3 Premiere and other earlier versions.
    I have a problem importing the VOB files from a DVD into Premiere CS6. I copied the VIDEO_TS folder from the DVD onto my hard drive and successfully imported the 3 VOB files that made up the 1 hour video. Upon placing them into a sequence (720 x 576 25fps DV PAL to match the DVD) I found that when I played over a join between the VOB files, the picture and sound briefly broke up. Is this normal? There is no encryption on the DVD.
    I then used MPEG Streamclip to convert the DVD to a MPG2 with MP2 audio file (thereby avoiding a decode and the subsequent recode when I encode the edited version, I.E. DVD is MPEG2 so I want to extract the video with the minimum of processing.) I tried to import this into Premiere but after it thought about it for a while, the resulting icon in the Project Window indicated that the file was not usable. Indeed it was not. I deleted it...... and then imported it again. It worked! This is not just a one-off occurrence. Any thoughts?
    Premiere is fully updated along with all the other programs in CS6. Using Windows 7 64 bit.
    bye Andrew

    I have same issue too.
    Who can help me
    Used "Media Encoder"  encore three . VOB(form DVD) files to WMV.
    And used Premiere to import the file between the VOB files,
    the sound briefly broke up.
    If change to import .VOB form dvd,the sound briefly broke up too.
    thanks!

  • I am lost. I put photos from a DVD into organizer?

    I put images from a DVD into Elements 9. My images show up in my catalog and it allows me to edit and to print. It never asks me to put in the disk. BUT once I got a message that elements could not do something because the image is on an external disk.
    How do I check where they are?
    If they are only on the external disk, why did it let me print and do some editing?
    Is it using just the thumb nail? Wouldn't I lose a lot of quality. I have only done 4x6 prints so far.
    I can't find the answers in the manual.
    If they are only on the DVDs, what I guess I am asking is, how do I manage them if they stay on the dvds. I have one to three DVDs for each year.
    Thanks for any help,
    confused and bewildered

    Thanks, I lost the side panel. I begin to understand. I see my photo files and they are all within the c drive. They must all be imported otherwise it would show F (DVD) drive wouldn't it?
    Elements created a folder and called it "photos from removeable media" and all my photos from DVDs are within that folder. To me 'from removeable media" seemed to indicate that they are thumbnails only but I guess not. There is a message that says "No files from this folder have been  imported into the organizer. To add any files right click on the folder  and select 'import to organizer'  Do I read this that Elements does not  see any files in the master folder since there are only folders in the  master folder?
    All my file organization is gone from the files imported from removeable media. The whole year is just blobbed together. What is the best way to put the pictures back into the subfolders I had on the disks.For example, I create a master folder (Boston trip) and then within it subfolders (A at hotel, B tours, C people) Should I delete everything and start again. First copy to the hard drive to keep my folders? Then import to Elements? I have 2 or 3 DVDs per year.
    I appreciate your help. Thanks again,
    Linda

  • Import video and audio from a dvd into FCP

    Is there an easier way to import video and audio into Final Cut Pro - I am playing it on a DVD player and making a digital tape of it. Then logging and capturing it into FCP.

    Hello and welcome to the forum!
    Yes, there are a few ways that are faster. Have a look at this thread http://discussions.apple.com/click.jspa?searchID=-1&messageID=3465691
    You could use software, such as "streamclip", or import by plugging your camera into your capture device and hooking your capture device into your computer and capturing by non-controllable device settings.
    Good Luck

  • How do I get Video_TS.BUP, Video_TS IFO, Video_VOB files from A DVD into my Final Cut Po on mac.

    Hi I have had VHS videos put onto DVDs but several videos are on one dvd. I am trying to separate them and put them on their own DVD.
    There are Video_TS.BUP, Video_TS IFO, Video_VOB files. I have a prism converter so I converted the files to MP4 thinking I could then copy them into Final Cut Pro to edit etc but Final cut pro comes back with error message "File Error: Unknown file"
    I tried converting to .mov but same message. Can any one help please.
    Louise

    Actually, if you're not doing any editing beyond separating the different films and are willing to dive into a slightly deeper end of the pool, you can use mpeg streamclip to "demux" the dvds into m2v (video) and ac3 (audio) files and bring these files into dvdsp and set start and ends for each section to make individual dvds.  This will allow you to repurpose the material without any loss in quality.  If you convert the material from the dvd into quicktimes suitable for editing in fcp and then recompress them for authoring back to dvd, you will have some quality loss.  Whether the loss is enough to worry you, you'll have to decide for yourself. 
    If you want any further help with this workflow, post back.

  • How do i import music from a dvd into itunes

    how do i import music from a dvd into my itunes? thanks....

    This is a great question. I would also like to know about it. Anyone there to help???

  • Can someone pls. tell me how to import photos from a DVD into Photohop 7.  thanks

    How do I import photos from a DVD into my Photoshop 7?

    Since Elements is different from Photoshop, I'll link you over to that forum so the experts there can sort it out for you.
    Photoshop Elements

  • Is it possible to record data directly from PXI-5112 scope card through PXI bus to SCSI RAID array (connected to PXI-8210)?

    Colleagues,
    Is it possible to record data directly from PXI-5112 scope card through PXI bus to SCSI RAID array (connected to PXI-8210)?
    Which will be the maximum transfer rate for continuous data recording?
    Thank you,
    Sergey
    Sergey

    Sergey,
    The PXI-8210 can connect to any SCSI 2 compliant device. If the RAID controller is SCSI 2 and appears just like a hard drive in the operating system, then you can send data directly to the RAID array. The problem is that the driver for the PXI-5112 does not yet support continuous acquisition. The on-board 16MB or 32MB buffer stores the data until the entire acquisition is completed. Once the acquisition complete, all of the data is transferred from the on-board buffer to the hard drive. After that happens, the NI 5112 is ready for another acquisition.
    Best Regards,
    Jace Curtis
    NI Applications Engineering

  • How do I transfer or backup tv shows I downloaded on my iPad from the iPad into my computer's iTunes library?

    How do I transfer or backup tv shows I downloaded on my iPad from the iPad into my computer's iTunes library? I have a bunch of tv episodes on my iPad that I want to delete but first i want to back them up onto my computer so i have them. If I check "Sync TV Shows" in the iPad in TV shows it tells me all the shows on the iPad will be replaced by what is in my library. I tried going into iTunes store to redownload but it tells me they are "downloaded." Any thoughts?

    See Here...
    How to transfer or sync content to your computer
    From Here...
    http://www.apple.com/support/ipad/syncing/

  • How do we Back up my music files from my phone into my computer (PC) without using any programs

    I am looking for a way to back up my Music from my iPhone into the computer (Like how the iPod Nano could) WITHOUT using any programs. Is there a way? Is it possible? If so, please help....
    thankyou
    Charlie

    Music purchased from the iTunes store can be redownloaded again for free (see.http://support.apple.com/kb/HT2519)  In other words, it's already in iCloud so there's nothing you need to upload.
    However, if you don't want to run into problems syncing with your new computer you need to copy the entire iTunes folder (not just the music folder) from your old computer to your new one using one of the methods outlined here: http://support.apple.com/kb/HT4527.

Maybe you are looking for

  • The complete steps to bring to factory settings

    Hi... This is my first Mac experience, thus please bear with me. My MacBook Pro 15" 1.83 GHz had been running fine. Since the first time I started it up, I had never undergone a single hang. Not even a single hang during low or high load, eventhough

  • Deploy JDBC driver for SQL server 2005 on PI 7.1

    How to deploy JDBC driver for SQL server 2005 on PI 7.1 We are in SAP NetWeaver 7.1 Oracle 10G Third party system is  SQL server 2005 There are different JDBC versions are available to download for SQL server 2005. I am not sure about the applicable

  • SQL*Plus assignment works for 8i but not 9i

    We have scripts that connect to each database on the box and perform database tasks nightly. The scripts first set the environment then connects to each database with SQL*Plus. This works for 8i but fails in the recently created 9i environment. Becau

  • My 8520 keeps stopping to sync

    Hi all, In the last one week or thereabout, my device, curve 8520 has kept on showing a small kind of stop clock at the centre of my screen in a 3 - 4 minute interval. Anytime this tiny clock comes up, it stays for like 30 seconds and freezes my devi

  • Getting the class of a primitive type or void

    Hello, Class.forName cannot be used to get the class of a primitive type or void. What does then ??? I thought of defining a class for each primitive type and override getClass() to return the required type, but getClass() is final ... Please help