
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (61)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)
Sur d’autres sites (10939)
-
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 ?