Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (46)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

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

Sur d’autres sites (7709)

  • Capture video and audio using javascript

    16 janvier 2017, par Anand Soni

    I am trying to capture video and audio from web browser and upload it to the server. The thing is I don’t want to use flash in this.

    So I am using HTML5 feature and a library called RecorderRTC to make it possible. I am using Ruby on Rails in backend. Though I am feeling this feature is still under implementation I am facing challenges.

    Following javascript code I have written : http://pastebin.com/KjwunFfD and here is my rails code :

       uuid = UUID.generate
       audio_file_name = "#{uuid}.wav" if params[:chrome]
       audio_file_name = "#{uuid}.ogg" if params[:firefox]
       video_file_name = "#{uuid}.webm"

       directory = "#{Rails.root}/public/record"
       directory = directory + "/chrome" if params[:chrome]
       directory = directory + "/firefox" if params[:firefox]

       audio_path = File.join(directory, audio_file_name)
       video_path = File.join(directory, video_file_name)
       #puts params[:audioBlob].tempfile.read
       File.open(audio_path, "wb") { |f| f.write(params[:audioBlob].tempfile.read) }           if params[:audioBlob]
       File.open(video_path, "wb") { |f| f.write(params[:videoBlob].tempfile.read) }           if params[:videoBlob]

       output = `ffmpeg -i #{video_path} -i #{audio_path} -acodec copy -vcodec copy #{directory}/#{uuid}.mkv`

       message[:video_url] = "/record/chrome/#{video_file_name}" if params[:chrome]
       message[:video_url] = "/record/firefox/#{video_file_name}" if params[:firefox]

       message[:audio_url] = "/record/chrome/#{audio_file_name}" if params[:chrome]
       message[:audio_url] = "/record/firefox/#{audio_file_name}" if params[:firefox]

       message[:audio_video_url] = "/record/chrome/#{uuid}.mkv" if params[:chrome]
       message[:audio_video_url] = "/record/firefox/#{uuid}.mkv" if params[:firefox]

    My problem is when I try to run this code through Firefox ffmpeg is giving error of codec not found. I am not sure what I am missing. Can any one help ?

  • video to audio without FFMPEG in PHP [on hold]

    8 décembre 2017, par Ammad Khan

    I am developing an application in PHP which is used for video to audio. But I have a shared hosting and I don’t have authority to install ffmpeg if there is solution. Don’t suggest any API with ads I already tried lots of API but they showed ads on click.

  • Host discord.py bot that uses executable [closed]

    14 novembre 2024, par Colton Eimas

    I am coding a discord.py music bot and I am going to have to use ffmpeg, which is an executable, how do I go about hosting the discord.py bot with the executable online, free is prefered but not necessary