
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (81)
-
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (11947)
-
Speed up FFMPEG Mixing Two Audio Files slow
21 septembre 2016, par JeremyI’m working on a FFMPEG command to mix two audio input’s, combine them (layer ontop of each other), adjust their volumes, and print out to an output. On a 99 second input, it takes about 93 seconds to finish processing and on Mobile, that is way to long.
I’ve read that I could possibly use -copy to skip reencoding the files, but am unsure of how to do this. Only one of the files are created by the user, so the second input could just be a copy. I have tried using the different presets, fast, ultrafast, and medium but still there is a time delay.
FFMPEG Command :
http://pastebin.com/b9u4SnxwAny ideas on how to speed this up and reduce processing time ?
EDIT : Here are my Logs from a successful mix of a recording that was 30 seconds long.
http://pastebin.com/WxAYWimi -
ffmpeg convert video slow on android [duplicate]
13 mai 2017, par Nick SunThis question already has an answer here :
-
Fast Video Compression on Android
2 answers
I use ffmpeg to convert video on android device.But it will take long time to convert video. For example, the video’s duration is 60s, but it will take 180s or more time. How Can I speed up it ?
In my project, I import
com.writingminds:FFmpegAndroid:0.3.2
,and the command as below :-y -i /path/to/video.mp4 -strict -2 -vcodec libx264 -preset ultrafast -crf 28 -acodec aac -ar 44100 -ac 2 -b:a 96k -s 320x240 -aspect 16:9 -threads 4 /path/to/convert/video.mp4
-
Fast Video Compression on Android
-
Warning when streaming with vlc and x264 at a slow framerate
24 octobre 2013, par jln611I am using libvlc and libx264 to stream images from a C++ program. It provides libvlc uncompressed images using the get and release callback. Everything seems to work ok at higher framerate (over 12 fps) but when I try slower framerates (from 1 to 10), I got the following warnings :
[030d5c6c] mux_ts mux debug: adjusting rate at 0/500000 (3/0)
[030d5c6c] main mux warning: late buffer for mux input (2127998)
[030d5c6c] mux_ts mux debug: adjusting rate at 0/500000 (3/0)Over 4 fps, I am able to get the stream (for instance with vlc GUI) but under 4 fps, I got nothing, or sometimes a freeze image. The libvlc arguments are the following :
--imem-get=15543672 --imem-release=15538482 --imem-data=0 --imem-codec=RV24 --imem-cookie=aCookie --imem-cat=2 --imem-height=960 --imem-width=1280 --verbose=2 --imem-id=1 --imem-group=1 --imem-fps=2.000000 -vvv --play-and-exit --no-audio --sout=#transcode{vcodec=h264, fps=2.000000, vb=200k,venc=x264{preset=ultrafast}}:standard{access=http,mux=ts,dst=0.0.0.0:8091/video}
Any hints would be appreciated.