Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (45)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (6248)

  • Revision e0ec61187e : Merge "Removing txfrm_block_to_raster_xy() call from extend_for_intra()."

    22 novembre 2013, par Dmitry Kovalev

    Changed Paths :
     Modify /vp9/common/vp9_blockd.h


     Modify /vp9/decoder/vp9_decodeframe.c


     Modify /vp9/encoder/vp9_encodemb.c



    Merge "Removing txfrm_block_to_raster_xy() call from extend_for_intra()."

  • Revision 94d4add1f7 : Replacing raster_block with block in the encoder. We only used "ib" to call get

    12 novembre 2013, par Dmitry Kovalev

    Changed Paths :
     Modify /vp9/encoder/vp9_encodemb.c



    Replacing raster_block with block in the encoder.

    We only used "ib" to call get_scan() function, which in turn calls
    get_tx_type_4x4() function. The latter one only needs block index if
    bsize < BLOCK_8X8 — under that condition raster_block == block.

    Change-Id : I697306a0c3cf937acdd4f5e623d4367c5acc0b2f

  • FFMpeg call from Node.js Results in 127

    27 février 2013, par user2009114

    I am having an issue with running an FFMpeg execution command from a Node.js (actually a Meteor) application. From my application I am trying to run :

    /usr/local/bin/ffmpeg-i,/Users//Documents//public/sample_iTunes.mov,-async,1,-acodec,libmp3lame,-b:a,128k,-vf,scale=min(1280\, iw) :-1,-b:v,1000k,-ar,44100,-ac,2,-vcodec,libx264,-x264opts,level=3.0,-profile:v,baseline,-preset:v,superfast,-threads,0,-flags,-global_header,-map,0,-f,segment,-segment_time,10,-segment_list,stream.m3u8,-segment_format,mpegts,-segment_list_flags,live,stream%05d.ts

    However, I get this :
    Transcoder exited with code 127
    chdir() : No such file or directory

    I am using a modified version of hls-vod module (https://github.com/mifi/hls-vod/). I have already tried changing the permissions of ffmpeg via chmod 777, as well as the /cache folder to which it encodes and the public folder containing the sample.mov. None of this seems to work. I installed FFmpeg using Homebrew so the usr/local/bin/ffmpeg is actually a sym link to usr/local/Cellar/..../ffmpeg. I don't know if this would play a part in it. Or perhaps it is something about Meteor.

    Any help would be much appreciated, thanks !