
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 (63)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
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 (6157)
-
Why are v0, v1, and v2 of ffmpeg still under active development ? What happened to ppa:jon-severinsson/ffmpeg ?
12 avril 2015, par cxrodgersI know about the long history of ffmpeg and libav. Personally, I preferred to use Jon Severinsson’s PPA, as suggested in many answers here on stackoverflow or askubuntu. However, recently this PPA seems to have gone down recently (this page, which is the link everyone always gives, is dead). I don’t see if he put up a newer version, although I admit I find launchpad hard to navigate. Did it get replaced with this one from Doug McMahon or this one from Sam Rog ?
Ok, so maybe I need to download it myself. I visit the releases page for ffmpeg, and there seems to be simultaneous development of releases from v2 (2.6.2), v1 (1.2.12, from February), and v0 (0.10.16, from March of this year). 0.10 isn’t even the newest of the v0 series, and yet it seems to be the most recently updated of that series, and (coincidentally ?) also the version that I most recently got from the PPA. Admittedly this was on a slightly older distribution (Linux Mint 16).
ffmpeg -version
ffmpeg version 0.10.12-7:0.10.12-1~saucy1So, which version should I download, now that the PPA is gone ? Does it depend on the distribution I’m using ?
-
H.264 Codecs for Chromium [closed]
5 juin 2020, par AtenI have been using Chromium for a while, but I found was that I can't watch Netflix because the H.264 codecs are not available. I have already done some research on this, but nothing works. I have tried :



sudo apt install ubuntu-restricted-extras



sudo apt install chromium-codecs-ffmpeg



sudo apt install chromium-codecs-ffmpeg-extra



(These install fine)



sudo apt install chromium-codecs-ffmpeg-nonfree

Which is not found.


I am using Linux Mint 19.3 64-bit (Based on Ubuntu 18.04 LTS) but Ubuntu solutions should work just fine. I am also using Chromium 83.0.4103.61 using
sudo
:


sudo apt install chromium-browser


-
FFMPEG Add recording to this command
4 août 2019, par Jorge ForeroRaspberry Pi IP camera on my network broadcasting to a web browser. I want to save 10 minutes long video clips. This is the line :
raspivid -t -0 -w 1080 -h 720 -awb auto -fps 30 -b 1200000 -o - |ffmpeg -loglevel quiet -i - -vcodec copy -an -f flv -metadata streamName=myStream tcp://0.0.0.0:6666&
Following a youtube tutorial I managed to watch my rpi ip camera on the browser but I want to record myself sleeping to detect any breath interruption.
raspivid -t -0 -w 1080 -h 720 -awb auto -fps 30 -b 1200000 -o - |ffmpeg -loglevel quiet -i - -vcodec copy -an -f flv -metadata streamName=myStream tcp://0.0.0.0:6666&
Works fine ! I only want to add recording to a file 10 minutes videos (in chronological order if it’s possible)