
Recherche avancée
Médias (3)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (68)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
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 (...)
Sur d’autres sites (7839)
-
Real-time video render
21 août 2014, par Max GrigorievWe’re staring a new project where we should be able to modify on the fly video - add text, insert image.
Project is planing to be written in Java.
I’m a newbie in video processing so I want to understand.
What is the best and fast solution to modify video and return to client (web browser).
I can easy do it using ffmpeg but mp4 is not streamable. And I should write it to file first and then return to client - it’s not fast.
Maybe my question is very abstract but I should to start from somewhere :)Thanks
-
How can i convert and compress in real time batch of images to mp4 video file ?
29 juin 2015, par Brubaker HaimIn my directory on the hard disk i have many images : screenshot000001.bmp , screenshot000002.bmp....screenshot001200.bmp
I want to do two things :
-
For testing using the cmd(Command Prompt) and to compress and convert the images to mp4 video file.
-
In my program in real time while my program take the screenshots and save them to the hard disk to compress them and build the mp4 video file in real time.
For the first part i tried to type in cmd :
ffmpeg -f image2 -i screenshot%d.bmp -vcodec libx264 -b 800k video.avi
But what i got is two errors :
[image2 @ 0000000004766380] Could find no file with path ’screenshot%d.bmp’ and
index in the range 0-4
screenshot%d.bmp : No such file or directoryI copied the ffmpeg.exe to the directory where the images are in.
E :\screenshotsFor the second part this how i’m taking the screenshots in real time :
A button click event that start a timer :
private void button1_Click(object sender, EventArgs e)
{
timer1.Start();
}Then in the tick event :
ScreenShot shot = new ScreenShot();
public static int counter = 0;
private void timer1_Tick(object sender, EventArgs e)
{
counter++;
shot.GetScreenShot(@"e:\screenshots\", "screenshot");
if (counter == 1200)
{
timer1.Stop();
}
}This line shot.GetScreenShot(@"e :\screenshots\", "screenshot") ; save the screenshots to the hard disk.
Here after each screenshot save i want to compress and build the mp4 video file in real time.I tried this and got errors :
ffmpeg -f image2 -i screenshot%06d.bmp -vcodec libx264 -b 800k video.avi
Error message :
ffmpeg version N-73165-gf1e1730 Copyright (
built with gcc 4.9.2 (GCC)
configuration: --enable-gpl --enable-vers
isynth --enable-bzlib --enable-fontconfig -
le-iconv --enable-libass --enable-libbluray
enable-libdcadec --enable-libfreetype --ena
ibilbc --enable-libmodplug --enable-libmp3l
le-libopencore-amrwb --enable-libopenjpeg -
able-libschroedinger --enable-libsoxr --ena
ble-libtwolame --enable-libvidstab --enable
--enable-libvorbis --enable-libvpx --enabl
e-libx264 --enable-libx265 --enable-libxavs
ble-decklink --enable-zlib
libavutil 54. 27.100 / 54. 27.100
libavcodec 56. 45.100 / 56. 45.100
libavformat 56. 38.102 / 56. 38.102
libavdevice 56. 4.100 / 56. 4.100
libavfilter 5. 18.100 / 5. 18.100
libswscale 3. 1.101 / 3. 1.101
libswresample 1. 2.100 / 1. 2.100
libpostproc 53. 3.100 / 53. 3.100
[bmp @ 0000000002f77ce0] bad magic number
Last message repeated 3 times
[image2 @ 0000000002f76380] decoding for st
[image2 @ 0000000002f76380] Could not find
bmp, none): unspecified size
Consider increasing the value for the 'anal
screenshot%06d.bmp: could not find codec pa
Input #0, image2, from 'screenshot%06d.bmp'
Duration: 00:00:02.88, start: 0.000000, b
Stream #0:0: Video: bmp, none, 25 fps,
Please use -b:a or -b:v, -b is ambiguous
Codec AVOption b (set bitrate (in bits/s))
vi) has not been used for any stream. The m
e (e.g. a video option with no video stream
some encoder which was not actually used fo
Output #0, avi, to 'video.avi':
Output file #0 does not contain any stream -
-
How can I use FFMPEG to stream an mp4/mov file as its being created in real time ?
9 janvier 2021, par rrst8I was wondering if I could stream an mp4/mov file as it was being created to an RTSP server. Unfortunately, the source where I want to stream from does not have FLV output and so I wanted to know if there was a way I could stream mp4/mov instead.