
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (81)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
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 (...) -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (11386)
-
How to determine the best way to split video and merge it back ?
6 novembre 2018, par Rami AlzebakLet’s say that I want to convert a Video to different resolution.
The workflow is as follows :
1- Splitting the video into n blocks
2- Convert the resolution of the block
3- Merge the blocksThe reason why I am doing is to achieve the conversion process on parallel workers (not necessarily threads )
The issue is I can’t determine what is the best number of blocks to split the video.
E.g : When splitting a large video into 10 blocks it will reduce the total time .
but when splitting a small one it may increase the total time .any hints or keys on the topic ?
-
FFmpeg split videos into smaller chunks of 15 second each with a stride of 10 seconds
15 octobre 2022, par a mau5I want to split a 1 hour video into chunks of 15 seconds each. But after every 15 seconds I want to skip 10 seconds. For eg :- I want a clip from first 0-15 seconds save it, then skip 10 seconds, the second clip should be from 25-40 th second from the original video. Does someone know how to implement this using FFmpeg ?


ffmpeg -I Vid.mp4 -f segment -segment_atclocktime 1 -segment_clocktime_offset 00:00:10 -segment_time 00:00:15 -reset_timestamps 1 output_%03d.asf


This command is not working as expected. I don't want to implement this in a for loop, but in a single pass


-
Is there an elegant way to split a file by chapter using ffmpeg ?
6 février 2017, par KatternIn this page, Albert Armea share a code to split videos by chapter using
ffmpeg
. The code is straight forward, but not quite good-looking.ffmpeg -i "$SOURCE.$EXT" 2>&1 | grep Chapter | sed -E "s/ *Chapter #([0-9]+.[0-9]+) : start ([0-9]+.[0-9]+), end ([0-9]+.[0-9]+)/-i \"$SOURCE.$EXT\" -vcodec copy -acodec copy -ss \2 -to \3 \"$SOURCE-\1.$EXT\"/" | xargs -n 11 ffmpeg
Is there an elegant way to do this job ?