
Recherche avancée
Médias (9)
-
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
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (55)
-
Librairies et logiciels spécifiques aux médias
10 décembre 2010, parPour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (9767)
-
Evolution #2275 : [fonctionnalité] : possibilité de déplacer le thread/fil d’un forum d’un article...
28 avril 2014, par Ybbet SPIP -
FFmpeg command-line on Android
29 septembre 2013, par Gonzalo SoleraI´m trying to use this ffmpeg command line on Android :
ffmpeg -i /sdcard/DCIM/video.mp4 -s 480x320 /sdcard/output.mp4
I have the executable file of ffmpeg (on this path : /data/local/tmp/ffmpeg/ with chmod 751), and as I read, I´m trying to invoke it using :
Runtime.getRuntime().exec("/data/local/tmp/ffmpeg -i /sdcard/DCIM/video.mp4 -s 480x320 /sdcard/output.mp4");
But I´m not getting any result after this calling, so I tried the same command but using the android terminal and I´m sure ffmpeg works because I ´m getting many outputs like video data. But it doesn´t do the action I want, I´m getting this message :
Unable to find a suitable output format for '/sdcard/output.mp4'
I don´t have any idea about what it can be the issue...
Thanks for help !! -
FFmpeg on Android - Unable to find a suitable output format
5 octobre 2013, par Gonzalo SoleraI want to reduce the resolution of a video before edit it, so I´m using ffmpeg on android. I´m using the executable/binary file of ffmpeg and I´m calling my ffmpeg commands like that :
./ffmpeg -i /sdcard/dcim/video.mp4 -s 320x240 -r 10 -y /sdcard/output.mp4
But when I try this command I get this error :
Unable to find a suitable output format for /sdcard/output.mp4
This is the output when I use the adb shell :
The only action I have been able to do is to extract the audio of a video and save it as a mp3 using this command :
./ffmpeg -i /sdcard/dcim/video.mp4 -y /sdcard/output.mp3
That works well but this is the only action I can do...
Any idea of why I can´t convert a video ? (I can´t copy it too) Thanks !!