
Recherche avancée
Médias (1)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (71)
-
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 (...) -
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 (...) -
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 ;
Sur d’autres sites (10955)
-
How to embed pic_timing SEI wall clock timecodes in RTMP streaming ?
16 mai 2019, par MorenoGentiliI need to stream my desktop to the AWS MediaLive service and, as a requirement, I must include wallclock timecodes in the stream. The AWS support kindly informed me that for h.264 encoded streams, I need to provide timecodes as "pic_timing SEI messages".
I’m streaming with Ffmpeg via the RTMP protocol on Windows 10 so, I tried adding the
use_wallclock_as_timestamps
andcopyts
flags to my command.ffmpeg -f gdigrab -framerate 30 -offset_x 0 -offset_y 0 -video_size 1920x1080 -show_region 1 -use_wallclock_as_timestamps 1 -i desktop -vf scale=320:240 -c:v libx264 -c:a aac -profile:v main -level 3.1 -pix_fmt yuv420p -copyts -f flv rtmp://<ip>:1935/<app>/<stream>
</stream></app></ip>However, the timecodes are not picked up by AWS MediaLive.
My questions are :
- Does the
use_wallclock_as_timestamps
flag actually create timecodes as "pic_timing SEI messages" as required ? - If not, how do I add wallclock timecodes as "pic_timing SEI messages" ? It doesn’t have to be every frame. Every 2 or 3 seconds would suffice.
I’m stumped. I couldn’t find the answer in the Ffmpeg documentation.
Thanks for your help.
- Does the
-
How to embed pic_timing SEI wallclock timecodes in RTMP streaming ?
13 novembre 2023, par MorenoGentiliI need to stream my desktop to the AWS MediaLive service and, as a requirement, I must include wallclock timecodes in the stream. The AWS support kindly informed me that for h.264 encoded streams, I need to provide timecodes as "pic_timing SEI messages".



I'm streaming with FFmpeg via the RTMP protocol on Windows 10 so, I tried adding the
use_wallclock_as_timestamps
andcopyts
flags to my command.


ffmpeg -f gdigrab -framerate 30 -offset_x 0 -offset_y 0 -video_size 1920x1080 -show_region 1 -use_wallclock_as_timestamps 1 -i desktop -vf scale=320:240 -c:v libx264 -c:a aac -profile:v main -level 3.1 -pix_fmt yuv420p -copyts -f flv rtmp://<ip>:1935/<app>/<stream>
</stream></app></ip>



However, the timecodes are not picked up by AWS MediaLive.



My questions are :



- 

- Does the
use_wallclock_as_timestamps
flag actually create timecodes as "pic_timing SEI messages" as required ? - If not, how do I add wallclock timecodes as "pic_timing SEI messages" ? It doesn't have to be every frame. Every 2 or 3 seconds would suffice.







I'm stumped. I couldn't find the answer in the FFmpeg documentation.



Thanks for your help.


- Does the
-
Automator & ffmpeg : Create video from .png image sequence in folder
1er septembre 2016, par imgoingtoshaboomsffmpeg -framerate 29.97 -i image-%03d.png -vcodec prores -profile:v 3 output.mov
Trying to run a shell script or applescript in Automator to create a service based on the above but dont really know where to begin. This is what i’d want :
1) select the parent folder, within are 1-2k .png files. i want to use glob i think, so i dont have to specify filename prefix (i.e. image- above)
2) ffmpeg stitches all these clips into a prores hq qt file
3) outputs this file to the same folderThis is what i have so far but i know its probably way offbase—workflow fails to run :
on run {input, parameters}
tell application "Terminal"
activate
set filesString to ""
repeat with file_ in input
set filesString to filesString & " " & quoted form of (POSIX path of file_)
end repeat
do script "for f in" & filesString & "; do
/Users/brianglover/Documents/ffmpeg/ffmpeg -i -pattern_type glob -i "$f.png" -vcodec prores -profile:v 3 \"${f%.*}.mov\"
done"
end tell
return input
end runI’m missing a lot clearly...help ?