
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (92)
-
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 (7518)
-
Is it possible to play an output video file from an encoder as it's being encoded ?
14 février 2012, par lvreinyI have a video file, and I need to encode it as H264/AVC and feed to client via HTTP. What i need is that i player at client side can play back the video as it is being encoded.
AFAIK, To enable player to play as the video is downloading, "moov atom" have to be placed at the begnning of the video file. However, encoders (ex : ffmpeg) always write "moov atom" at the end of file after it completes encoding.
Is there any way encoder can put "moov atom" at beginning of encode's output ? Or play video without moov atom presence ?
Thank in advances
LR
-
How to play video using FFMPEG library in Android ?
3 mai 2015, par MacchiatoI was able to build
ffmpeg
library by using rock player build script.Now I have this
.so
file, how do I play video ? And I want to display this video inside a smallLinearLayout
in myActivity
.Is it possible ?
Update :
I know that it’s easy to play video usingVideoView
orMediaPlayer
+SurfaceView
. I just wanted to understand more aboutffmpeg
library and how to display the frames inside an AndroidActivity
. -
encoding jpeg as h264 video
22 février 2017, par jefftimestenI am using the following command to encode an AVI to an H264 video for use in an HTML5 video tag :
ffmpeg -y -i "test.avi" -vcodec libx264 -vpre slow -vpre baseline -g 30 "out.mp4"
And this works just fine. But I also want to create a placeholder video (long story) from a single still image, so I do this :
ffmpeg -y -i "test.jpg" -vcodec libx264 -vpre slow -vpre baseline -g 30 "out.mp4"
And this doesn’t work. What gives ?
EDIT : After trying LordNeckbeards answer, here is my full output : http://pastebin.com/axhKpkLx