Recherche avancée

Médias (91)

Autres articles (43)

  • 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

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (5655)

  • how to convert mp4 using ffmpeg for ios [on hold]

    23 août 2015, par Khaled Hayek

    I have problem to use ffmpeg for windows to convert mp4 file so that it can be played on iphone

       ffmpeg -i input.mkv -c:v libx264 -crf 28 -preset veryslow -tune fastdecode \
     -profile:v baseline -level 3.0 -movflags +faststart -c:a libfdk_aac -ac 2 \
     -ar 44100 -ab 64k -threads 0 -f mp4 output.mp4

    but still not working, any help please

  • Encoding SWF to video with Melt

    17 août 2015, par RocketR

    I’m doing a project which requires converting SWF movies to H.264 video on server-side, to be able to play them both in Flash player and on iPhone/iPad. And I really got stuck.

    I’m using Melt from http://www.mltframework.org/ and this is my command-line :

    melt movie.swf -consumer avformat:video.mp4 r=30 s=640x360 f=mp4 acodec=aac ab=128k ar=48000 vcodec=libx264 b=1000k an=1

    It does play in Flash player, but fails to play on iDevices. I googled for iPhone video requirements and it seems my video files do satisfy them(frame size, framerate and bitrate). What settings should I change to make it play ?

  • Convert .mov (ios7) to format playable on android 4.2.1

    29 novembre 2013, par user3048419

    I have got an iphone with ios7 and an android with 4.2.1. I want to take a video on the iphone and then play it later on the android. I am converting (via Ubuntu 13.04) the .mov video from the iphone into an mp4 format via the following (taken from Encoding video for Android) :

    avconv -i <input />.MOV -vcodec libx264 -profile:v baseline -b 500k -r 30 -vf "setsar=1:1" -acodec libvo_aacenc -ac 2 -ar 44100 -ab 128k <output>.mp4
    </output>

    Unfortunately <output>.mp4</output> does not seem to play on the android phone (android 4.2.1). Does anyone have any suggestions on how I can convert the .mov file into a format playable on android ?