
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (22)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (6786)
-
Not able to play .mpd file of MPEG-DASH stream
29 novembre 2018, par JAVA CoderI have made segments of a mp4 file and uploaded all .m4s segments,.initmp4 file and the .mpd file to s3 bucket and used the url of .mpd file to play the full file using online DASH players of akamai,bitmovin,videoJs,dashJs etc but failed.
When I tried to play the .mpd file by using GPAC MP4Client on command prompt just can hear the audio with a blank screen.
You can find the commands here which I have used to make segments of the mp4 file.
-
How to calulate PTS and DTS ? FFmpeg C++
27 janvier 2024, par kodomaI have a mkv file where I want to extract the video stream. While extracting, I got the "... non monotonically increasing dts to muxer ..." Warning/Error. I have tried multiple solutions that I found online, but I could never get the timing to be right.


This is the beginning of the video stream :


DTS: 0 PTS: 0 Duration: 41 
DTS: 375 PTS: 375 Duration: 41 
DTS: 209 PTS: 209 Duration: 41 
DTS: 42 PTS: 42 Duration: 41 
DTS: 83 PTS: 83 Duration: 41 
DTS: 125 PTS: 125 Duration: 41 



I also extracted the stream via the FFmpeg executable, and the extracted video file has the same DTS and PTS as the source.


So how do I calculate the DTS and PTS correctly ? If I don't change the timings, the video is the same length, but it is total garbage.


-
What to input for variable frame rate in pts / dts in ffmpeg
23 novembre 2014, par WilliamI am capturing frames from a webcam stream which sends frames in at a variable rate. My output video plays much faster than it was captured because there are less frames available than the input fps.
I’m really new to ffmpeg and don’t know what to put into pts and dts. I can get an Int64 representing nanoseconds since 1600 when the frame arrives. How do I use the av_rescale_q function with it ?
Reading online it seems a solution may be to clone frames so the output fits into a constant frame rate video. However it would be better just to put the timestamp in there.