Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (57)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • 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 (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (8841)

  • 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 ?