
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (86)
-
Les sons
15 mai 2013, par -
Soumettre bugs et patchs
10 avril 2011Un logiciel n’est malheureusement jamais parfait...
Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
Si vous pensez avoir résolu vous même le bug (...) -
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.
Sur d’autres sites (6761)
-
Replace part of a video (without replacing the audio) in ffmpeg [closed]
13 février 2021, par Real NoobI have a video file that is divided into three different sections. I want to replace the middle part of this video with another clip. However, I still want to keep the audio of the original video. Can I do that in ffmpeg ?


Here are my requirements :


- 

- Original Video is 60 seconds long.
- The part I want to replace is from 25 to 45 seconds.
- I want to keep the original audio from 25 to 45 seconds and just replace the visual part with some other clip.
- The generated video will also be 60 seconds long. However, it will have the new video from 25 to 45 seconds.










Thanks.


-
Stream part of the screen on linux
1er juin 2014, par Boris BrodskiHow can I stream part of my screen using ffmpeg (avconv) on Linux ?
I can record part of my screen :
ffmpeg -f alsa -ac 1 -i pulse -acodec pcm_s16le -f x11grab -r 24 -s 100x200 -i :0.0+20,30 ...
But trying to stream it adding
-f rtp rtp://127.0.0.1:1234
doesn’t work. ffmpeg starts to stream, but ffplay complains
$ ffplay rtp://127.0.0.1:1234
[rtp @ 0xaf8026a0] Unable to receive RTP payload type 96 without an SDP file describing it
[rtp @ 0xaf8026a0] Estimating duration from bitrate, this may be inaccurate
Input #0, rtp, from 'rtp://127.0.0.1:8080':
Duration: N/A, bitrate: N/A
rtp://127.0.0.1:8080: could not open codecs
1401611400.39 A-V: 0.000 s:0.0 aq= 0KB vq= 0KB sq= 0B f=0/0What do I missing ?
-
How to show part of a frame from a 4k IP cam
15 avril 2022, par BrPI'm working with andoroid.js framework to create a simple app that will show the video that is streamed from some IP cam.


I want to add the ability for the user to see only a part of the full video frame that have a resolution of 4k, so for example, if the user want to see the upper left corner of the frame, he can see it like the image is magnified. I'm not sure if this is possible.


Is there any ffmpeg or any way to accomplish this with a library for node ? Can I include ffmpeg with
node_modules
when I build my app ?