
Recherche avancée
Autres articles (29)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
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 -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (4620)
-
ffmpeg not working in other directory same encoder
14 mars 2018, par Moein HosseiniI’m using a script to convert mp3 file to ogg file by libopus codec.
when I use it in my home directory it works using this command :
ffmpeg -i music.mp3 -c libopus out.ogg
but when I’m in this directory :
/home/moein/Desktop/BeatkhorBot/music
the command does not work and gives me this error :
Invalid encoder type 'libopus'
does anyone know how to fix this ?
-
ffmpeg binary for android not working
29 juillet 2014, par Abdul QadirI’ve copied the ffmpeg binary provided here in the
res/raw
folder into my project’s assets folder. Whenever I need to run ffmpeg commands, I copy the binary intodata/data/my-package-name/
and run the following command to check if everything works.Process process = Runtime.getRuntime().exec(ffmpegBinaryFilePath + " -version");
I get the output by logging the stream by
process.getInputStream()
. Everything works as expected. But the binary provided in the project is old (version 0.11.1) and I also need to enable lame library to work with mp3 extension. So I decided to build my own binary. I’ve build using this script and also another script showed here. When I place the build binary into my project’s assets folder. I get no output when I run the code above i.e. the log is empty. I’ve also tried building with this script but it doesn’t create any binary i.e. there is nobin
folder when compilation is finished.I’ve made ndk related changes to these scripts i.e. changed NDK, PLATFORM and PREBUILT variables (I have ndk10 64bit) and changed
--enable-shared --disable-static
to--disable-shared --enable-static
. Also cleared any references to other libraries in the--extra-cflags
and--extra-ldflags
. Do I need to make any more changes ? Any help would be appreciated !!EDIT :
here’s the log file of my latest build
http://justpaste.it/gfeb -
ffmpeg command to merge two mp4 file is not working
27 février 2018, par Arpit PagariaHi I am trying to merge two mp4 file using ffmpeg commad. I found below command from somewhere. I have copy this complete command and paste this in cmd. But got error "Error initiaNo such filter : ’\’.Error Initializing complex filters.Invalid argument". Please help me out how to run this command ?
ffmpeg -i GYM_1.mp4 -i Snow_1.mp4 -filter_complex "\
[0:v]setsar=1[0v]; \
[1:v]scale=720:576:force_original_aspect_ratio=decrease,setsar=1,\
pad=720:576:(ow-iw)/2:(oh-ih)/2[1v]; \
[0v][0:a][1v][1:a]concat=n=2:v=1:a=1[outv][outa] \
" -map "[outv]" -map "[outa]" \
-c:v libx264 -crf 23 \
ffmpeg1.mp4