[FFmpeg-user] about merging more than 1 videos

2017-07-06 Thread akash kulkarni
Hello there, i am using the ffmpeg -copy command and merging multiple files from text file without re-encoding but its giving me jerk at the joint point of two files. How could i vanish that jerk. ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org http:/

Re: [FFmpeg-user] about merging more than 1 videos

2017-07-06 Thread Cley Faye
2017-07-06 10:27 GMT+02:00 akash kulkarni : > Hello there, > i am using the ffmpeg -copy command and merging multiple files from text > file > without re-encoding but its giving me jerk at the joint point of two files. > How could i vanish that jerk. ​This depends on your source material (codec,

Re: [FFmpeg-user] progress output to unix domain socket

2017-07-06 Thread Nicolas George
L'octidi 18 messidor, an CCXXV, Moritz Barsnick a écrit : > Haha! Who needs operating systems when we have ... JavaScript! ;-) Well, since you are being sarcastic: > I meant like: mkfifo? ... I hope you will share the exact version of the operating system you use where mkfifo can be used to crea

Re: [FFmpeg-user] progress output to unix domain socket

2017-07-06 Thread Anatoly
don't mess socket(2) nc(1) and pipe(2) mkfifo(1) socket(2) is a matter of networking staff, while pipe(2) is a matter of ipc. ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link a

Re: [FFmpeg-user] progress output to unix domain socket

2017-07-06 Thread Anatoly
tasos wrote: > More specifically i get > Failed to open progress URL "/tmp/foo": No such device or > address Writing to unix socket works for me with url like this: -progress "unix:/tmp/foo" ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org http://

Re: [FFmpeg-user] about merging more than 1 videos

2017-07-06 Thread akash kulkarni
"media_type": "video", "key_frame": 0, "pkt_pts": 1902000, "pkt_pts_ti me": "38.04", "pkt_dts": 1902000, "pkt_dts_time": "38.04", "best_effort_ timestamp": 1902000, "best_effort_timestamp_time": "38.04", "pkt_duration": 2000, "pkt_duration_time": "0.04", "pkt_pos": "117923788", "pkt

Re: [FFmpeg-user] Using FFMPEG to encode multiple outputs in 'parallel' (doesn't work?)

2017-07-06 Thread DopeLabs
Option 2 in your question looks fine to me... I have used ffmpeg to transcode audio and video streams before to achieve adaptive streaming. Here is an example of an audio transcode... input is 256k mp3, output is 128k, 64k, and 24k $ ffmpeg -i http://stream.dubstep.fm -c:a mp3 -b:a 128k -f nu

Re: [FFmpeg-user] progress output to unix domain socket

2017-07-06 Thread Nicolas George
L'octidi 18 messidor, an CCXXV, Anatoly a écrit : > don't mess socket(2) nc(1) and pipe(2) mkfifo(1) > socket(2) is a matter of networking staff, while pipe(2) is a matter of > ipc. I know all that, but all that is completely unrelated to UNIX DOMAIN SOCKETS. Judging by your other mail, you know w

Re: [FFmpeg-user] progress output to unix domain socket

2017-07-06 Thread tasos
There is no need to argue people. I will try Writing to unix socket works for me with url like this: -progress "unix:/tmp/foo" _ and let you know! Thanks!!! On 7/6/2017 1:52 PM, Nicolas George wrote: L'octidi 18 messidor, an CCXXV, Anatoly a écrit : don't mess

Re: [FFmpeg-user] progress output to unix domain socket

2017-07-06 Thread Moritz Barsnick
On Thu, Jul 06, 2017 at 11:16:36 +0200, Nicolas George wrote: > Well, since you are being sarcastic: > > I meant like: mkfifo? > ... I hope you will share the exact version of the operating system you > use where mkfifo can be used to create Unix domain sockets. You can just point out an error wit

Re: [FFmpeg-user] Using FFMPEG to encode multiple outputs in 'parallel' (doesn't work?)

2017-07-06 Thread Moritz Barsnick
On Thu, Jul 06, 2017 at 03:44:45 -0700, DopeLabs wrote: > Option 2 in your question looks fine to me... > > I have used ffmpeg to transcode audio and video streams before to achieve > adaptive streaming. > > Here is an example of an audio transcode... input is 256k mp3, output is > 128k, 64k,