
Recherche avancée
Autres articles (71)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (12929)
-
H264 Encoders other than ffmpeg x264
5 septembre 2016, par 0pclThe iPhone app I am working on captures images in series within certain user-defined time interval, I am looking for a way to combine these images into H264 encoded videos. I have done some research on Google, it looks like I will have to use something like ffmpeg/mencoder on iPhone ? (Also found someone ported ffmpeg to iPhone, ffmpeg4iPhone)
However, I found that x264 is under GPL license, and requires me to open source my project if I use ffmpeg. Also found some people suggested to use Ogg Theora, but I will need to port it to iPhone if I use it. (Which I am not sure how to do it now).
Is there any workaround for this ? Any ideas ? Thanks.
-
Unmapping memory-mapped images that are created during processing
23 avril 2013, par user2309283I have a pretty big issue, although I only have the symptoms, and a theory on the cause.
I have a C++ application under Windows 7x64 that uses system calls to FFMPEG 0.7.13 to extract frames from videos. When running, the parent application maintains a nice, predicable memory footprint in memory profilers (task manager, RAMMap) of about 2MB. I can see the individual calls to FFMPEG also come and go without incident. The trouble is, after about 100 calls to FFMPEG, and 70,000+ PNGs created (no one directory has more than 1500 pngs), the Windows memory page size raises gradually from about 2.5GB to over 7.0GB, and the system is brought to its knees. The sum of the processes for all users is no where near the reported Memory Page amount.
I thought it might be Windows Search indexing related, so I turned off the indexing for the output directories in question using SetFileAttributes() and FILE_ATTRIBUTE_NOT_CONTENT_INDEXED, and while it seems to be working as advertised, it does not seem to combat the issue at hand. My current running theory is that all of these extracted PNGs are either fully or partially memory mapped, by FFMPEG or something else. I can also see the output PNGs under the RAMMap Physical Pages tab as standby mapped files.
Question :
Is there enough information here to possibly diagnose the exact problem ?
Do I have a way to combat this issue ?
Thanks in advance...
-
Facing Severe Buffering Issues in FFmpeg Pipeline for Simultaneous Video and Audio Live Streaming via SRT Protocol
7 novembre 2023, par JohnnyI'm currently working on a project where I'm using FFmpeg to livestream via Cloudflare using the SRT protocol. My main goal is to make sure I can stream both video and audio at the same time. Things have been going well with video streaming, but I've run into a bit of a problem when it comes to adding audio to the mix.


The issue I'm facing is that when I try to connect the audio to the video stream, I'm having some serious buffering problems. The video with audio does work, but all that buffering is messing up the quality of the livestream.


I have a feeling the problem might have something to do with my FFmpeg pipeline, but I'm still pretty new to using FFmpeg. Could someone please lend a hand and help me figure out how to fix this buffering issue in my FFmpeg setup so I can livestream both video and audio at the same time ? Any advice or suggestions you have would be a huge help.


Here's the code I'm using for my FFmpeg pipeline :


ffmpeg_stream = [
 "ffmpeg",
 "-re",
 "-flags", "+global_header",
 "-fflags", "+genpts",
 "-threads", "8",
 "-thread_queue_size", "1024",
 "-loglevel", "debug",
 "-f", "rawvideo",
 "-pix_fmt", "bgr24",
 "-s", "1280x720",
 "-i", "-",
 "-channel_layout", "mono",
 "-f", "alsa",
 "-thread_queue_size", "32768",
 "-ac", "1",
 "-i", "hw:4,0",
 "-pix_fmt", "yuv420p",
 "-c:v", "libx264",
 "-max_muxing_queue_size", "9999",
 "-b:v:0", "3000k",
 "-g", "25",
 "-c:a", "aac",
 "-ar", "44100",
 "-b:a", "128k",
 "-map", "0:v:0",
 "-map", "1:a:0",
 "-preset", "veryfast",
 "-tune", "zerolatency",
 "-f", "mpegts",
 my_srt_url
 ]



Let me know if any other info is needed. Thanks !