
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (85)
-
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 (...) -
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. -
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 (16239)
-
fftools/ffprobe : stop calling exit_program()
14 juillet 2023, par Anton Khirnov -
How stop ffmpeg write to log command line strings
18 février 2016, par AlexufoI save mp3 to mp3 via
shell_exec();
and use logs for error controlFFREPORT=file=ffreport%p%t.log:level=16
But if I change
level=16
tolevel=0
every convertion I still get ffreport%p%t.log files with text :
Command line:
ffmpeg -y -i /tmp/php2hmlyt -acodec copy /home/uploads/5607.mp3How stop write to logs useless Command line data ?
-
ffmpeg output file is too large
1er janvier 2016, par David PageI want to burn a subtitle file(.srt) to a mp4 video.My command is :
ffmpeg -i input.mp4 -c:v mpeg4 -q:v 1 -vf subtitles=input.srt out.mp4
It output a video with a good quality,but its size is 1.12GB while the input file is 213MB.
I think the problem is kbps of output file is too high.the bitrate of input file is 568 kb/s but the output file is 3154 kb/s.
So I want to set the kps,now here is my code :
ffmpeg -i input.mp4 -b:v 569k -minrate 568k -maxrate 570k -c:v mpeg4 -q:v 1 -vf subtitles=input.srt out.mp4
Although the output file become smaller(538MB),the video’s quality is awful(Compare with input file)...
So how to make the output file smaller and in good quality ?Thanks.