Recherche avancée

Médias (91)

Autres articles (102)

  • 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" (...)

  • 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 (9220)

  • Generate image from a swf file issue

    24 avril 2013, par Rouge

    I am trying to generate first frame of a swf as a thumbnail image so the user can see it before they open the swf file.

    1.Using FFMpeg

    ffmpeg -i movie.swf -f image2 -vcodec png movie%d.png

    using command line with ffmpeg to generate images. the above command will
    give me errors saying

    [swf @ 0x17937a0] Compressed SWF format not supported
    

    2.Using swftools

    Their website provide a tar file to download however, I only have the command line access in the server so I won't be able to install the tools.

    I need to use server side technology because I have hundreds of swf files.

  • php exec command to encode video to h.264 mp4 file using ffmpeg and x264 tool on ubuntu

    7 avril 2012, par matt

    I have a dedicated server with ffmpeg and the x264 tool installed. I can encode any video and works really well. But now I need to encode videos to play on iPads, iPhones... the format needs to be mp4 and using the h.264 codec.

    I'm using PHP to enconde videos, I'm just looking for an exec command to do the above encoding.
    what I'm using for the other videos is :

    exec("ffmpeg -i movie.mov -sameq -acodec mp3 -ar 22050 -ab 32 -f flv -s 1280x720 movie.flv");

    I just need something similar to that for encoding mp4
    by the way, I can't use libx264. I can only use the x264 tool

    Cheers

  • php exec command to encode video to h.264 mp4 file using ffmpeg and x264 tool on ubuntu

    7 avril 2012, par matt

    I have a dedicated server with ffmpeg and the x264 tool installed. I can encode any video and works really well. But now I need to encode videos to play on iPads, iPhones... the format needs to be mp4 and using the h.264 codec.

    I'm using PHP to enconde videos, I'm just looking for an exec command to do the above encoding.
    what I'm using for the other videos is :

    exec("ffmpeg -i movie.mov -sameq -acodec mp3 -ar 22050 -ab 32 -f flv -s 1280x720 movie.flv");

    I just need something similar to that for encoding mp4
    by the way, I can't use libx264. I can only use the x264 tool

    Cheers