
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (31)
-
Encodage et transformation en formats lisibles sur Internet
10 avril 2011MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
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.
Sur d’autres sites (4046)
-
video created by moviepy doesn't play on web
18 février 2016, par R. GlennI’m playing around with moviepy, with the intent of creating videos to imbed in webpages. However, I’m having trouble getting the videos that I create to actually play in chrome and firefox (it does play in safari :/ ).
Firefox claims the "file is corrupt".I find it extremely likely I haven’t installed something properly. I followed (among other things, since I’m not yet authorized to post enough links so as to fully describe my situation, #thanksStackOverflow ;P) http://wiki.webmproject.org/ffmpeg/building-with-libvpx, but according to [link I would have shared if allowed :P] that stuff is all "automatically installed during MoviePy’s installation", so I’m not sure how I could have messed it up.
see example code (I’ve tried it with ’python’, ’python3’ and ’python3.5’) :
from moviepy.editor import *
filepath = "../read_videos/MOVI0011.avi"
file = VideoFileClip(filepath)
clips = []
clips.append(file.subclip(10, 12))
clips.append(file.subclip(20, 22))
clips.append(file.subclip(30, 32))
clips.append(file.subclip(40, 42))
concatenated_clip = concatenate_videoclips(clips)
concatenated_clip.write_videofile("../write_videos/clip.mp4", fps=24, codec='mpeg4')OSX El Capitan (10.11.3)
-
ffmpeg, HLS options, ffmpeg components for dummies ? [closed]
10 juin 2013, par VetalI am trying to make some HLS encoding with ffmpeg
After playing a lot (in Ubuntu 12.04) with ffmpeg I realized I do not understand basic questions.
How to make a ffmpeg "by the book" ?
I've started a "sudo apt-get install ffmpeg"
I finished with a manual install :
Latter needed a following command to get rid of build error, where I spent quite some time with :
sudo apt-get remove ffmpeg x264 libx264-dev
So, now I've got to the documentation for HLS : http://ffmpeg.org/ffmpeg-all.html#hls-2
Trying to run some stuff :
ffmpeg -i 3.mp4 hls.m3u8
Error : Unable to find a suitable output format for 'hls.m3u8'
ffmpeg -i 3.mp4 -hls_time 10 hls.m3u8
Error :
Unrecognized option 'hls_time'
Failed to set value '10' for option 'hls_time'Anyway, looks like an options specified in different formats, e.g. 'vbsf' vs 'v:bsf', -vcodec and -v:c, etc. etc. Like there are few alternative versions
After starting with it some time ago, I feel more pessimistic now like I missed some fundametals. Any Ideas for the things above ?
Thank you
-
WebM Semantic Video Demo
18 août 2010, par noreply@blogger.com (John Luther)Brett Gaylor at WebMadeMovies has posted an HTML5 demo of popcorn.js, “a javascript library for manipulating open video on the web.” The demo plays a video while using semantic data in the video to trigger machine-translated subtitles, map lookups, Twitter feeds and other elements on the page. If you’re using a WebM-enabled browser the page serves a WebM video, otherwise it serves an Ogg or MP4 video depending on the browser’s capabilities.
See Brett’s post or the popcorn.js wiki page for more info. You can also download the source from the Mozilla github repo.