
Recherche avancée
Autres articles (12)
-
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 -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (3143)
-
BlueImp Fileupload - do action after single file upload when uploading multiple files ?
11 juillet 2014, par Mr PabloIs there anyway to get the event after a single file has finished uploading, when adding multiple files to the uploader ?
I want to do some processing (converting video files with FFMPEG) after each file is uploaded.
Currently, when uploading multiple files, with my conversion script fired in the "done" event, only one file is being converted, despite the script being fired in a $.each() loop.
I can’t seem to find the event for finding out when a single file has finished uploading, in the documentation.
-
Single FFMpeg command to merge 2 audio with 1 video
26 avril 2019, par YadavKI have a requirement like i have to merge 2 audio with single video. I found lots of solutions but none of them provide just the single command for the requirement.
Here is the solution for that :
-i sample_video.mp4 -i sample_audio1.mp3 -i sample_audio2.mp3 -filter_complex [1][2]amix=inputs=2[a] -map 0:v -map [a] -c:v copy Output.mp4
you can also set the audio range like 8sec - 20 sec then use the below command
-i sample_video.mp4 -i sample_audio1.mp3 -i -ss 8 -t 20 sample_audio2.mp3 -filter_complex [1][2]amix=inputs=2[a] -map 0:v -map [a] -c:v copy Output.mp4
the above sample will merge second audio from 8 sec to 20 sec only as we specify the range -ss 8 -t 20
-
Using FFMPEG to automatically set a single max filesize across multiple different sized files
14 juin 2020, par DuffCreeperI don't really know how to word it any better but I'm trying to convert WEBM/GIF to MP4 with no sound



The problem I'm facing is retaining the quality without having to sacrifice it across multiple files by having to resize them to 420p



The idea was to hopefully somehow get FFMPEG to automatically determine the bitrate required for the file to hit the filesize of 10mb. Though I have looked everywhere online and I have not found a single answer regarding it, so either it's not possible or I'm blind