
Recherche avancée
Autres articles (31)
-
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe 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 (...)
Sur d’autres sites (6067)
-
Store extracted frame name inside an array - ffmpeg
19 février 2013, par asprinI'm a complete newbie to C. I'm from PHP background, but it so happens that the code that I wrote in PHP needs to be converted to C. It was Java at first, but now the requirement is C.
After going through some tutorials, I got the basics of C and coded the following to run
ffmpeg.exe
from within a c program#include
#include
int main()
{
char *app = "D:\\ffmpeg\\bin\\ffmpeg.exe -i";
char *input = " D:\\video.mpg";
char *output = " D:\\frames\\image%d.jpg";
char *param = " -r 10";
char str[300];
snprintf(str, sizeof str, "%s%s%s%s", app, input, param, output);
// str contains "D:\ffmpeg\bin\ffmpeg.exe -i D:\video.mpg -r 10 D:\frames"\image%d.jpg
system(str); // <-- working fine, frames are being extracted
/*
do something here to store each extracted frame in an array
so that the array contains image1.jpg, image2.jpg, image3.jpg...and so on
*/
getch();
return 0;
}On compiling and running the program, I'm getting the frames in the output folder as expected. The issue is I want to store each frame name inside an array as it gets extracted. So far, I haven't been able to come across a similar issue and so I decided to create a new thread for it. I'm hoping this is possible and would appreciate a nudge in the right direction.
-
FFMpeg -re flag and segmenter. If end of file is reached, wait ?
17 mars 2014, par user2901994This question is similar to
Keep FFMPEG running and waiting for new image files to encode and stream
FFMpeg's -re flag tells FFMpeg to "read input at native frame rate". This allows me to continuously append to the end of an audio file, as FFMpeg's segmenter runs, continuing to segment the file that is being appended to (for HLS).
Is there a way to get FFMpeg to wait, instead of exit, even it it reaches the end of the input file ? If say, latency causes FFMpeg to catch up with my appending to the end of the file ?
-
Playing Several Videos in a Row From a Browser
2 août 2014, par user18490It’s simple to play 1 video (using HTML5), but my question is, can you play 2 or more videos in a row.
Basically I’d like to let the user select as many clips as he/she wants, and let him/her play them in the browser (or potentially an external player such as FFplay, but the browser is my goal for now). It’s similar to the concept of playlist in Youtube, ... there should be no cut between two consecutive clips (which is the case right now with playlist in Youtube).
Is that possible with existing API/tools/techniques ?