StreaMonitor icon indicating copy to clipboard operation
StreaMonitor copied to clipboard

Chaturbate records splitted after few minutes

Open NoxWW opened this issue 11 months ago • 4 comments

When I simply start recording a model of Chaturbate I get splitted records after few minutes.

Am I doing something wrong? Is there some settings that needs to be modified?

Thanks

NoxWW avatar Jan 14 '25 20:01 NoxWW

It happened to me when I updated ffmpeg version, then I used ffmpeg-4.4.1-full_build and no more splitting. Idk if other versions works well too, try some more.

eldepor avatar Mar 19 '25 12:03 eldepor

I don't have the problem with Chaturbate but I have seen it with Stripchat for a while. I write some scripts to do some other things but what I basically do is just combine the files when I am done recording something like the following (some personal things removed) on bash mac:

model_name=model
site=SC

streamonitor_downloads=StreaMonitor/downloads
model_folder="${streamonitor_downloads}/${model_name} [${site}]"

if [ -d $model_folder ]; then
	files=()
	for f in ${model_folder}/*.mp4; 
	do 
		files+=$f;
		echo "file '$f'" >> ${model_folder}/mylist.txt; 
	done
	new_video_file_name=$model_name-$(date +'%Y-%m-%d_%H-%M-%S').mp4
	ffmpeg -f concat -safe 0 -i mylist.txt -c copy $new_video_file_name
	
#	for f in ${files[@]}
#	do
#		rm $f;
#	done;
#	rm mylist.txt
fi

throwawayuser111 avatar Apr 05 '25 19:04 throwawayuser111

It happened to me when I updated ffmpeg version, then I used ffmpeg-4.4.1-full_build and no more splitting. Idk if other versions works well too, try some more.

I can confirm the 4.4.1 version works flawless, thanks!

stereovizion avatar Apr 10 '25 21:04 stereovizion

Q es esto?

El El jue, 10 de abr de 2025 a la(s) 3:52 p.m., stereovizion < @.***> escribió:

It happened to me when I updated ffmpeg version, then I used ffmpeg-4.4.1-full_build and no more splitting. Idk if other versions works well too, try some more.

I can confirm the 4.4.1 version works flawless, thanks!

— Reply to this email directly, view it on GitHub https://github.com/lossless1024/StreaMonitor/issues/182#issuecomment-2795244055, or unsubscribe https://github.com/notifications/unsubscribe-auth/BQYECAI7QDV7ROILK6YS7QT2Y3RYZAVCNFSM6AAAAABVFVNN66VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDOOJVGI2DIMBVGU . You are receiving this because you are subscribed to this thread.Message ID: @.***> stereovizion left a comment (lossless1024/StreaMonitor#182) https://github.com/lossless1024/StreaMonitor/issues/182#issuecomment-2795244055

It happened to me when I updated ffmpeg version, then I used ffmpeg-4.4.1-full_build and no more splitting. Idk if other versions works well too, try some more.

I can confirm the 4.4.1 version works flawless, thanks!

— Reply to this email directly, view it on GitHub https://github.com/lossless1024/StreaMonitor/issues/182#issuecomment-2795244055, or unsubscribe https://github.com/notifications/unsubscribe-auth/BQYECAI7QDV7ROILK6YS7QT2Y3RYZAVCNFSM6AAAAABVFVNN66VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDOOJVGI2DIMBVGU . You are receiving this because you are subscribed to this thread.Message ID: @.***>

alexbig69 avatar Apr 10 '25 21:04 alexbig69

It happened to me when I updated ffmpeg version, then I used ffmpeg-4.4.1-full_build and no more splitting. Idk if other versions works well too, try some more.

I can confirm the 4.4.1 version works flawless, thanks!

I'm trying v7.1.1 (2025-03-03) windows build from gyan.dev (https://www.gyan.dev/ffmpeg/builds/ffmpeg-release-essentials.7z) and looks like it's working fine too for the sites I tested it: downloaded a 4GB show from SC with no splitting at all, whereas with v7.1 I got ton of splitting). Can you give it a try?

eldepor avatar May 16 '25 14:05 eldepor

I tweaked with the ffmpeg params, it should be better now.

lossless1024 avatar Jun 30 '25 18:06 lossless1024