Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (65)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (6015)

  • Having sound issues while streaming to youtube

    23 septembre 2024, par Hen Simkin

    I 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.

    


  • Convert audio download with youtube-dl to flac ?

    16 mars 2017, par Urasam

    is it possible to download a youtube video as e.g. mp3 and then convert it to flac with ffmpeg ? I can specify the arguments that ffmpeg shall use after the download with —postprocessor-args but I don’t know how to get the file name there.

    —postprocessor-args "-i downloadedfile.xxx -c:a flac downloadedfile.flac"

    This would be the argument i want to use. Is this possible ?

  • Recorded video from iPhone rotated 180 degrees on FB, Vimeo, Youtube

    17 février 2017, par Junho

    it’s my first question.

    My question is this. I developed some app and the app records a video.

    The problem is that the recorded video on iPhone looks rotated 180 degrees in FB, Vimeo, Youtube after sharing it. But it appears normally on iMessage, Instagram. I’m using FFmpeg while recording it.

    Could you let me know the cause of the problem and the solution on the code ?