
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (105)
-
Publier sur MédiaSpip
13 juin 2013Puis-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 -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (9643)
-
fail to play audio mp2.mxf I get : "failed to find absolute offset of xxxxxx in BodySID 1 - partial file ?"
29 octobre 2018, par livioI have a audio file Op1 Atom From Interplay.
this is the link :
https://drive.google.com/open?id=1XB_marJHwHDbK-KJfLcPj6ryQjyIwjo0
when I try to convert it ffmpeg convert only first 16 minuts and then goes wrong with : "failed to find absolute offset of xxxxxx in BodySID 1 - partial file ?"
Only potplayer can play it in whole duration, 2hAny help is appreciated
-
Android ffmpeg lib has no runnable permission
30 mai 2014, par pelikenI have an app that works with
ffmpeg
library. There are free and full version. Both version
works fine, but after upload them to google play and then install from it full version begin says"java.io.IOException: Error running exec() Working Directory: null"
when I try to useffmpeg
.
I root my device to check libraries (libffmpeg.so
) in app folder and I found that in free version library has
-rwxr-xr-x
permission that is normal but full version library has-rw-r--r--
permission that is read only.
If I install app without google play from myapk
’s all works fine. -
ffmpeg how to copy one frame for certain duration
19 août 2018, par user889030Am trying to add image Overlay to video it specific duration for specific time period for which i want that video frame to be copied for specific time so that video feels like stationary and image overlay have animated effect on that specific frame .
ffmpeg -y -i small.mp4 -i google.png -filter_complex "overlay=enable='between=(t,1,4)':x=30+t*28:y=50" output.mp4
the above command insert google.png to video small.mp4 between 1 to 4 sec it x=30 and y =50 where x is added with t * 28 , which create 28 pixel shift it x-axis
currently am using this command which works ok but the problem is i do no know how to copy the frame for certain duration so that image overlay have animation effect on it