Recherche avancée

Médias (1)

Mot : - Tags -/ipad

Autres articles (109)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

  • 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.

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

Sur d’autres sites (9347)

  • imageresizing.net : remote, extensionless files

    21 janvier 2015, par cwnchckn

    I am trying to set up a thumbnailing service supporting the most common image formats as well as PDF and some video formats. The storage backend is a simple HTTP server. The files, however, are stored using synthetic names equal to their crytographic hash and do not have extensions.

    I have a working system running ImageResizer as a HttpModule, loading the files using RemoteReader. It is set up to skip file type checks. However, I need to find a way to specify the exact decoder to use (such as with WIC, that supports &decode=wic in the request arguments), for instance &decoder=pdf or &decoder=ffmpeg. I suppose parsing the request arguments in PostAuthorizeRequestStart and extracting the decoder parameter value would be a good place to start, but I have no idea what to do next, as this is my first time ever touching Microsoft tech and the ASP.NET app anatomy is not immediately obvious.

    I would appreciate any hints, thanks

  • ffmpeg convert 4K file to 1080p mp4 file

    16 septembre 2015, par Hüseyin GÖZE

    i’m using ffmpeg to converting video in windows service, when i’m trying to converting 4K video to 1080p ffmpeg returns error like this :

    libvo_aacenc Stream mapping : Stream #0:0 -> #0:0 (h264 (native) ->
    h264 (libx264)) Stream #0:2 -> #0:1 (ac3 (native) -> aac
    (libvo_aacenc)) Error while opening encoder for output stream #0:1 -
    maybe incorrect parameters such as bit_rate, rate, width or height

    my ffmpeg convert command like this :

    ffmpeg -i 4k2.mp4 -vf scale=1920:1080 -threads 3 4k2_1080.mp4

    what’s wrong with this ?

  • FFMPEG & JNI : How to decode from URL

    24 avril 2013, par Hafedh Haouala

    I'm trying to make an android application that uses the FFMPEG for decoding videos that are not supported by Android ( not on all the devices at least ) : MPEG-TS & h264 Main Profile.
    So, until now, I was able to use FFMPEG from JNI to decode some local video with the above specs, but my goal is to make the FFMPEG decode data from a streaming URL (http://127.0.0.1:1666/) on which I will send buffers from an android service (for certain reasons)

    So, basically, I have two questions :

    • how I will be able to do the decoding from a streaming URL as I couldn't find any good example ?

    • when decoding my local MPEG-TS video, I've noticed that the playback speed is quite slow, and it happen that the video freezes for a while, even the Dolphin Player (based on FFMPEG) has the same behavior, and I don't know if is there some solution for this. Any suggestion ?

    I appreciate your help.