
Advanced search
Medias (91)
-
#3 The Safest Place
16 October 2011, by
Updated: February 2013
Language: English
Type: Audio
-
#4 Emo Creates
15 October 2011, by
Updated: February 2013
Language: English
Type: Audio
-
#2 Typewriter Dance
15 October 2011, by
Updated: February 2013
Language: English
Type: Audio
-
#1 The Wires
11 October 2011, by
Updated: February 2013
Language: English
Type: Audio
-
ED-ME-5 1-DVD
11 October 2011, by
Updated: October 2011
Language: English
Type: Audio
-
Revolution of Open-source and film making towards open film making
6 October 2011, by
Updated: July 2013
Language: English
Type: Text
Other articles (65)
-
Publier sur MédiaSpip
13 June 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Le plugin : Podcasts.
14 July 2010, byLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 video/mp4 (...) -
Creating farms of unique websites
13 April 2011, byMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things): implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
On other websites (10652)
-
FFmpeg and bash, Transcode multiple files to another drive with save path
18 July 2016, by Виктор ГусевI have folder that contain files in many different path, for example: folder1/subfolder1/file.mov
folder1/subfolder2/file.movi need to convert and copy all files to another format, and save all paths after folder 1, for example:
folder2/subfolder1/file.mp4
folder2/subfolder2/file.mp4I have this script, but it save transcoded files in original location.
#!/bin/bash
MOVIES=/Volumes/drive/
find "$MOVIES" -name '*.MP4' -exec sh -c 'ffmpeg -i "$0" -map 0 -c copy "${0%%.MP4}.mov"' {} \; exit;Please help
Thank you! -
FFmpeg HLS save original timestamps
11 July 2016, by Ivan KolesnikovI transcoding a video to HLS and everything works fine with the following command:
ffmpeg -i source -vcodec nvenc -acodec copy -f ssegment -segment_list playlist.m3u8 -segment_list_flags +live -segment_time 60 -segment_list_size 10 out%03d.ts
But when I want to save an original timestamps and add -copyts key to my commnad then I received new .ts file each 0.7 seconds(but I set it to 60 seconds -segment_time 60).
How can I save an original timestamps with transcoding to HLS ?UPDATE: I tried this command and timestamps are saves fine:
ffmpeg -i source.ts -vcodec nvenc -acodec copy -f hls -hls_time 10 -hls_list_size 5 -copyts playlist.m3u8
But when I trying run this command for RTP input stream then I receive the following error: "Error while opening encoder for output stream #0:2 - maybe incorrect parameters such as bit_rate, rate, width or height".
-
How to dynamically save a video with ffmpeg without stopping recording?
11 January 2023, by MP_95I am trying to save a video using ffmpeg with image input from an http webservice. I was able to create the video with the command:
ffmpeg -i http://source -c:v libx264 -r 30 -preset ultrafast -updatefirst 1 -y output.mp4.


However, the video is only actually made available when I stop recording.
Is there a procedure that would allow me to have the video available while recording as is the case using OpenCv's VideoWriter