
Recherche avancée
Autres articles (34)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 (...) -
Submit enhancements and plugins
13 avril 2011If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.
Sur d’autres sites (6704)
-
FFMPEG - Getting consistent accurate video time segments
10 juin 2020, par rossmcmI'm processing a large number of videos that need to be time-synchronized to match an audio track (it's a "virtual choir"-type project). I have tried several variations based on the contents of this post, but I get a variability of some seconds on the actual output files. The resulting segment length is variable, and the point in the input video that the output video begins is not at all accurate (I was expecting a +-1 frame error).



Here's my attempt :



:: Syntax: GetSegment.bat <input file="file" /> <starting time="time" in="in" ms="ms"> <duration in="in" ms="ms">
:: Example: GetSegment.bat vid.mp4 10000 50000
:: would produce vid-keyed.mp4 and vid-segment.mp4

@set "_VideoIn=%~1"
@set "_VideoOutKeyed=%~dpn1-keyed%~x1"
@set "_VideoOutSegment=%~dpn1-segment%~x1"
@set "_VideoStartms=%~2"
@set "_VideoLengthms=%~3"
@set /a _VideoEndms= %_VideoStartms% + %_VideoLengthms%
ffmpeg -y -i "%_VideoIn%" -force_key_frames %_VideoStartms%ms,%_VideoEndms%ms "%_VideoOutKeyed%"
ffmpeg -y -ss %_VideoStartms%ms -i "%_VideoOutKeyed%" -t %_VideoEndms%ms -codec copy "%_VideoOutSegment%" 
@exit /b %errorlevel%
</duration></starting>


-
Record and preview webcamera stream at the same time
11 juin 2019, par Vlad PopovI’m using ffmpeg and Windows 7/10 OS and going to save webcamera stream to file and preview it at the same time (from time to time, not constantly).
I can solve each of these tasks separately :- Saving webcamera stream to 1-minute files :
$ffmpeg_exe = "C:\ffmpeg.exe"
$video_source = "USB Video Device"
Start-Process $ffmpeg_exe -ArgumentList @("-y -hide_banner -f dshow -rtbufsize 100M -i video=``"$video_source``" -preset ultrafast -strftime 1 -f segment -segment_time 00:01:00 ``"$out_folder\%Y_%m_%d_%H_%M_%S.mp4``"") -Wait -NoNewWindow
- Preview webcamera using ffplay :
$ffplay_exe = "C:\ffplay.exe"
Start-Process $ffplay_exe -ArgumentList @("-hide_banner -f dshow -i video=``"$video_source``" -preset ultrafast") -Wait -NoNewWindow
Is there a way to do it using single command ? I think I have to use ffmpeg within named pipes but I don’t understand how to create/operate them. Maybe someone have already working Windows command which will 1) save webcamera video to file 2) also send it to named pipe for another applications like ffplay or VLC ?
Thanks for your answers,
—Vlad
-
FFMPEG merge multiple audio into video in specific time [closed]
19 avril 2024, par UmarRight now i have :


- 

- 1 - video (.mp4)
- N - audio with its timestamp start and end (.wav)






I want to merge those audio to the video based on that time with still preserving the original video audio


So that the final illustration will looks like this :


audio ----aud1------aud2------aud3--------aud4---------audn------->
video+audio ------------------------------------------------------------>



the audio position will be based on the time, i already have this data


start=00:00:12.040,end=00:00:16.640 aud1
start=00:00:16.640,end=00:00:21.520 aud2
...



How to achieve this using ffmpeg


thankyou