
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (100)
-
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 (...) -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
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 (...)
Sur d’autres sites (11977)
-
Removing the middle man for AMD/CommonJS loaders
15 avril 2014, par JamesMGreeneRemoving the middle man for AMD/CommonJS loaders
Also added a bit of XSS hardening to the SWF by verifying that `ExternalInterface.objectID` matches the expected value.
Fixes #388.
-
How can I concatenate two mp3 files with different bit rates
31 décembre 2012, par ScottI have FFmpeg installed on my linux web server. When I execute the following code, I have intermittent results.
I think I have figured out that the MP3s do not compile when they have different bitrates.
exec ('cat '. $pair['source_file'] . ' ' . $pair['translated_word_file'] . '>' . $temp_mp3);
I might have found some articles online that reference taking them apart and then bundling them back together at a consistent bitrates.
I have confirmed that this won't really work with basic "cat" function and that "sox" can be used IF they have the same sample rate.
The issue now becomes "What is the best way to get them to the same sample rate ?"
-
How do I batch convert files using ffmpeg ?
8 octobre 2018, par user8578415I want to convert multiple .mp4 files to .mp3 using ffmpeg. Here is what I came up with :
cd (the folder I want to use)
set counter = 1
for /r %%file in (*) (
ffmpeg %%file -i "Track %counter%.mp3"
set counter = counter + 1
)But it didn’t work. I’m guessing I made some basic syntax errors, but I can’t figure out what. What did I do wrong ?