
Recherche avancée
Autres articles (111)
-
Taille des images et des logos définissables
9 février 2011, parDans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...) -
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)
Sur d’autres sites (11236)
-
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 ?"
-
Convert png to mp4
9 septembre 2018, par user3073118I have a lot of png files that I want to convert to mp4 in R.
I used to convert it to .gif using ImageMagick, then converting it using a free online website from .gif to MP4.
library(magick)
system(command = "convert -delay 70 '/Users/Desktop/figures/*.png' '/Users/Desktop/figures/animation.gif'")But the current file size is too big, such that even converting it to .gif takes hours.
Is there a way I can convert it directly from png to mp4 in R ?
I tried to look up ffmpeg but I have a MAC and installing it is a little confusing...
Thanks !
-
ffmpeg - scaling and stacking 2 videos ?
25 mai 2016, par Gambit2007I have 2 inputs and i want to scale, crop and put them on top of each other at the same time. My command should look something like this :
ffmpeg -i input1 -i input2 -filter_complex crop=10000:5000:1000:0,scale=3840:1536 vstack output.mp4
I know i need to use chaining (?) but i tried to look it up online and couldn’t really get it to work.
So what would be the correct syntax the scale and crop both inputs and then put them vertically on top of each other while using ’-filter_complex’ only once ?
Thanks !