
Recherche avancée
Autres articles (101)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (10983)
-
Can't find ffmpeg.exe [on hold]
31 juillet 2017, par Eldar AzulayI want to use ffmpeg for my c# program, so I downloaded it from their website here : https://www.ffmpeg.org/download.html by clicking on the big green button, but in this archive there’s no exe, which I need to run so I can use it.
This is that I see when opening the file I downloaded :
I just want to know how can I get the ffmpeg.exe file.
-
How to use FFMPEG for Mac Apps
9 avril 2015, par Andy HinI’m building a Mac App that requires some features from FFMPEG. I want to package FFMPEG and distribute it along with my app such that it is not a dependency for the end user.
I went here http://www.ffmpeg.org/download.html#build-mac and downloaded the 64-bit static binary. I extracted it using p7zip and I now have these 2 files : https://www.dropbox.com/s/r0frvxdpsr7jfti/Screenshot%202015-04-09%2012.28.25.png?dl=0
How do I include the library in my xcode project ? How do I call the FFMPEG functions ?
Any help appreciated.
-
Zip an audio file In NodeJS with archiver in fly
31 juillet 2018, par dnp1204I use node-youtube-dl to have a stream to download a video and I want to convert it to mp3 using fluent-ffmmpeg. I also want to zip this mp3 audio to send to the client to download it but I cannot figure how to zip the mp3 audio. I find every corner of StackOverflow but I did not find any solution. Please help me ! Thanks
const stream = youtubedl(url);
const videoTitle = await youtube.getVideoTitle(url);
const converter = new ffmpeg({ source: stream });
const zip = archiver('zip');
// This does not work since converter.toFormat('mp3') is not a stream
zip.append(converter.toFormat('mp3'), {
name: `${videoTitle}.${toFormat}`
});
zip.finalize();I really appreciate if you can help me ! Thanks again