Recherche avancée

Médias (91)

Autres articles (27)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (6011)

  • avformat/dss : implement seeking

    24 février 2015, par Michael Niedermayer
    avformat/dss : implement seeking
    

    This assumes CBR (which is true for all samples i have)

    Previous version reviewed by : Oleksij Rempel <linux@rempel-privat.de>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/dss.c
  • Play AAC in SoundManager2 won't start

    27 novembre 2012, par sasa

    I converted audio file MP4 to AAC and then want to play that file in SoundManager2. If I use some software for Windows for convert, everying is fine, audio is playing well. But, on server side when MP4 file is converted to AAC using ffmpeg, file is loaded in SM2, but playing is not started.

    I use this command :

    ffmpeg -i in.mp4 out.aac

    Here is SoundManager2 log :

    -- SoundManager 2: HTML5 support tests (/^(probably|maybe)$/i): mp3: true (preferring flash), mp4: true (preferring flash), ogg: true, wav: true -- soundmanager2.js:1156
    -- SoundManager 2 V2.97a.20120916 (AS3/Flash 9) + HTML5 audio, high performance mode, custom (1ms) polling, wmode: transparent, flash debug mode, flashBlock mode -- soundmanager2.js:1156
    soundManager::createMovie(): Trying to load /soundmanager/swf/soundmanager2_flash9_debug.swf soundmanager2.js:1156
    soundManager::initMovie(): Waiting for ExternalInterface call from Flash... soundmanager2.js:1158
    soundManager::externalInterfaceOK() (~0 ms) soundmanager2.js:1158
    soundManager::init() soundmanager2.js:1158
    soundManager: Attempting JS to Flash call... soundmanager2.js:1158
    (Flash): SM2 SWF V2.97a.20120916 (AS3/Flash 9) soundmanager2.js:1158
    Flash security sandbox type: remote soundmanager2.js:1158
    (Flash): JS to/from Flash OK soundmanager2.js:1158
    (Flash): Enabling polling, 1 ms interval soundmanager2.js:1158
    -- SoundManager 2 loaded (OK) -- soundmanager2.js:1156
    soundManager: Firing 1 onready() item soundmanager2.js:1158
    threeSixtyPlayer.init() soundmanager2.js:1158
    threeSixtyPlayer.init(): Found 1 relevant items. soundmanager2.js:1158
    handleClick() soundmanager2.js:1158
    soundManager.createSound(): ui360Sound0 (http://[private url]/out.aac?v=1350309261) soundmanager2.js:1156
    soundManager.createSound(): Enabling usePolicyFile for data access soundmanager2.js:1158
    SMSound() merged options: {
    id: ui360Sound0,
    url: http://[private url]/out.aac?v=1350309261,
    onplay: { pl.removeClass(this._360data.oUIBox,this._360data.className); t... },
    onstop: { pl.removeClass(this._360data.oUIBox,this._360data.className); t... },
    onpause: { pl.removeClass(this._360data.oUIBox,this._360data.className); t... },
    onresume: { pl.removeClass(this._360data.oUIBox,this._360data.className); t... },
    onfinish: { var nextLink; pl.removeClass(this._360data.oUIBox,this._360data... },
    onbufferchange: { if (this.isBuffering) { pl.addClass(this._360data.oUIBox,pl.css... },
    whileloading: { if (this.paused) { self.updatePlaying.apply(this); } }... },
    whileplaying: { self.updatePlaying.apply(this); this._360data.fps++; }... },
    useWaveformData: false,
    useEQData: false,
    usePeakData: true,
    autoLoad: false,
    autoPlay: false,
    loops: 1,
    multiShot: true,
    multiShotEvents: false,
    pan: 0,
    stream: true,
    usePolicyFile: true,
    volume: 50,
    useMovieStar: false,
    isMovieStar: false,
    bufferTime: 3
    } soundmanager2.js:1158
    (Flash): SoundManager2_SMSound_AS3: Got duration: 0, autoPlay: false soundmanager2.js:1158
    SMSound.play(): Attempting to load "ui360Sound0" soundmanager2.js:1156
    SMSound.load(): http://[private url]/out.aac?v=1350309261 soundmanager2.js:1156
    SMSound.play(): "ui360Sound0" is starting to play soundmanager2.js:1158
    fanOut: ui360Sound0: http://[private url]/out.aac?v=1350309261 soundmanager2.js:1158
    (Flash): start (ui360Sound0): 0 soundmanager2.js:1158
    SMSound._onbufferchange(): 1 soundmanager2.js:1158
    SMSound._onbufferchange(): 0 soundmanager2.js:1158
    SMSound._onload(): "ui360Sound0" loaded.

    What can be a problem ?

  • Converting Videos In the Background ROR 3

    2 octobre 2012, par DragonFire353

    I've searched around on google and have come up with only one site that explains how to do this : http://railsonedge.blogspot.com/2009/01/flash-video-tutorial-with-rails-ffmpeg.html?m=0 I'm already using paperclip and already have everything set up with it and like using it better than the way this site is doing it. Is there a way to convert videos in the background while keeping track of the state of it using paperclip ? My Video.rb currently :

    class Video &lt; ActiveRecord::Base
     belongs_to :user
     has_many :comments, dependent: :destroy
     attr_accessible :video, :user_id, :video_file_name, :title, :public, :description, :views

     has_attached_file :video, :styles => {
       :video => { geometry: "800x480>", format: &#39;webm&#39; },
       :thumb => { geometry: "200x200>", format: &#39;png&#39;, time: 3 },
     }, processors: [:ffmpeg], url: "/users/:user_id/videos/:id/:basename_:style.:extension"

     #process_in_background :video #causes death

     validates :video, presence: true
     validates :description, presence: true, length: { minimum: 5, maximum: 100}
     validates :title, presence: true, length: { minimum: 1, maximum: 15 }

     validates_attachment_size :video, less_than: 1.gigabytes
     validates_attachment :video, presence: true

     default_scope order: &#39;created_at DESC&#39;

     Paperclip.interpolates :user_id do |attachment, style|attachment.instance.user_id
     end

     def self.search(search)
       if search
         find(:all, conditions: ["public = &#39;t&#39; AND title LIKE ?", "%#{search}%"], order: "created_at DESC")
       else
         find(:all, conditions: ["public = &#39;t&#39;"], order: "created_at DESC")
       end
     end

     def self.admin_search(search)
       if search
         find(:all, conditions: [&#39;title LIKE ?&#39;, "%#{search}%"], order: "created_at DESC")
       else
         find(:all, order: "created_at DESC")
       end
     end

    end