
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 (22)
-
Création définitive du canal
12 mars 2010, parLorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
A la validation, vous recevez un email vous invitant donc à créer votre canal.
Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...) -
Utilisation et configuration du script
19 janvier 2011, parInformations spécifiques à la distribution Debian
Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
Récupération du script
Le script d’installation peut être récupéré de deux manières différentes.
Via svn en utilisant la commande pour récupérer le code source à jour :
svn co (...) -
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 : (...)
Sur d’autres sites (6947)
-
How to record/download m3u steam video from url using FFMPEG
14 juin 2019, par gaurav gajjarI am trying to download video from m3u live stream but there is some part of video download
in this m3u8 url return segments and this segments merge and give video but video length is like one request response segments , i am try to download steam url but only 15 sec video will download.
how to continue download m3u8 using FFMPEG
URL i will try to download or record
http://cshms3.airtel.tv/PLTV/88888888/224/3221226049/index.m3u8
String[] command = { "-y", "-i", INPUT_FILE, "-vcodec", "mpeg4", "-b:v", "2097152", "-b:a", "48000", "-ac", "2", "-ar", "22050", dir.toString() + "/yourvideoname1.mp4"};
-
how to convert 1,000,000 gifs into a video file using ffmpeg
16 janvier 2015, par Thomas Buckleri have 1 million gifs in a folder that i would like to convert into a 60 frames per second video file using ffmpeg. Here is my code :
ffmpeg -r 60 -pattern_type glob -i *.gif -c:v libx264 out.mp4
my gifs don’t follow a %07d.gif pattern like 0000001.gif 0000002.gif but they are indeed in sequential order. like this : img1.gif, img2.gif ... img10.gif ... img10000.gif ... img1000000.gif.
When i try to execute my code i get this :
-bash: /usr/local/bin/ffmpeg: Argument list too long
please help. thank you.
-
Encode using ffmpeg surface stored in IDXGISurface
2 février 2023, par Alexandru-Marian BuzaAcquiredBuffer.Attach(Buffer.MetaData.pSurface);
IDXGISurface* surface;
 DXGI_MAPPED_RECT cpuImage;
 AcquiredBuffer->QueryInterface(IID_PPV_ARGS(&surface));
 surface->Unmap();
 hr = surface->Map(&cpuImage, DXGI_MAP_READ);
 if (FAILED(hr)) {
 }
 else {
 av_frame_make_writable(frame);
 memcpy(frame->data[0], cpuImage.pBits, cpuImage.Pitch);
 }
 surface->Unmap();



The map fails. Maybe the IDXGISurface is accesible only from GPU


I've tried a lot of methods to make it CPU accesible.


Another solution would be to encode frame with ffmpeg directly on GPU , so i don't need to copy it to cpu, but not sure how i could do that.