
Recherche avancée
Autres articles (22)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (5402)
-
[FFmpeg on Windows] : help me converting a set of .png files to a video file
31 octobre 2016, par Stefano FedeleHi everybody I am on windows 10, I installed FFMpeg and I would like to use it to convert 100 .png image files into a video file.
I am using it via the prompt, which is the Windows console, and I am struggling with the syntax (which probability comes from Linux). I set the folder in which ffmpeg.exe is contained as a windows system path as suggested on many websites and I moved the prompt to the folders in which the image files are contained which is reported here :
cd C:\video\pnts + ag 40 nm- during-tmpyp 10-12- laser power 7mw- kinetic100- exposure time 1s- gain
I would like to convert the image files contained in this folder into a video file, the names of those image files are reported here :
pnts + ag 40 nm- during-tmpyp 10-12- laser power 7mw- kinetic100- exposure time 1s- gain 20 001.png
pnts + ag 40 nm- during-tmpyp 10-12- laser power 7mw- kinetic100- exposure time 1s- gain 20 002.png
...
...
pnts + ag 40 nm- during-tmpyp 10-12- laser power 7mw- kinetic100- exposure time 1s- gain 20 100.png
The number of frames per second whould be 2.
I read on internet that I should have to type something like this
ffmpeg -i image-%03d.png video.webm
But it looks like there are a lot of variables to consider and all the times I try to set them and run FFmpeg I get an error from the prompt.
Is there anyone who could suggest me the proper syntax, please ? -
Révision 108131 : [ux] Placer la prévisualisation du forum sous le forum (au lieu de dessus)
20 décembre 2017, par erational@erational.org -
How to crop and scale correctly with FFMPEG ?
16 juin 2020, par Rivera A. PabloI'm trying to remove the TOP AND BOTTOM black bars of a video.






What i'm trying to achieve






The video itself is 1280x720 16:9, but the portion that's image information is at 4:3 since it's been captured from a VHS. I want to somehow stretch it until the top bars disappear without deforming the image. I don't care about the left and right bars.



I tried using
crop
andscale
with no luck.


By using this code the top and bottom black bars disappeared on VLC when on normal screen but when going Full Screen the bars appeared again.



ffmpeg -i test.avi -filter:v "crop=1280:670" output_video.mp4




I thought it had something to do with the Scale of the video but honestly every
scale
code I tried to use deformed the image a lot.


I hope someone can help me, fairly new to FFMPEG but really enjoying it this far.