
Advanced search
Other articles (96)
-
MediaSPIP 0.1 Beta version
25 April 2011, byMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 February 2011, byMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Les tâches Cron régulières de la ferme
1 December 2010, byLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)
On other websites (12683)
-
iPhone recorded videos getting rotated on Windows systems [migrated]
11 March 2013, by SaurabhI am recording videos on iPhone and uploading them to my Linux server. Users can see these videos on website. If users are seeing videos on mac or iDevices the video is looking fine but when users are seeing that video on windows systems these videos are getting rotated.
I am assuming this is because of some apple's flag in the recorded video which Windows systems are not able to read. Can I record videos in some way so they don't get rotated on Windows systems? Or is there any way I can re-encode videos with proper interface orientation using FFmpeg?
I am open to both FFmpeg or iOS way.
-
How to stream live from iphone camera to server using rtsp?
12 September 2014, by Vishal GuptaI am using AVCaptureSession to record a video and audio of user. I am getting real time video and audio streams independently. I am able to encode them using h264 encoder and aac encoder respectively. Now I am not getting how to multiplexing them both and make a stream ? How to send them to specific server url which is protected by userName and Password ? If it can be done using RTMP also then also it’s fine.
I have taken a reference from here! But I am not getting much out from this.
Is there any RTSP library project which can help me ?
I have been struggling in it from a long.
Is there any solution to my problem ?
Thanks in advance.
-
how to configure ffmpeg to transplant to iphone sdk 5.1 simulator and play h264?
19 December 2012, by user1204703I use lastest "ffmpeg-1.0.1" and "ffmpeg-iphone-build",to transplant fffmpeg to iphone sdk 5.1 simulator.
and use the build-i386 script in the "ffmpeg-iphone-build" project . also I add "—enable-decoder=h264" to the "CONFIGURE_OPTIONS".
just this :
CONFIGURE_OPTIONS="--enable-gpl --enable-postproc --enable-swscale --enable-avfilter --disable-asm --enable-cross-compile --enable-decoder=h264"
then execute "./build-i386".
and I also execute below batch :#!/bin/tcsh -f
mkdir universal
mkdir lib
mkdir i386
mv ffmpeg-i386/libavcodec/libavcodec.a i386/
mv ffmpeg-i386/libavdevice/libavdevice.a i386/
mv ffmpeg-i386/libavformat/libavformat.a i386/
mv ffmpeg-i386/libavutil/libavutil.a i386/
mv ffmpeg-i386/libswscale/libswscale.a i386/
rm universal/*.a
lipo -create -arch i386 i386/libavcodec.a -output universal/libavcodec.a
lipo -create -arch i386 i386/libavdevice.a -output universal/libavdevice.a
lipo -create -arch i386 i386/libavformat.a -output universal/libavformat.a
lipo -create -arch i386 i386/libavutil.a -output universal/libavutil.a
lipo -create -arch i386 i386/libswscale.a -output universal/libswscale.a
rm lib/*.a
cp universal/*.a lib/then I use the "iFreameExtractor" demo, modify the video file to "test.h264".
code like :- (void)applicationDidFinishLaunching:(UIApplication *)application {
self.video = [[VideoFrameExtractor alloc] initWithVideo:[Utilities bundlePath:@"test.h264"]];
}then run with IPhone 5.1 Simulator.
but, fail with error:[h264 @ 0x91f1800] max_analyze_duration 5000000 reached at 5019130
[h264 @ 0x91f1800] Estimating duration from bitrate, this may be inaccurate
[swscaler @ 0x9203600] No accelerated colorspace conversion found from yuv420p to rgb24.
2012-12-19 20:19:54.419 iFrameExtractor[52708:f803] video duration: -9223372036854.775391I think that the reason why it can not play h264 file that when I transplant the fffmpeg to the iphone simulator, and maybe do something wrong with the configure options.
but I do not know how to fix it.Can you show the correct configure or other advices?
Thanks for your reply??
I am going to crash.