
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (36)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...)
Sur d’autres sites (8253)
-
Merge commit ’9d5fed6dc4cccb0689f694112f5026988bebc472’
9 octobre 2014, par Michael Niedermayer -
Wav file duration of Windows media player is not same with ffmpeg
5 août 2020, par jimmy525There is one wav file, if using windows media player open it, its duration is 06:15.
But if using ffmpeg convert it to mp3 or using ffprobe check duration, it shows 06:17.
Of course, other players(like vlc) shows 06:17 too.
What I need to do is, using ffmpeg convert it to mp3 with 06:15 duration.


ffmpeg command :


ffmpeg -i 1.wav -f mp3 out.mp3



Please help me to resolve this problem, Thanks


-
recive klv data from a ffmpeg mulsticast
5 avril 2019, par diegoI am trying to get the klv data from a .mpeg.
I tried this command and it works perfectly :
ffmpeg -i video.mpg -map data-re -codec copy -f data data.klv
Now I would like to open two CMD and transfer it by multicast, how could I do this ? i tried many comands like next ones, but I do not get the same .klv
sender :
ffmpeg -i video.mpeg -c copy -f mpegts udp://239.1.1.1:49410
receiver :
ffmpeg -i udp://239.1.1.1:49410 -map 0 -codec copy -f data data.klv
I am new with ffmpeg and I do not know exactly what I need to change to get exactly whay I get in the first command.
Thanks