
Recherche avancée
Médias (91)
-
DJ Z-trip - Victory Lap : The Obama Mix Pt. 2
15 septembre 2011
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (111)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (11037)
-
What would be the simplest way to convert an IP Camera's RTSP feed to WebRTC, to be viewed on a webpage ? [closed]
27 septembre 2024, par Sam LomasI am aware that there are many questions similar to this on SO, but many of them do not fully answer the question, are outdated by 8+ years or are incredibly convoluted.


I am in possession of two IP cameras, which both serve an RTSP stream. I'd like to view the live feeds of both cameras on demand, so I am hosting a small-scale webserver from a raspberry pi 4. In the past, I tried using ffmpeg to convert the RTSP streams into HLS, but the latency of standard HLS was anywhere from 10 to 20 seconds. WebRTC is what came to mind, so I looked into some media servers to help me serve the RTSP stream in a WebRTC wrapper, and many of them are very poorly documented and require a very in-depth knowledge of WebRTC to function at all.


So my question is, what would the easiest method be for me to put these IP camera feeds on my webpage, with as little effort required and with the lowest latency possible ?


-
Batch processing removal of closed captions in video files with ffmpeg [closed]
3 octobre 2024, par user27616468I am trying to find an easier way of removing closed captions with ffmpeg from a lot of files, so far I have been using this and copy pasting file names in


"C :\ffmpeg\bin\ffmpeg.exe" -i "E :\Videos.mkv" -bsf:v "filter_units=remove_types=6" -c copy "E :.mkv"


Is there some way to make it do all files within the initial folder so I don't have to do each file name ?


I have seen similar inquiries in regards to closed captions from 10+ years ago on this site but after a bit of using the search feature could not find anything that may relate to my specific need.


This kind of thing is all new to me and there was a way to batch remove video titles easily but no idea how I would go about figuring the above out.


Thank you for taking the time to read through my jibber jabba.


This section is not currently applicable.


I did see this thread but it is for subtitles and not closed captions and unfortunately with my limited knowledge I don't understand it.


FFmpeg remove subtitles from file "if exists"


-
ffmpeg ignores input svg files resolution and produces 100x100 video [closed]
11 novembre 2024, par Francesco PotortìI have used this command for some years to produce .ogg files (or any other format) from a series of .svg files on Linux :


ffmpeg -y -r 1.2 -i %06d.svg -qscale:v 10 path.ogg


It has worked flawlessly until now, when it produces a video with 100x100 resolution, rather then the 1920x1080 resolution of the input files.


If I force the output resolution to be 1920x1080 using the
-s
option, the resulting video is a magnified version of the 100x100 video output I obtain without the-s
option. If I convert the svg files to png usinginkscape
everything is well, but I'd like to avoid making my workflow more complex.

Here you can find some of the .svg files.


Any ideas ?