
Recherche avancée
Autres articles (11)
-
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 -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)
Sur d’autres sites (2600)
-
Having sound issues while streaming to youtube
23 septembre 2024, par Hen SimkinI created an app that uses rtmp and ffmppeg and youtube api for streaming to youtube,
when i stream and i go to youtube i face sound issues, the sound of the live sounds laggy and robotic.


this is my configuration :


const commonOutputOptions = [
 '-c:v libx264',
 '-c:a aac',
 '-preset veryfast',
 '-crf 30',
 '-b:v 3500k',
 '-b:a 128k',
 '-ac 2',
 '-ar 44100',
 '-g 48',
 '-keyint_min 48',
 '-pix_fmt yuv420p',
 '-x264-params keyint=48:min-keyint=48:scenecut=-1',
 '-flvflags no_duration_filesize',
 '-probesize 32',
 '-analyzeduration 0',
 '-f flv',
 ];



i tried to change it to :


const commonOutputOptions = [
 '-re', // Enable real-time mode for streaming.
 '-c:v libx264',
 '-c:a aac',
 '-preset veryfast',
 '-crf 23', // Improved quality setting.
 '-b:v 4500k', // Adjusted bitrate for better quality.
 '-b:a 160k', // Higher audio bitrate.
 '-ac 2',
 '-ar 48000', // Updated sample rate.
 '-g 48',
 '-keyint_min 48',
 '-pix_fmt yuv420p',
 '-x264-params keyint=48:min-keyint=48:scenecut=-1',
 '-flvflags no_duration_filesize',
 '-f flv',
 '-movflags +faststart', // Improved streaming compatibility.
];



and to this :


const commonOutputOptions = [
 '-c:v libx264',
 '-c:a aac',
 '-preset veryfast',
 '-crf 30',
 '-b:v 3500k',
 '-b:a 128k',
 '-ac 2',
 '-ar 48000', // Updated sampling rate
 '-g 48',
 '-keyint_min 48',
 '-pix_fmt yuv420p',
 '-x264-params keyint=48:min-keyint=48:scenecut=-1',
 '-flvflags no_duration_filesize',
 '-f flv',
];



i tried differnt configurations and nothing makes the sound normal.


when i stream to facebook and twitch the sound is perfect.


-
All : Use Stale bot to manage stale issues (#2176)
5 juin 2018, par ArkniAll : Use Stale bot to manage stale issues (#2176)
Ref #2127
-
ffmpeg 7.1 ogg conversion issues
23 mars 2018, par Litingcommand:
ffmpeg -i out.wav -c libvorbis tes.ogginput:
output :
What’s going on ?