Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (73)

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (8468)

  • Can I compile ffmpeg using cygwin so that I would get redistributable dll's of it ?

    14 juin 2014, par Rella

    So my point is to compile ffmpeg (I know that autobuild tools or minGW can be used but I want cygwin) using gcc to have a library (like .dll or, better .lib) usable from my windows visual studio C++ appication. Is it possible and what are main instructions on how to do such thing ?

  • Android Audio Mixing FMPEG, Mediarecorder file only merging to left channel, delayed

    12 avril 2016, par Jeremy

    working on an app that takes two sounds, and merges them together. I currently have two problems with it I cannot seem to figure out so would appreciate another set of eyes.

    1. File from MediaRecorder (voice file) merges into Left Channel Only. (I can only hear voice in left ear)
    2. The two files seem like there is a slight delay in the position as they are not aligned perfectly with the merge. Here is the method I have written.

      private void mixAudio(File mVoiceFile, File mBeatFile, File mRapFile){
         String files = "-i " + mVoiceFile.getAbsolutePath() + " -i " + mBeatFile.getAbsolutePath();
         String filter = " -filter_complex [0:a]volume=1.5[a1];[1:a]volume=0.6[a2];[a1][a2]amerge=inputs=2,volume=1.3,pan=stereo|c0code>

      }
      `

    and here is how I setup my MediaRecorder

    public void setRecorderSource(){
           mRapRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
           mRapRecorder.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4);
           mRapRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AAC);
           mRapRecorder.setAudioEncodingBitRate(128000);
           mRapRecorder.setAudioSamplingRate(44100);
           mRapRecorder.setAudioChannels(2);
           mRapRecorder.setOutputFile(mVoiceFile.getAbsolutePath());
    }`
  • Convert a RTMP stream to RTSP

    22 août 2016, par tankyx

    I am capturing a game using OBS-studio and streaming it in RTMP through my nginx server. My goal is to convert that RTMP flux to RTSP. How can I achieve that ? I have read about crtmpserver but It seems I can’t configure it.