
Recherche avancée
Autres articles (65)
-
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users.
Sur d’autres sites (4035)
-
Runtime.getRuntime().exec() is not running the ffmpeg command on centos
23 décembre 2013, par Karn_wayI am doing as below on centos machine
String fileName = "ffmpeg -i file:///home/xyz %d.png";
Runtime.getRuntime().exec(fileName);xyz is mp4 file and i want that to create number of different Image frames
when i am running by java application as above it is not working however if i try to do so directly on terminal it is working, please suggest as what might be wrong ?
-
Runtime.getRuntime().exec() is not running the ffmpeg command on centos
19 juin 2018, par Karn_wayI am doing as below on centos machine
String fileName = "ffmpeg -i file:///home/xyz %d.png";
Runtime.getRuntime().exec(fileName);xyz is mp4 file and i want that to create number of different Image frames
when i am running by java application as above it is not working however if i try to do so directly on terminal it is working, please suggest as what might be wrong ?
-
list txt file of ffmpeg concat demuxer
6 septembre 2018, par Sinan GülerI wanted to concat 10 files of mp4 of the same format/size/bitrate....
I had my files and the txt file under the same directory :Macbook Pro>Macintosh HD>Users>my username>downloads
The txt file I created looks like this :
https://i.imgur.com/LP7HgSS.jpg
I entered the following command in terminal :ffmpeg -f concat -i mylist.txt -c copy output
but always got the same result : no such directory
Maybe somebody could help point out my mistakes, appreciated !