
Recherche avancée
Autres articles (72)
-
Qualité du média après traitement
21 juin 2013, parLe bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 ;
Sur d’autres sites (7343)
-
VOD Streaming While Live Recording RTMP
7 février 2019, par Nick DarioI need to collect a live stream of audio and offer it as a stream playable from the start, while recording is in progress.
It is important the audio is processed from the beginning, and it must be processed within 1 second.
I am using SRS (simple RTMP server) to handle the rtmp stream, the server allows me to record the stream to a file, but I have not been able to offer the file as a stream.
What set of tools or methods using SRS, another audio software (possibly ffmpeg), or raw audio manipulation, can achieve this ?
-
Unrecognized option 'sync'. Error splitting the argument list : Option not found
12 juin 2021, par OokerI am following this tutorial to project Android screen to PC via ADB.


.\adb exec-out screenrecord --output-format=h264 - | ffmpeg ffplay -framerate 60 -probesize 32 -sync video



The error is :


Unrecognized option 'sync'.
Error splitting the argument list: Option not found



I've searched for similar errors about unrecognized option, but I still don't know how to solve it.


If I remove the
-sync video
argument then the error is :

Trailing options were found on the commandline.
[NULL @ 000001f0d0678b00] Unable to find a suitable output format for 'ffplay'
ffplay: Invalid argument



The ffmpeg version is 4.2.3, but I don't think this matters.


-
libFLAC/stream_decoder : Fix double free
22 août 2015, par Erik de Castro LopolibFLAC/stream_decoder : Fix double free
The american-fuzzy-lop fuzzer found a couple of instances of double
free() resulting from commit 15a9062609.The problematic free() were the ones associated with use of the
safe_realloc_mul_2op_() function which can call realloc(ptr,0) which
according to the realloc manpage is already an implicit free().