
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (104)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (7014)
-
Extract keyframe info and byte offset from video ffmpeg/ffprobe
4 juin 2020, par Ali HasanHow can I retrieve each keyframe information from the video using ffmpeg/ffprobe.



I have read a lot stackoverflow questions and answers regarding this but the command only returns the keyframe duration.



I have used this command to extract the keyframe duration



ffprobe -loglevel error -skip_frame nokey -select_streams v:0 -show_entries frame=pkt_pts_time -of csv "/var/www/html/YoutubeTesting/1080p.mp4"




But the info which I need from each keyframe are



1- Byte offset from video byte size



2- Duration of keyframe



Thanks !


-
Is there a way to clip the last 30 seconds of a live m3u8 using FFMPEG [duplicate]
4 décembre 2019, par kittencornballThis question already has an answer here :
I’m trying to use ffmpeg to clip high-lights from a live m3u8
This is what I’m using now -
ffmpeg -i livestream.m3u8 -t 30 -c copy output.mp4
It seems to be cutting 30 seconds from when I run it.
Is there a way to cut 30 seconds before I run it. -
Argument error while encoding video in rails
17 février 2017, par CR7I am trying to upload video and convert it into mp4. For conversion I am using the gem carrierwave-video. My configuration as same in the question
I have installed ffmpeg in my system. But when I upload video the following error occurs.
VideoFailed to transcode with FFmpeg. Check ffmpeg install and verify video is not corrupt or cut short. Original error: ArgumentError
When I comment the line
process encode_video: [:mp4]
in VideoUploader. It works fine, but conversion is not happening. Is there any issue in passing parameters. Please give your valuable answers