
Advanced search
Other articles (81)
-
MediaSPIP v0.2
21 June 2013, byMediaSPIP 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 (...) -
Le profil des utilisateurs
12 April 2011, byChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
MediaSPIP version 0.1 Beta
16 April 2011, byMediaSPIP 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 (...)
On other websites (8760)
-
How to change sample rate in FFMPEG
23 December 2016, by John_DI use FFMPEG since few moments now and after asking for help here a first time about that, i was able to discover this command line that i use since then, for the conversion of .MP4 video to .FLV :
ffmpeg -i namefile.mp4 -c:v libx264 -crf 19 destinationfile.flv
.The results was simply amazing ! Perfect video and a lot less space needed. But i’ve try this same line for a new video and didn’t work.
This is what appears to me :
[libmp3lame @ 03eaf5a0] flv does not support that sample rate, choose from (44100, 22050, 11025).
After that, i’ve try theses commands lines
ffmpeg -i in.mp4 -c:v libx264 -b:v 500k -c:a copy out.flv
ffmpeg -i in.mp4 -c:v libx264 -ar 22050 -crf 19 out.flvWithout succes. So right now i just dont know what to do else to be able to convert this MP4 file to a FLV one, who is smaller in size and keep a perfect image, just like the others conversions made with the first code line before.
Thanks for your help !
-
FFmpeg command to loop an audio starting from a sample twice and add a fade out
27 June 2022, by Victor LopesI have some audio files and I want to use FFmpeg to loop them twice, but starting from a given sample (I have the sample numbers), and add a 5 seconds fade-out at the end. The output has to be a video: a static .png on the same folder with the audio playing on top of it (copying the same audio codec to preserve the quality).


For example, for this input audio I am supposed to get this output video. Here I used Audacity to loop and fade the audio starting from the sample 43190, and the following FFmpeg command to add the image to it:


ffmpeg -r 1 -loop 1 -i "Sonic 3 Tile.png" -i "Angel Island Zone Act 1 - LOOP.ogg" -acodec copy -r 1 -shortest -vf scale=1280:1280 "Angel Island Zone Act 1.mkv"



The thing is, I want to be able to do it all at once, using FFmpeg to loop and fade instead of Audacity. Is it possible? If so, what command should I use? Just a reminder, the audio has to be looped twice.


-
avcodec/rka: add u8 sample format support
13 February 2023, by Paul B Mahol