
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (91)
-
Modifier la date de publication
21 juin 2013, parComment changer la date de publication d’un média ?
Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
Dans la rubrique "Champs à ajouter, cocher "Date de publication "
Cliquer en bas de la page sur Enregistrer -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP 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" (...)
Sur d’autres sites (6055)
-
Video editor for android - FFmpeg won't compile on windows ?
4 décembre 2014, par ZoeIm trying to make a video editor for android (I’ve never made an android app before)
After searching for libraries to use I came across FFmpeg but I’m having trouble getting it to compile on Windows 7.
I’m currently using Eclipse and have the most recent android SDK and ndk.
I’ve been trying to follow tutorials on the internet including roman10’s (http://www.roman10.net/how-to-build-ffmpeg-with-ndk-r9/) but they all seem specific to Linux.
Yesterday, I thought I’d give up and just dual boot Ubuntu on my windows laptop but of course that was messing up too. I shrank my partition and booted Ubuntu of a USB but the installer was detecting there is no OS on my laptop and not giving me the option to install it alongside windows 7.
So, can FFmpeg be compiled for android on windows ? Or is there another library I could use to make a video editor that can ?
Or should I just persist with dual booting ubuntu ?
Thanks
-
FFmpeg mp4 encoder for android html
24 mai 2017, par Dell WatsonHello I’m trying to put video .mp4 auto-captured by my webcam using ffmpeg into HTML, and then activated my localhost so my android could see it.
the video in my android WAS ABLE to play BUT it’s
all white
and pixels error, so it’s a fail.I thought because android has difference surface because in my desktop it runs perfectly, then i keep searching and trying with ogv/webm.
In the end, I just use a downloaded mp4 and it runs perfectly tho.
now I think the problem was coming from my mp4-webcam created by ffmpeg(run in cmd)I compare a mp4-webcam vs mp4-downloaded
5sec vs 1min,
Data-rate : 16477kbps vs 613kbps
framerate : 30frm/s vs 23frm/s
size : 9MB vs 5 MB
even tho it’s only 5sec video by webcam, it still has larger data than a 1min video-downloaded maybe it was because without conversion.
but the question, is that the reason of the problem ? android-html(google chrome) wasn’t able to display and make a dead pixels since in desktop it runs. it shouldn’t be the problem right ?
I really need to transfer webcam-record into android-surface (my web-app).
I have no idea to fix it, any advice ? I’ve been searching a lot. Maybe there was another problem I do not know yet.
EDIT : my cmd ffmpeg run : ffmpeg -y -f v4l2 -i /dev/video1 -codec:v libx264 -qp 0 -t 0:00:05 hss.mp4
EDIT 2 : my 2nd thought because ffmpeg encoder that I used(libx264) isnot support for android. but i still no idea
-
Integrate the FFMPEG in android
12 juillet 2016, par John SmithI’m trying to integrate FFMPEG into my android app(I am trying to implement a video cropper), I was following the steps from an Kevin Law’s answer here :
I have downloaded the android ndk.
In the step two it says I should modify the package name which I did.
It also says that I should modify the flags for codecs I’m interested in.
So my first question is- Which codecs would I need to work with mp4, 3gp and maybe avi files in android ?
I tried to leave everything by default and build with build.sh script but it fails on the line where I have changed the package name
FLAGS="$FLAGS --soname-prefix=/data/data/cropit.dassem.com.videocropper/lib/"
with
Unknown option "--soname-prefix=/data/data/cropit.dassem.com.videocropper/lib/".
See ./configure --help for available options.- Now is there anyone familiar with FFMPEG integration and sees something that I have missed ?
I do not want to use the pre-compiled FFMPEG libraries because they are really big, the ones I found take around 15 MB of space. I’ve read somewhere that if i’ll compile and integrate FFMPEG myself it will be much smaller.
- Are there any easier ways of cropping video on android ?
Maybe there is no point in dealing with this, which proves quite a pain I must admit, and there is an easier solution available ?