
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (46)
-
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (6224)
-
Video is concatenated but not showing all video after playing First one in ffmpeg
1er décembre 2017, par ChinmoyI am trying to concate three mp4 video using FFMPEG. after executing the ffmpeg commend, when I try to play the final video the one is playing 45 second perfectly and then then make it conflict and stop the video but audio is playing .
I have check finale video duration It’s duration is 120 second which is total duration of thee input video.
I am asking to you guys hwo can i play this video with out conflicting.Here is my code that I have used for concatenate :
ffmpeg -i /Users/mukul/Documents/Nugruv/video/testforplay.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts /Users/mukul/Documents/Nugruv/video/testforplay.ts
ffmpeg -i /Users/mukul/Documents/Nugruv/video/video3.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts /Users/mukul/Documents/Nugruv/video/video3.ts
ffmpeg -i /Users/mukul/Documents/Nugruv/video/video4.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts /Users/mukul/Documents/Nugruv/video/video4.ts
ffmpeg -i "concat:/Users/mukul/Documents/Nugruv/video/testforplay.ts|/Users/mukul/Documents/Nugruv/video/video3.ts|/Users/mukul/Documents/Nugruv/video/video4.ts" -ccopy -bsf:a aac_adtstoasc /Users/mukul/Documents/Nugruv/video/Cam01.mp4
I am waiting for your help.. :) -
Create video with correct FPS from video with incorrect FPS and file containing timestamps for each frame using FFMPEG
4 février 2023, par BojanI have a video file captured from web camera and using OpenCV in python. The nominal FPS of the web cam is 30 FPS, but because of the environment, the actual FPS varies and sometimes can go as low as 24 fps. The recorded video is created using OpenCV's
VideoWriter
, using MP4V FOURCC and always has FPS value of 30, which makes the video's duration incorrect if the actual FPS was not 30. I have a file which contains the timestamps when each frame from the web cam was read (generated using python'stime.time()
).

Question :

Using FFMPEG (or other software) can I use the timestamps information to create new video file (probably VFR file) and then convert it to CFR file ?

I am not sure what is the correct approach to create video file with correct time base.
Maybe I can split the video's frames and save them as images and then use the timestamps and the images to create VFR video, but I want to see if it is possible to do this in another, more elegant way.


Thanks in advance !


-
How to identify users in video file when streaming video ? [on hold]
24 octobre 2017, par blackjak231I’m trying to find a solution to "secure" online video courses on a video streaming platform. The goals are the following :
- Prevent easy download of video - OK
- Be able to identify which connected user downloaded the video if it happens - NOK
The server will be a Debian machine running PHP 7 and the "encryption" of the video will be done "on the stream" for each user.
My question is for the second point. I’m unable to find a good solution for it. Here is what i thought of so far and the downsides :
- Add a watermark with the user’s name/email with "ffmpeg" on the whole video (in a corner)
- Can be blurred and therefore useless
- Add an invisible digital watermark (inside the video file) with a tool (which i have not found yet)
- Screen can be recorded and the invisible digital watermark lost.
- Add a watermark with the user’s name/email on 2 or 3 specific frames of the video while streaming using "ffmpeg"
- Best solution from my point of view but no technical solution found so far.
Do you have any recommendations on how to do this or a completely different approach to the problem ?
I’m open to any third party video tool such as Vimeo or any other available.
Thank you in advance for your help ! :)