
Recherche avancée
Autres articles (51)
-
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Utilisation et configuration du script
19 janvier 2011, parInformations spécifiques à la distribution Debian
Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
Récupération du script
Le script d’installation peut être récupéré de deux manières différentes.
Via svn en utilisant la commande pour récupérer le code source à jour :
svn co (...)
Sur d’autres sites (5644)
-
How to create video by stitching together images (.png) where the serial on each image file increases by 6
10 avril 2024, par DataStatsExplorerI am trying to create a video (preferably mp4) from a series of png images. However, the name of each image file increases by 6 every frame. For example, I would have depthframe_0000 as the first frame, and depthframe_0001 for the next frame.


There are a few answers that have answered a similar question but I am unable to process the video when the image files are not increasing by 1.


I would like to keep the fps at 5. I am using ffmpeg as the suggested in the answers above but am open to any other suggestion.


The collab code that I have put together is as follows :


import subprocess

# Define the frame rate and the input/output paths
output_fps = 5
input_path = "/content/drive/MyDrive/depth/depthframe_%04d.png"
output_path = "/content/drive/MyDrive/depth.mp4"

# Create a list of the frames
frames = [input_path % i for i in range(0, 2671, 6)] # Update range as needed

# Write the list of frames to a temporary text file
with open('frames.txt', 'w') as f:
 for frame in frames:
 f.write(f"file '{frame}'\n")

# Create the command
command = [
 "ffmpeg",
 "-f", "concat",
 "-safe", "0",
 "-i", "frames.txt",
 "-c:v", "libx264",
 "-pix_fmt", "yuv420p",
 output_path
]

# Run the command
subprocess.run(command, check=True)



-
Stream video over serial port using FFmpeg [closed]
13 septembre 2020, par Rasoul SharifianI am using the FFmpeg library to stream videos by UDP and LAN cables, something like this :




But as our embedding systems just have serial ports the data must stream over the serial ports.
something like this :




So the question is : Is it possible to stream videos over the serial port using the FFmpeg library ? Or is there any other library that can compress and stream videos over serial ports ?


I also used a kind of Uart to ethernet converter hardware module to solve the problem and hopefully, this worked for me. But the project goal is to send video data over serial ports originally and not using some hardware converters.


Any suggestions would be helpful.


-
avfilter/x86/vf_atadenoise : add SIMD for serial too
17 octobre 2019, par Paul B Mahol