
Recherche avancée
Médias (91)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (43)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
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) (...)
-
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (4947)
-
Output video segments via a pipe using FFmpeg
6 janvier 2019, par Joey MoraniMy Node.js app uses FFmpeg to capture video of a DirectShow device and then output segments for live streaming (HLS). At the moment I’m outputting the segments to files, however if I could output them via a pipe it would allow me to efficiently send the segment via a websocket instead of hosting a HTTP server.
I’ve tried using this command :
ffmpeg -y -f dshow -i video=FFsource:audio=Stereo Mix (Realtek High
Definition Audio) -vcodec libvpx -acodec libvorbis -threads 0 -b:v
3300k -cpu-used 5 -keyint_min 150 -g 150 -map 0 -flags:v
+global_header -f segment -However it gives the error "Could not write header for output file #0 (incorrect codec parameters ?) : Muxer not found". This commands works for outputting to files (by replacing ’-’ with ’seg_%03d.webm’).
Does FFmpeg not support pipes for segmented video, or is there something wrong with the command ? Thanks.
-
Using ffmpeg to pipe Logitech C920 video to two outputs : re-encoded to RTMP stream and hardware-encoded to file
18 décembre 2018, par Maros HluskaI’m trying to use
ffmpeg
to accept video from a Logitech C920 and broadcast it to an RTMP stream (e.g. Twitch). But there’s a twist : I would like to also save to file the original 1080p hardware-encoded video.So I would like to do both of these :
- Re-encode the input to 852x480 resolution and upload to an RTMP url with 1500 bitrate
- Save the original input to a file without re-encoding (C920 does hardware encoding with the h.264 codec)
I’ve tried saving the video to file without re-encoding using the following :
ffmpeg -s 1920x1080 -framerate 30 -pixel_format uyvy422 -vcodec h264 -f avfoundation -i 'HD Pro' -copyinkf -vcodec copy out.mp4
This seems to almost work. The webcam light turns on and a few seconds of running this produces a massive file (1GB or so). However, I can’t seem to open the file with VLC. I do see a warning from ffmpeg :
[AVBSFContext @ 0x7fbd4fc3e9c0] No start code is found.
HD Pro: could not find codec parametersI’m on a Mac using ffmpeg 4.1.
Edit :
It seems the file that ffmpeg produces is not h264 encoded but rather raw pixel data. I’m starting to think that it’s not possible to set the webcam into the h264 mode with Mac (most other cases do it in Linux with
v4l2
).To anyone answering the question, I’d be happy with a solution that involves Linux as well. Especially if I can use a bootable live USB.
-
avformat : add gif pipe demuxer
8 décembre 2018, par Paul B Mahol