
Recherche avancée
Autres articles (38)
-
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 (...) -
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (5785)
-
Make FFmpeg output a similar video quality
18 février 2015, par NoctaI’m using FFmpeg in my program to cut a video. This is the command my program executed :
ffmpeg -i in.avi -ss 00:00:00.000 -to 00:04:35.000 out.avi
Quality and size of out.avi are MUCH lower than in.avi. How can I tell FFmpeg to keep the quality of the input file ? I don’t want to use -c copy because then the video will start with black frames.
Here is the output without -c copy (command above) http://pastebin.com/JYYRsFsQ
Here is the output of the command with -c copy
ffmpeg -i in.avi -ss 00:00:05.000 -c copy -to 00:04:35.000 out.avi
output with -c copy : http://pastebin.com/wXPhBSYj
-
What are the inputs required in ffmpeg to create a video similar to below metadata
3 mars 2015, par user1418852My requirement is to sync durations of videos(.wmv) and merge two videos. Unfortunately a few video duration are too short so I need to add blank video ahead to make all videos of uniform length.
In this scenario i am trying to create a blank video with below options :
ffmpeg -r 30 -i "blank.png" -c:v libx264 -crf 23 -pix_fmt yuv420p demo.wmv
Once the blank video gets created it is merged with the existing video.
FFmpeg returns me an error 1 and exits.
The metadata for the generated video through ffmpeg :
Metadata:
encoder : Lavf55.44.100
Duration: 00:30:00.00, start: 0.000000, bitrate: 206 kb/s
Stream #0:0: Video: msmpeg4v3 (MP43 / 0x3334504D), yuv420p, 856x561, SAR 1:1
DAR 856:561, 25 fps, 25 tbr, 1k tbn, 1k tbcMetadata for existing video :
WMFSDKVersion : 10.00.00.3700
WMFSDKNeeded : 0.0.0.0000
IsVBR : 0
DeviceConformanceTemplate: MP@ML
WM/WMADRCPeakReference: 18626
WM/WMADRCAverageReference: 3308
Duration: 00:30:00.73, start: 0.000000, bitrate: 964 kb/s
Stream #0:0(eng): Audio: wmav2 (a[1][0][0] / 0x0161), 48000 Hz, 2 channels,
fltp, 128 kb/s
Stream #0:1(eng): Video: wmv3 (Main) (WMV3 / 0x33564D57), yuv420p, 720x576,
832 kb/s, SAR 1:1 DAR 5:4, 25 tbr, 1k tbn, 1k tbcWhat are the inputs required to achieve above format ?
-
avfilter/vf_blend : refactor similar code
27 septembre 2021, par Paul B Mahol