
Recherche avancée
Autres articles (102)
-
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...) -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (9151)
-
Codec issue ? Mp4 video flashing during play via JW Player (and same issue with mac computer)
19 décembre 2017, par janosdupaiI have a linux based server online. It has Mp4 videos. I try to play these video with JW Player. I had any problems with them, but some files has the following problem : https://www.video.match-meeting.com/drive/5a350a6700bc4.mp4
If I download this file to a windows computer, it plays without problem. Is that a codec problem with my server (and on my mac) ?
-
Can I make a seek accurate video player with ffmpeg ?
5 septembre 2016, par Will TowerSimple question : I would like to make a video player with "fairly" accurate seeking and need to know if I can do that with
ffmpeg
. I think the answer is "Well, yeah of course you can" but want to get a reality check before I waste lots of time only to discover that I can’t.I am coding in
Actionscript
for a cross platform desktop AIR app. I am using a NativeProcess to runffmpeg
in the background and using Actionscript’s NetConnection and NetStream classes to connect theffmpeg
stream to a Video class. Usingffmpeg
with a NativeProcess is essentially runningffmpeg
from the command line. I have basic AS3 code roughed out to load and play a video throughffmeg
and I am going through the dranger tutorial (How to Write a Video Player in
Less Than 1000 Lines ) now to sort out the rest of it.Would appreciate hearing of any caveats or cautions.
Update : So I have been fiddling with this all afternoon but no success yet. I am able to run a video with the following commands (NativeProcess code removed for clarity) :
ffmpegArgs = new Vector.<string>();
ffmpegArgs.push("-re", "-i",videoPath,"-c:a", "copy", "-c:v", "copy","-f", "flv", "-");
</string>But I am confused about how to interact with
ffmpeg
once it is running. I’ve tried a bunch of variations on this scenario : usingwriteUTFBytes
to send commands to theffmpeg
NativeProcess instance without a good result :var cmd:String = "-ss, 50, -re, -i," + videoPath + ",-c:a, copy, -c:v, copy, -f flv -";
ffmpegProcess.standardInput.writeUTFBytes(cmd);Do I need to tear down and respawn the
ffmpeg
NativeProcess instance in order to access different sections of a video file ?ss position (input/output)
When used as an input option (before -i), seeks in this input file to position. Note that in most formats it is not possible to seek
exactly, so ffmpeg will seek to the closest seek point before
position. When transcoding and -accurate_seek is enabled (the
default), this extra segment between the seek point and position will
be decoded and discarded. When doing stream copy or when
-noaccurate_seek is used, it will be preserved.When used as an output option (before an output filename), decodes but discards input until the timestamps reach position.
-
simple light weight video player using ffmpeg that can play simple http network streams in C/C++ [on hold]
25 janvier 2015, par Shijin BoseCan anyone please help me make a simple light weight video player using ffmpeg that can play simple http network streams. I couldn’t find any simple codes. It doesn’t want any additional features, but just a playback function. I need the code in c or c++. QtAV is complex and is not getting compiled, and it is bulky. Please suggest any sites.
Thanks,