
Recherche avancée
Autres articles (41)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
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 (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (4770)
-
How to convert a 16:9 video to 4:3 video with top & bottom blurred video bars by using ffmpeg ?
27 décembre 2018, par Wai GyiI would like to convert a landscape video to a square video with blur bars at top and bottom.
I tried to adapt the commands from the following link but not succeeded.
So, can someone share a ffmpeg command with me ?
Thank you very much for your help.
Update : I tried again and get a working command. Please check and review.
ffmpeg -i in.mp4 -lavfi "[0:v]scale=iw:iw*3/4,boxblur=luma_radius=min(h\,w)/40:luma_power=3:chroma_radius=min(cw\,ch)/40:chroma_power=1[bg];[bg][0:v]overlay=(W-w)/2:(H-h)/2,setsar=1,crop=h=iw*3/4" out.mp4
-
FFmpeg - Add Audio to Video - Audio cuts out
13 mars 2021, par John DoeI have a problem with my Batch-file FFmpeg command. I wish to concat 3 videos into one, and add background music starting after 10 seconds.


The video renders properly, however the music cuts out 10 seconds into the second concat video and the rest of the video is silent.


(echo file 'loading.mp4' & echo file 'slide.mp4' & echo file 'outro.mp4') | ffmpeg -y -init_hw_device qsv=hw -filter_hw_device hw -hide_banner -protocol_whitelist file,pipe -f concat -safe 0 -i pipe: -stream_loop -1 -i "music.mp3" -filter_complex "[1:a]adelay=10000|10000,afade=t=in:st=11:d=10,volume=0.2[a1];[0:a][a1]amix=duration=first[audio]" -map "0:v" -map "[audio]" -c:v h264_qsv -c:a aac -vb 10M -preset veryfast -r 30 "done.mp4"



Any ideas ?


-
Do we need to transcode mp4 or mp3 to HLS format for streaming video/ audio on mobile app ?
5 mai 2016, par ken_vkWe are developing a mobile app which play music and video .
The music (.mp3) and video(.mp4) is about 5 - 20 MB . I knew we must to transcode from .mp4 to HLS format ( .m3u8) for streaming. And I still consider about transcode audio file to HLS format whether or not ?
I have two question.
-
Do we need transcode video (.mp4) to HLS format if the files are about 5- 20 MB.
-
Do we need transcode mp3 file to HLS format if the files are about 5 - 10 MB ?
Thank you in advance,
Regards,
Khoa Nguyen -