
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (101)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
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 (7361)
-
How to trim/ cut a video file Android
15 avril 2015, par Huy Duong TuMy application is to capture a video and cut it with only 6s length to upload it onto the server. After searching for video handling library in Android, I found the library guardianproject android-ffmpeg-java
But there are no API documentation about it.
Please solve me how to cut a video with this library. Thanks in advance. -
FFMPEG says file does not exist, but, it exists
11 décembre 2013, par cmwI'm using FFMPEG via the streamio-FFMPEG Rails gem – https://github.com/streamio/streamio-ffmpeg
For some reason, when trying to transcode a video file (that does really exist), FFMPEG says the file does not exist.
Here's some output from the Rails console, demonstrating my headache :
1.9.3p125 :001 > File.exist?("/Applications/MAMP/htdocs/video-app/public/uploads/tmp/20131208-1416-1234-0984/videotest.mp4")
=> true
1.9.3p125 :002 > FFMPEG::Movie.new("/Applications/MAMP/htdocs/video-app/public/uploads/tmp/20131208-1416-1234-0984/videotest.mp4")
Errno::ENOENT: No such file or directory - ffmpeg -i /Applications/MAMP/htdocs/video-app/public/uploads/tmp/20131208-1416-1234-0984/videotest.mp4
from /Users/my-comp/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/open3.rb:202:in `spawn'
from /Users/my-comp/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/open3.rb:202:in `popen_run'
from /Users/my-comp/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/open3.rb:90:in `popen3'
from /Users/my-comp/.rvm/gems/ruby-1.9.3-p125@video-app/gems/streamio-ffmpeg-1.0.0/lib/ffmpeg/movie.rb:17:in `initialize'
from (irb):2:in `new'
from (irb):2
from /Users/my-comp/.rvm/gems/ruby-1.9.3-p125@video-app/gems/railties-3.2.8/lib/rails/commands/console.rb:47:in `start'
from /Users/my-comp/.rvm/gems/ruby-1.9.3-p125@video-app/gems/railties-3.2.8/lib/rails/commands/console.rb:8:in `start'
from /Users/my-comp/.rvm/gems/ruby-1.9.3-p125@video-app/gems/railties-3.2.8/lib/rails/commands.rb:41:in `<top> '
from script/rails:6:in `require'
from script/rails:6:in `<main>'
1.9.3p125 :003 >
</main></top>Any help would be appreciated.
-
ffmpeg merge video and audio result empty file [on hold]
10 février 2015, par ahmed-ibrahemI have empty file when try to merge
mp4 & mp3
tomp4
Code : ( not working )
ffmpeg -i video.mp4 -i audio.mp3 output.mp4
Code : ( working )
ffmpeg -i video.mp4 -i audio.mp3 -vcodec copy -acodec copy output.mp4
but using above working command instead of mp3 when i try wav result empty file only
Note : This is where i got the
<a href="https://github.com/JayH5/android-ffmpeg-cmdline" rel="nofollow">ffmpeg for android</a>
Can any one help me to make it merge the
audio.wav
with thevideo.mp4
?