
Recherche avancée
Autres articles (54)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
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 (...)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (4977)
-
There was an error with the AJAX request. XML/Json format is bad in whatsapp api
11 janvier 2017, par Mohamed MareeI tried using the whatsapp API https://github.com/mgp25/Chat-API/wiki/Dependencies
I am using PHP 5.6.15 and I installed precompiled extension :
PHP Protobuf and curve25519 PHP but it does not appear in phpinfo(). I installed ffmpeg from here http://ukphpdeveloper.blogspot.com.eg/2012/08/how-to-install-ffmpeg-in-xampp.htmt but it didn’t appear in phpinfo() as installed. I have my whatsapp password and username but when I try to execute/../whatsapp/Chat-API-master/examples/whatsapp.php
shows an error
Error : There was an error with the AJAX request. XML/Json format is bad.
-
Compile ffmpeg on Ubuntu 13.10 with libfdk_aac
26 février 2014, par nitsujI tried this guide, but I have an error that permission is denied when I try to run a script from PHP using exec(). I think that this is because ffmpeg is in /root.
How can I install this where my PHP script can access it ?
-
AWS ffmpeg-lambda-layer and concat protocol (Node.js)
25 février 2021, par portikI am trying to concatenate two .mp3 files using ffmpeg lambda-layer. I have what I think is the correct command, but I struggle to represent it in code so that it is formatted correctly for the lambda layer. Here is a piece of code that I am struggling to get right :


spawnSync(
 '/opt/ffmpeg/ffmpeg',
 [
 '-i',
 '"concat:/tmp/pt1.mp3|/tmp/pt2.mp3"',
 '-acodec',
 'copy',
 `/tmp/${fileName}`
 ],
 { stdio: 'inherit' }
)



The error I'm getting :
"concat:/tmp/pt1.mp3|/tmp/pt2.mp3": No such file or directory
.

I tried to list files in
/tmp/
folder - both files listed in the input are there, not sure why lambda layer can't find them.

Similar question : https://lists.ffmpeg.org/pipermail/ffmpeg-user/2019-December/046299.html. Ffmpeg concatenate protocol documentation : https://trac.ffmpeg.org/wiki/Concatenate#protocol.


Thanks in advance !