
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (49)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
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 (...)
Sur d’autres sites (10625)
-
How can i split a video file in C# ?
19 février 2015, par fthymnI’m using c# on vs2012.
I wanna split to video file for a custom time arrange.
For Example ; my video file length 30 minutes and i want to watching just selection time arrange. (like between 10th second and 45th second.)I dont want to physical new file.
My steps for what am i doing :)
1- Select Source Video File.
2- I must learn source video time length.
3- I use rangetrackbar control user select time arrange.
4- User click play then selected time arrange scenes played.Is it possible ?
-
ffmpeg auto split into exact timeframes
27 novembre 2022, par Rey BetI've been trying to autosplit a video into smaller clips of same length using ffmpeg. I know the command :


ffmpeg -i "video.mp4" -c copy -map 0 -segment_time 00:00:05 -f segment -reset_timestamps 1 output%03d.mp4)



But this one splits videos into frames so the time is varying.
I found a command


ffmpeg -i "name" -ss 0 -t 5 p1.mp4
ffmpeg -i "name.mp4" -ss 5 -t 5 p2.mp4
ffmpeg -i "name" -ss 10 -t 5 p3.mp4 



But this would mean i would have to do it manually for whole video. Is there way to automate the process so i can split the video into exact time ? Thank you.


I'm using Windows 10 if it makes any difference


-
How do I split a video into its separate frames, including audio ? [duplicate]
24 mai 2019, par TTTThis question already has an answer here :
I would like to split a video, such that for every frame I have an object which contains both the frame’s image and audio samples (for example as an array of bytes).
I’ve found many directions on how to extract just the images, but not how to include the audio.
How would I split a video up like that, for example using Python ?