
Recherche avancée
Autres articles (99)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Les sons
15 mai 2013, par -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (7033)
-
How to combine 2 code snippets into 1 in FFMPEG ?
22 avril 2021, par Jonathan JasonI have 2 ffmpeg codes as follows :
Code 1 : Change speed video and audio


ffmpeg -i {input} -filter_complex "[0:v]setpts=PTS/1.1[v];[0:a]atempo=1.1[a]" -map "[v]" -map "[a]" -preset ultrafast "{output}"



Code 2 : Zoom 5 SECONDS of video after EACH 30 SECONDS


ffmpeg -i "{input}" -vf "zoompan=z='if(lte(mod(time,35),5),2,1)':d=1:x=iw/4-(iw/zoom/4):y=ih/4-(ih/zoom/4):fps=23.97" -threads 0 -preset ultrafast "{output}"



I want to combine 2 code snippets into 1 code with the same functionality as the 2 code above, I would be very grateful if someone could help me !


-
Download FFMPEG source code and debug it [on hold]
25 février 2017, par IPSI need to record a video from IP camera and currently I am using
FFMPEG
commands with aC# .Net
application for that but we are facing issue with this as if we record a video of 300 seconds(5 Minutes) then 1 or 2 seconds video gets lost, don’t know why ?.So we need to check with source code of
FFMPEG
.I have downloaded the source code and I think it is written in "C/C++", so Can anyone guide me how to run and debug source code ?
Or any other alternate way to record live video from IP camera
RTSP
stream. -
ffmpeg code works in cmd but not as a batch [closed]
13 novembre 2022, par BragonGodI'm trying to convert an image sequence to a video using ffmpeg.


It works fine on CMD when I use this


ffmpeg -r 23.976 -i frame_%d.png -pix_fmt yuv420p output.mp4



My batch file code :


cd path
ffmpeg -r 23.976 -i frame_%d.png -pix_fmt yuv420p output.mp4
Pause



But when I'm using this command in a batch file, it says it can't recognize
Frame.png/file_path
.

I think there's something wrong with the
%d
but I can't find a solution.