Recherche avancée

Médias (0)

Mot : - Tags -/page unique

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (25)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (5396)

  • FFMPEG compiling on heroku

    17 juillet 2013, par Jan

    I have a Rails app running in heroku.

    I wanna watermark an original AUDIO-file with another AUDIO-file through a merging/mixing (amerge or amix) filter. Also fades and looping should work.

    FFMPEG must be compiled for this feature to run on heroku.
    My steps I got from this GIST which uses Vuclan

    https://gist.github.com/liufengyun/5055354

    Locally I use the following term to convert with Carrierwave which is an uploader :

    "-i Original.aiff -i public/watermark/#{ENV['WATERMARK_FILENAME']}.aiff -loop 1 -filter_complex '[1]afade=t=in:ss=0:d=1[4];[4]afade=t=out:st=#{self.evaluate_length-2}:d=2[5];[5][0]amix=duration=shortest[out]' -map [out]"

    This works with the ffmpeg built in on my mac.

    My compiled version for heroku does contain amerge, amix and the libavformat library.

    This is the log which I got from heroku when I go to my upload form and uplaod a file :
    (all this works, but only locally).

    Started POST "/sounds" for 84.113.97.32 at 2013-07-15 21:14:33 +0000
    2013-07-15T21:14:33.175631+00:00 app[web.1]: Running transcoding...
    2013-07-15T21:14:33.175631+00:00 app[web.1]: ffmpeg -y -i /tmp/sounds/1373922873-2-5714/watermark_loop-95.aiff -i public/watermark/1khz.aiff -loop 1 -filter_complex '[1]afade=t=in:ss=0:d=1[4];[4]afade=t=out:st=-2.0:d=2[5];[5][0]amix=duration=shortest[out]' -map [out] /tmp/sounds/1373922873-2-5714/watermark_loop-95.aiff
    2013-07-15T21:14:33.175631+00:00 app[web.1]:
    2013-07-15T21:14:33.241221+00:00 app[web.1]: Failed encoding...
    2013-07-15T21:14:33.241221+00:00 app[web.1]: ffmpeg -y -i /tmp/sounds/1373922873-2-5714/watermark_loop-95.aiff -i public/watermark/1khz.aiff -loop 1 -filter_complex '[1]afade=t=in:ss=0:d=1[4];[4]afade=t=out:st=-2.0:d=2[5];[5][0]amix=duration=shortest[out]' -map [out] /tmp/sounds/1373922873-2-5714/watermark_loop-95.aiff
    2013-07-15T21:14:33.241221+00:00 app[web.1]:
    2013-07-15T21:14:33.241221+00:00 app[web.1]: ffmpeg: error while loading shared libraries: libavformat.so.54: cannot open shared object file: No such file or directory
    2013-07-15T21:14:33.241221+00:00 app[web.1]:
    2013-07-15T21:14:33.241221+00:00 app[web.1]: Errors: encoded file is invalid.
    2013-07-15T21:14:33.241221+00:00 app[web.1]:
    2013-07-15T21:14:33.277487+00:00 app[web.1]:
    2013-07-15T21:14:33.277487+00:00 app[web.1]: FFMPEG::Error (Failed encoding.Errors: encoded file is invalid. Full output: ffmpeg: error while loading shared libraries: libavformat.so.54: cannot open shared object file: No such file or directory
    2013-07-15T21:14:33.277487+00:00 app[web.1]: ):
    2013-07-15T21:14:33.277487+00:00 app[web.1]:   app/uploaders/sound_uploader.rb:39:in `watermarking'
    2013-07-15T21:14:33.277487+00:00 app[web.1]:

    It's my 6th attempt to compile, get ffmpeg running correctly and watermarking my sounds on heroku.

    Please help me out of this neverending story.

  • ffmpeg and php using ajax javascript

    16 juillet 2014, par user3789242

    I want to make use of ffmpeg for converting an audio file from wav to pcm.upon searching I know that there is a command line to be executed in the php form,and that I need an ajax to execute that command line.but I don’t know what to write in the ajax form nor in the php page.I only know that this is the command line used to convert from wav to pcm

    ffmpeg -i file.wav -f s16be -ar 8000 -acodec pcm_s16be file.raw

    can please somebody help me build my ffmpeg php file and its ajax.thank you in advance.note that i’m very new in ffmpeg

  • FFMPEG Aspect Ratio HTML5 Video

    2 juillet 2014, par PSU_Kardi

    Currently have a bunch of still images, sized : 352:240.

    I use the standard ffmpeg on the files and create an mp4 or an ogv dependent on my situation. However, when I open the video file in videoJS it’s being forced into a 4:3 aspect ratio so the image is not in it’s true form.

    Is there an additional command I can tail onto the ffmpeg to keep the video size correctly or the ratio at a 1:1 ?