
Recherche avancée
Autres articles (104)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (11614)
-
Simultaneous Recording and Real-Time Display Using ffmpeg with DeckLink
9 décembre 2023, par ark1974I am currently working with a DeckLink Duo card, specifically utilizing port 2. My objective is to use FFmpeg to ingest RAW HD SDI, save it as an MP4 file, and concurrently display the incoming SDI video on the computer screen in real-time.


I have experimented with various FFmpeg command lines, combining decklink and sdl options, to achieve this dual functionality :


ffmpeg -f decklink -i 'DeckLink Duo@2' -c:v libx264 -preset ultrafast -tune zerolatency -f sdl "My Screen"



However, I am encountering challenges in achieving both recording and real-time display simultaneously.


I would appreciate any insights, suggestions, or alternative approaches to enable the concurrent recording and display of SDI video using DeckLink with ffmpeg.


-
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