|
|
#51 | |
|
Quote:
How is yojur PS3 configured. Is DTS send in bitstream mode or as PCM converted ? Is your audio system able to decode the output format ? Have you try another mkv ? |
||
|
|
0
|
|
|
#52 |
|
Every file I try does the same. I don't know what my ps3 can play or can't. I did not seem to have this problem when using mkv2vob.
Just to break it down. If the video is mkv and the audio is... DTS - ??? AAC - ??? AC3 - ??? What do I do with each option? Have you tried on a ps3? |
|
|
|
0
|
|
|
#53 | |
|
Okay, so I have a few questions.
1. If I burn these files to DVD will they play with full resolution, 1920x1080? Quote:
Thanks. |
||
|
|
0
|
|
|
#54 | |
|
Quote:
Hey VoxMac. I tried your build and it works like a charm. I am able to view the m2ts file with VLC and on my PS3 on file mode (browsing with Triangle and drilling down to the file). But PS3 does not recognize the AVCHD folder as it should. I'm only having difficulties making the rename script 8+3 work. I understand this is a required step to make the AVCHD folder be recognized through USB on the PS3, right? I'm pretty new to the Mac and never scripted on it before. I'm copying your script to the AppleScript Editor, but it gives me a Syntax Error (Expected expression but found unknown token.) on the OFS=$IFS line, when i try to compile it. What am I doing wrong? Thanks for the help! EDIT: Doing the manual rename through command line with the Terminal it worked fine. But it takes a while to run all the commands, so the script would be really nice. thanks again. EDIT 2: I figured it out! Not with the AppleScript Editor, but with Automator. I created a little app that goes through all the steps. The only thing is that I have to select all files and folders before starting, but that's ok! Thanks again! Last edited by francorj; Aug 14, 2010 at 03:20 PM. |
||
|
|
0
|
|
|
#55 |
|
Hi francorj,
if you use the AVCHD Disc option, the script is not needed, as the PS3, recognize the files (which are in 8.3 format). For the Unix Script, I personally run it inside a terminal windows, as i don't use applescripts nor automator scripts. Anyway, if you want to help the community, you can post your automator script, so other people can use it. Regards, VoxMac. |
|
|
|
0
|
|
|
#56 |
|
Works on Mac OS X Lion as long as you remove the two fonts in VoxMac readme file.
|
|
|
|
0
|
|
|
#57 |
|
Please help
Assertion failed: (curPos == end), function extractData, file ../vodTransport/src/matroskaParser.cpp, line 134.
Can't detect stream type. File name: I receive this msg in about 5-10% of all the .mkv files i add to tsmuxer. I was hoping there is an easy fix to this as of now my only work around is to extract the files via mkvextract on windows side. |
|
|
|
0
|
|
|
#58 | |
|
Quote:
I can't give you a fix, as i've no access to tsmuxer code, but you can use your workaround on mac without going on Windows Side. You can use iMkvExtract that you can find here. The latest version is compiled with intel code, and do not need Rosetta. |
||
|
|
0
|
|
|
#59 |
|
Thanks for the info... I have been using imkvextract for a while now on Mac. I get similar issues with that program not extracting the h264 but will extract the dts. For whatever reason on the windows side mkvextract doesn't have any issues with extracting the h264 or dts files. I looked at all the movies that it wont extract in both tsmuxer and imkvextract and the 1 common i found is the videos were encoded with Variable Framerates. After a little research i found that tsmuxer cant work with Variable Framerates. Not to sure what the issue is with imkvextract.
|
|
|
|
0
|
|
|
#60 |
|
I made this quick patch for myself for the next time I need to reinstall Lion or an update breaks the font this fixes. It just replaces the korean fonts with renamed ariel fonts. voxmac tsmuxer works fine after this. You can still just do it manually but I'm lazy...
|
|
|
|
0
|
|
|
#61 | |
|
Quote:
|
||
|
|
0
|
|
|
#62 |
|
Can someone post VoxMax's compiled tsMuxerGui?
Links are no longer working and I am trying to use it with Mountain Lion. Thanks! |
|
|
|
0
|
|
|
#63 | |
|
Quote:
I didn't remove it. And by the way, it still works on Mountain Lion. Regards, VoxMac |
||
|
|
0
|
|
|
#64 |
|
tsMuxer finished with error code 254
Hi VoxMac, i'm trying to add subtitles in srt format and i receive the next message:
Can't convert source text to UTF-32. Invalid chars sequence. Could you help me to solve that problem because i can't find help in the net. Thanks in advance, regards
|
|
|
|
0
|
|
|
#65 |
|
Thought this may be useful to some
Code:
(*A small applescript which helps in the creation on AVCHD DVDs. Written because I couldn't find a simpler way of doing it.
Required tsMuxerGUI to create AVCHD, everything else comes built in.
Thanks to VoxMac for tsMuxerGUI working on OS X and for the other info needed.
***No file or folders you use with this applescript can contain spaces***
bigugly
*)
--Burn image or create image for burning
display dialog "Create AVCHD DVD or Burn saved image" buttons {"Create AVCHD DVD", "Burn Image", "Quit"}
if result = {button returned:"Burn Image"} then
set _image to choose file with prompt "Choose your image for burning"
display dialog "Insert blank disk for writing then click Ok" buttons {"Ok"}
--Sets the temorary folder to POSIX path for use in shell script
set posix_image to POSIX path of _image
--Burns image to DVD
do shell script "hdiutil burn -noverifyburn " & posix_image
else if result = {button returned:"Quit"} then
return
else if result = {button returned:"Create AVCHD DVD"} then
--Selects the temporary folder
set _TempDir to choose folder with prompt "Select Temporary Folder (default Desktop)" default location (path to desktop folder)
--Sets the temorary folder to POSIX path for use in shell script
set posix_TempDir to POSIX path of _TempDir
--Sets size for DVD type
set _size to {"DVD Single Layer", "DVD Dual Layer"}
--Selects DVD type
display dialog "Select DVD Type" buttons {"DVD Single Layer", "DVD Dual Layer", "Quit"}
if result = {button returned:"DVD Single Layer"} then
do shell script "dd if=/dev/zero of=" & posix_TempDir & "bd_image.img bs=1048576 count=4478"
else if result = {button returned:"DVD Dual Layer"} then
do shell script "dd if=/dev/zero of=" & posix_TempDir & "bd_image.img bs=1048576 count=8140"
else if result = {button returned:"Quit"} then
return
end if
display dialog "Enter DVD volume name (NO_SPACES)" default answer "MY_BLURAY_LABEL"
--Sets volume name to choice
set _volumeName to (text returned of result)
--Formats image to UDF 2.5
do shell script "newfs_udf -r 2.5 " & posix_TempDir & "bd_image.img -v " & _volumeName
--Mounts the image
do shell script "hdiutil mount -nobrowse " & posix_TempDir & "bd_image.img"
--Selects folder for contents copy
set _folder to choose folder with prompt "Select Folder"
--Sets the contents folder to POSIX path for use in shell script
set posix_folder to POSIX path of _folder
--Copies contents of selected folder to image
do shell script "cp -Rv " & posix_folder & "* /Volumes/" & _volumeName
--Unmounts the image
do shell script "hdiutil unmount /Volumes/" & _volumeName
--Detaches the image
do shell script "hdiutil detach /dev/$(diskutil list | grep " & _volumeName & " | awk '{ print $NF}')"
--Displays choice to burn image to DVD
display dialog "Would you like to burn the image to disk?" buttons {"Yes", "No"}
if result = {button returned:"Yes"} then
display dialog "Insert blank disk for writing then click Ok" buttons {"Ok"}
--Burns image to DVD
do shell script "hdiutil burn -noverifyburn " & posix_TempDir & "bd_image.img"
--Displays choice to keep image for later use
display dialog "Would you like to keep the image for later?" buttons {"Yes", "No"}
if result = {button returned:"NO"} then
--Deletes image
do shell script "rm " & posix_TempDir & "bd_image.img"
end if
else if result = {button returned:"No"} then
--Displays choice to keep image for later use
display dialog "Would you like to keep the image for later?" buttons {"Yes", "No"}
if result = {button returned:"NO"} then
--Deletes image
do shell script "rm " & posix_TempDir & "bd_image.img"
end if
end if
end if
Last edited by bigugly; Feb 7, 2013 at 02:53 AM. Reason: Added attachment |
|
|
|
0
|
|
|
#66 |
|
None of the download links work, but I managed to find it here:
http://www.videohelp.com/tools/tsMuxeR/old-versions Click on the VoxMac old version in the list. |
|
|
|
0
|
![]() |
|
«
Previous Thread
|
Next Thread
»
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| thread | Thread Starter | Forum | Replies | Last Post |
| Restore Lion on Snow Leopard Computer? | DoodlyDoo | Mac OS X 10.7 Lion | 2 | Oct 21, 2011 08:25 AM |
| Photostream on Snow Leopard 10.6.8? | jzone3 | iOS 5 and earlier | 0 | Oct 15, 2011 11:15 AM |
| Help upgrading from Tiger to Snow Leopard | holdmusic | MacBook Pro | 6 | Jul 10, 2011 02:56 PM |
| Will Stronghold 1 for mac work on snow leopard? | j.burris | Mac and PC Games | 11 | May 24, 2011 03:31 PM |
| Can I re-install on a Mid-2010 MBP with the Snow Leopard DVD? | BlueberryMac | MacBook Pro | 8 | Mar 2, 2011 09:14 PM |
All times are GMT -5. The time now is 07:53 PM.







, so you can try the different solutions .

Linear Mode

