
Recherche avancée
Autres articles (63)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang 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. -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)
Sur d’autres sites (6690)
-
iOS Libavcodec - Trim and convert a video
14 juillet 2015, par AnujAroshAIn my iOS project, I am trying to take an .mp4 video file, cut out a small clip in the middle of the file, and convert the output to .mov file. I am using libavcodec to do this.
I built the FFmpeg libraries for iOS using this script and added to my project.
The code I am using to trim and convert the video file is this.
The issues with final output of the file are :
-
When I copy the output from the iPhone to my mac, the video meta data for duration and video dimensions are blank. If I do the same for the original, I get the video length and dimensions correctly. I must not be creating the video meta data on the new video correctly.
-
The frame rate on the outputted video appears to be wrong. I expect to see e.g. 250 frames over 10 seconds (25fps), but instead I see 250 frames over 4 seconds, then only the last frame for the remaining 6 seconds.
-
The code should seek to 100s in the video before starting trimming. Instead, the code appears to crop the video starting at the beginning.
-
-
how to encode mp4 from movie content for wowza streaming ?
15 juillet 2014, par lng0415i want to encode to mp4(h.264 codec) from avi,mpg..... for wowza streaming.
encode mp4 using ffmpeg, jave.
encode is success, but wowza streaming is not work on android and iphone OS.
(it’s play successfully on my PC)please help me.
thank you.
ps. i’m sorry. i’m poor at english.
[using jave]
File source = new File("D://temp/20140704_163504.mp4");
File target = new File("D://temp/jave.mp4");
AudioAttributes audio = new AudioAttributes();
audio.setCodec("libmp3lame");
audio.setBitRate(new Integer(64000));
audio.setChannels(new Integer(1));
audio.setSamplingRate(new Integer(22050));
VideoAttributes video = new VideoAttributes();
video.setCodec("h263");
video.setBitRate(new Integer(320000));
video.setFrameRate(new Integer(15));
video.setSize(new VideoSize(400, 300));
EncodingAttributes attrs = new EncodingAttributes();
attrs.setFormat("mp4");
attrs.setAudioAttributes(audio);
attrs.setVideoAttributes(video);
Encoder encoder = new Encoder();
encoder.encode(source, target, attrs); -
FFMpeg video recorder - Android
30 avril 2014, par GaneshI’ve used ffmpeg video recorder for android.
it has used videocodec as MPEG4.
private int videoCodec = avcodec.AV_CODEC_ID_MPEG4;
video is showing android and iphone device. but video not playing on browser only audio playing on browser.
I’ve checked HTML5 video requires MP4 videos with H264 video codec and AAC audio codec
Chrome doesn’t display html5 video but plays audio
I’ve changed videocodec as below
private int videoCodec = avcodec.AV_CODEC_ID_H264;
My question is,
when i use Mpeg4, video croping time is less.
But when i use H264 , video croping time takes more.How to reduce the video croping time when use H264 or anyother videocode support to browser and minimum processing time for video croping.?