Hello everybody,
I am trying to convert .m4a to .aac with mp4box v.8 and getting this
"C:\Users\AS>mp4box -raw 1 in.m4a -out out.aac
Error creating file in.m4a: Requested URL is not valid or cannot be found"
How can I solve this issue?
+ Reply to Thread
Results 1 to 30 of 49
-
-
-
I don't understand what you mean by "whole script". What is not "whole" about what I posted?
-
Please stop posting incorrect information.
https://sourceforge.net/p/gpac/feature-requests/54/
P.S.: the «official» GPAC documentation suxxx very-badlyNot to mention that the MP4Box command-lines switches and its help screen were written by a d0rk.
"Programmers are human-shaped machines that transform alcohol into bugs." -
-
-
Why don't you just use ffmpeg?
Code:ffmpeg -i input.m4a -acodec copy output.aac
Code:ffmpeg -i "%~dpnx1" -acodec copy "%~dpn1.aac"
Code:FOR %%F in (*.m4a) do (ffmpeg.exe -i "%%~dpnxF" -acodec copy "%%~dpnF.aac")
Last edited by jagabo; 5th Sep 2019 at 20:57.
-
-
Сould you try that?
https://workupload.com/file/g3s3EkQD -
That's an AAC file. Not m4a container.
What is the purpose of this anyways? Some Googling says it is possible to put ID3 tags into ADTS AAC (I don't know if ffmpeg can write such files) but it seems very uncommon while tagged aac-in-m4a is very common. -
Sorry, wrong file. Please try to convert from .m4a to .aac this one with ffmpeg. https://workupload.com/file/yQG8WaaG
The purpose is that my player can't read .m4a files tags correctly. There's no problem with reading .aac files, though. -
I was able to remux to aac and copy metadata tags with the following ffmpeg command line:
Code:ffmpeg.exe -i input.m4a -acodec copy -write_apetag 1 output.aac
-
Not all players support ape tags in aac. Do you have any aac files for which your player displays metadata info?
I wasn't able to find what the "1" after the write_apetag meant. Maybe it means ape version 1. Try using 2 instead.
<oops> No, 2 doesn't work. Program aborts with error. </oops> -
values 0 and 1 only acc to https://gist.github.com/tayvano/6e2d456a9897f55025e25035478a3a50feature either on or off
Last edited by teodz1984; 7th Sep 2019 at 09:04.
-
what player are you using?
many players usually have a hard time with aac tags. it may be a matter of finding one that works..
what about the one converted with ezaudio converter?Last edited by teodz1984; 7th Sep 2019 at 09:02.
-
Last edited by alex5908; 7th Sep 2019 at 10:58.
-
This one is converted from flac to aac with EZ CD Converter.
https://workupload.com/file/rmBbBmMH -
That file contains ID3 tags. I didn't see any indication that ffmpeg can write ID3 tags with the aac/adts muxer. But I tried it and it worked:
Code:ffmpeg.exe -i input.m4a -acodec copy -write_id3v2 1 output.aac
-
Last edited by teodz1984; 7th Sep 2019 at 18:33.
Similar Threads
-
.aac to .m4a.. possible?
By romi7519 in forum AudioReplies: 35Last Post: 14th Dec 2018, 05:45 -
Cannot join .264 and .m4a (aac) and set aspect from 704/368 to 2.35:1
By Budman1 in forum EditingReplies: 4Last Post: 28th Jan 2018, 23:28 -
Converting an AAC Mono file to AAC Stereo, higher audio bitrate?
By brightmademedia in forum AudioReplies: 2Last Post: 17th Jun 2017, 09:41 -
change m4a to aac container
By jamespoo in forum MediaReplies: 11Last Post: 7th Feb 2017, 22:15 -
Batch wrap AAC in mp4/m4a
By Kylezo in forum AudioReplies: 6Last Post: 13th Mar 2016, 03:52