
Recherche avancée
Médias (1)
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (36)
-
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. -
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 (3245)
-
FFmpeg - Check if all video files have concatenated correctly into one video
14 mai 2020, par STerrierI am concatenating thousands of .ts files into an mp4 which works great but is there a way to know which files have already been concatenated with FFmpeg ?



The issue I have is I am concatenating multiple videos back to back and if the app is closed off during the concatenation process. The concatenating of the videos may not be complete. I can check if the files exist but the size of the files could be wrong if not all the clips have been concatenated. Is there a way to know if all the files have been concatenated properly ?



My current idea is if the app is closed before it has completed concatenating, I would delete the mp4 file and restart concatenating the video again but this time consuming especially if the files concatenated properly the first time.



Any ideas would be great thanks



ffmpegCommand



ffmpeg -f concat -i \(videoFile) -c:v copy -c:a copy \(outputFile)




I am using the cocoa pod mobile-FFmpeg
https://github.com/tanersener/mobile-ffmpeg



Link to FFmpeg Concatenate function
https://trac.ffmpeg.org/wiki/Concatenate


-
Revision 16878 : do not try to get aspect information from source twice in twopass ...
7 février 2010, par j — Logdo not try to get aspect information from source twice in twopass mode, fixes bug reported by DuClare ?
-
how to have live video streaming using ffmpeg command or using tcl 8.0 script on windows 10 platform [duplicate]
16 novembre 2017, par M. D. PThis question is an exact duplicate of :
I am able to capture the video and image by using ffmpeg in tcl script, but I want to have live video streaming for my multiple webcams for tcl version 8.0 on windows 10.
I tryed :
ffmpeg -f vfwcap -r 25 -i 0 sample.avi
for video capturing, it works
ffmpeg -f vfwcap -r 25 -i 0
and I tried this for live video streaming by it didn’t http://wiki.tcl.tk/40194
So what will be the right command for live video streaming.exec [list ffmpeg -f dshow -t 00:00:10 -i "video=Integrated Webcam" -b 5000k -s 1280x720 c :/test/sample-a.avi] &
also tried with this, still not working