
Recherche avancée
Autres articles (40)
-
Taille des images et des logos définissables
9 février 2011, parDans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...) -
Configuration spécifique d’Apache
4 février 2011, parModules spécifiques
Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
Création d’un (...) -
Encodage et transformation en formats lisibles sur Internet
10 avril 2011MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)
Sur d’autres sites (3900)
-
Open-source segmenter for HTTP streaming
28 septembre 2012, par PubliccertSo, I'm trying to build a segmenter for Linux.
There are a few linked in this thread : HTTP Live Streaming, FFMPEG & FFSERVER, and iPhone OS 3
However, the only functional one seems to be for Windows. I've tried following this guide and the svn link : http://www.ioncannon.net/programming/452/iphone-http-streaming-with-ffmpeg-and-an-open-source-segmenter/ with no success either. I can't get that segmenter to work either.
Does any know of a good, stable, opensource segmenter. We're hoping to feed our rtmp(via Red5) stream into ffmpeg and crank it out over http, if that matters to anyone. Thanks !
-
Convert .mov (ios7) to format playable on android 4.2.1
29 novembre 2013, par user3048419I 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 ? -
How do I upscale an iOS App Preview video to 1080 x 1920 ?
30 août 2016, par Benjamin ThielI just captured a video of my new app running on an iPhone 6 using QuickTime Player and a Lightning cable. Afterwards I created an App Preview project in iMovie, exported it and could successfully upload it to iTunes Connect.
Apple requires developers to upload App Previews in different resolutions dependent on screen size, namely :
- iPhone 5(S) : 1080 x 1920 or 640 x 1136
- iPhone 6 : 750 x 1334 (what I have)
- iPhone 6+ : 1080 x 1920
Obviously, 1080 x 1920 is killing two birds with one stone. I know that upscaling isn’t the perfect solution, but it’s meeting my needs. Since I don’t own a 6+, another recording session won’t do the trick.
Unfortunately, iTunes Connect is extremely picky about what to accept. Here’s what I tried, to no avail :
- Handbrake, iMovie, QuickTime do not support upscaling
- MPEG Streamclip
ffmpeg -i input.mp4 -acodec copy -vf scale=1080:1920 output.mp4
Strangely enough, iTunes Connect keeps complaining about the wrong resolution when I try to upload the output.mp4 of ffmpeg.