
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (54)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (4528)
-
How to extract the singer's voice from a song using FFMPEG ?
8 mars 2023, par x27xI tried with this command :


ffmpeg -i song.mp3 -af pan="stereo|c0=c0|c1=-1*c1" -ac 1 karaoke.mp3


But the output was the music without the singer's voice


:) Is this possible with
FFMPEG
?
Is there an alternative ?

-
Unsuccessful streaming webm video with ffserver - dimensions not set
5 juin 2015, par randomuser1I configured ffmpeg and ffserver. Now when I type :
ffmpeg -f dshow -list_devices true -i dummy
I get the list of video/audio devices :
[dshow @ 00000000045db680] DirectShow video devices (some may be both video and
audio devices)
[dshow @ 00000000045db680] "SF Camera"
[dshow @ 00000000045db680] Alternative name "@device_pnp_\\?\usb#vid_04f2&pi
d_b3b4&mi_00#6&194c0297&0&0000#{65e8773d-8f56-11d0-a3b9-00a0c9223196}\global"
[dshow @ 00000000045db680] DirectShow audio devices
[dshow @ 00000000045db680] "Mic in at rear panel (black) (Realtek High Definiti
on Audio)"
[dshow @ 00000000045db680] Alternative name "@device_cm_{33D9A762-90C8-11D0-
BD43-00A0C911CE86}\wave_{AA8D55FB-0563-4978-869B-DD5A00FA5272}"
[dshow @ 00000000045db680] "Microphone (Realtek High Definition Audio)"
[dshow @ 00000000045db680] Alternative name "@device_cm_{33D9A762-90C8-11D0-
BD43-00A0C911CE86}\wave_{84EFC16A-C3AE-4B02-B26A-1E031F10F7C8}"Using that I’m running the ffmpeg command :
ffmpeg -rtbufsize 1500M -f dshow -i video="SF Camera":audio="Microphone (Realtek High Definition Audio)" http://10.172.180.195:8090/feed1.ffm
but all I get is :
Guessed Channel Layout for Input Stream #0.1 : stereo
Input #0, dshow, from 'video=SF Camera:audio=Microphone (Realtek High Definition
Audio)':
Duration: N/A, start: 738173.764000, bitrate: N/A
Stream #0:0: Video: rawvideo (YUY2 / 0x32595559), yuyv422, 640x480, 30 tbr,
10000k tbn, 30 tbc
Stream #0:1: Audio: pcm_s16le, 44100 Hz, 2 channels, s16, 1411 kb/s
http://10.172.180.195:8090/feed1.ffm: Invalid data found when processing inputas the answer from my ffserver. And on the server console I get the following error :
[ffm @ 0x7f90f4000750]dimensions not set
Error writing output header for stream "/feed1.ffm": Invalid argument
10.172.180.109 - - [GET] "/feed1.ffm HTTP/1.1" 200 79and that’s all, ffmpeg stops and returns to command line. Does anyone know what can be the problem here ?
Oh and one more thing that might be helpful - this is my ffserver.conf file :
<stream> # Output stream URL definition
Feed feed1.ffm # Feed from which to receive video
Format webm
# Audio settings
AudioCodec vorbis
AudioBitRate 64 # Audio bitrate
# Video settings
VideoCodec libvpx
VideoSize 720x576 # Video resolution
VideoFrameRate 25 # Video FPS
AVOptionVideo flags +global_header # Parameters passed to encoder
# (same as ffmpeg command-line parameters)
AVOptionVideo cpu-used 0
AVOptionVideo qmin 10
AVOptionVideo qmax 42
AVOptionVideo quality good
AVOptionAudio flags +global_header
PreRoll 15
StartSendOnKey
VideoBitRate 400 # Video bitrate
</stream> -
Requirement to trim video from front-end
30 octobre 2023, par user20663233I have a specific requirement to implement video uploading from the front-end Next Js framework to a third-party application. During this process, it is necessary to trim the first 20 seconds of the video, store the trimmed segment, and subsequently transmit it to the server. While initially considering the utilization of the FFmpeg library for video trimming, I've come to realize that I require server-side support, as hosting FFmpeg locally is not a feasible option. Therefore, I am exploring alternative solutions that would allow me to accomplish video uploads from the front-end while meeting these requirements.