
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (22)
-
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) (...)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (5520)
-
ffmpeg : Perform filter at only 1 audio stream, recoding other stream
7 mars 2023, par lhksoftI've got a mp4 video file with 2 audio streams. Both at e-ac3. I want the first stream recode to ac3, the other to aac. If I perform a filter for the 2nd stream, it seems ffmpeg performs it at both streams, but the first stream should be left alone - only recoded to ac3


I use following in a cmd file to batch it at my videos :


set tstLen=
rem set tstLen=-to 180

set audParam=-ac 2 -af "aresample=matrix_encoding=dplii,loudnorm=I=-16:LRA=11:TP=-1.5" -ar 48000 -c:a libfdk_aac -b:a 192k
%pathToFFMPeG% -hide_banner -y %tstLen% -i %1 -map 0:a:1 %audParam% "Y:\_\ToDo\%~n1.m4a"

set audParam=-c:a:0 ac3 -b:a:0 448k -c:a:1 copy
set audDefault=-disposition:a:0 default -disposition:a:1 none
%pathToFFMPeG% -hide_banner -y %tstLen% -i %1 -i "Y:\_\ToDo\%~n1.m4a" -map 0:v -map 0:a:0 -map 1 -c:v copy %audParam% %audDefault% "Y:\_\ToDo\%~nx1"



Currently I need to create a m4a file containing only the stream I want it to be in aac, afterwards I encode the mp4 where the 1st stream is encoded to ac3 and injecting the m4a into it. The filter also will do a normalisation of the audio, and I don't want it to perform at the 1st audio stream.


Is there a way to perform these tasks in 1 command, so I don't have to first create a m4a ?


I tried with following code :


set tstLen=
rem set tstLen=-to 180

set audParam=-c:a:0 ac3 -b:a:0 448k -ac:a:1 2 -af:a:1 "aresample=matrix_encoding=dplii,loudnorm=I=-16:LRA=11:TP=-1.5" -ar:a:1 48000 -c:a:1 libfdk_aac -b:a:1 192k
set audDefault=-disposition:a:0 default -disposition:a:1 none
%pathToFFMPeG% -hide_banner -y %tstLen% -i %1 -map 0 -c:v copy %audParam% %audDefault% "Y:\_\ToDo\%~nx1"



But with this code also the first stream gets normalised and even the "dolby pro logic II" resample filter will be performed at the 1st stream, which it should't.


NB : the %tstLen% code is for making a test of about 3 minutes to see if the result is what I wants it to be, while performing the filter in the 1st task can take some time.


-
Convert MJPEG RTP stream to MP4 RTP stream with FFMPEG - how ?
2 février 2019, par ShivanI’m already searching for a solution for several days how to convert an MJPEG rtp stream to MP4 rtp stream.
Already tried something like this :
ffmpeg -i rtsp://192.168.10.8:554/stream1/mobotix.mjpeg -rtsp_transport tcp -f H264 udp://192.168.10.5:8554
ffmpeg then shows me like it’s doing something...
frame= 612 fps= 11 q=25.0 size= 3243kB time=00:00:56.00 bitrate= 474.4kbits/s dup=275 drop=0 speed=0.981x
Then I tried with VLC to open udp ://192.168.10.5:8554
but it opens nothing simply the bar is running left/right forever.Do I need something like Simple RTP-Server (https://github.com/ossrs/srs) and then stream to that ?
Best would be, when ffmpeg could host rtp itself...
-
FFMPEG - windows - MJPEG stream - convert to MP4 and re-stream - C# - newbie [on hold]
27 décembre 2014, par ganeshAm a newbie to work with videos and stuff.
Doing a project with a panasonic IP cam (WV-ns-202A) which will be the source of an MJPEG stream.
I need to Display this content on a ASP.net,C# web app under IIS, as well as store the same in filesystem.
sofar have tried out some ffmpeg/vlc stuff not helping much.
(tried #transcoding to flv and save in local filesystem - success
#transcoding and restream over http - failed
#transcoding with vlc & streaming (sout) - failed
)looks like am lost.
Do i must need a meadia server to stream this or can i manage with ffmpeg itself ?.
one camera to one user, no users more then that at any point of time.Any help appreciated - guidence, sample code, links, c#,
Thanks for your time.