
Recherche avancée
Autres articles (111)
-
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 (...) -
MediaSPIP Player : les contrôles
26 mai 2010, parLes contrôles à la souris du lecteur
En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)
Sur d’autres sites (5795)
-
PHP FFmpeg, upload video and let user select start and end offsets to trim the video
9 novembre 2015, par KunalThis is what I need to do :
- User goes to the HTML web app (works on desktop and mobile)
- Uploads a video (depending on phone recording and bitrate, could be 100mb)
- Use FFMPEG to trim the video to 15 seconds only.
Now for the 3rd part we need to let the user select the start and end offsets for the trimming. Maybe extract scenes and let them select ?
Please help. Thanks in advance.
-
Add Audio to video with existing audio using FFmpeg and change volume of of both audios
14 juin 2017, par 1234567Add Audio to video with existing audio using FFmpeg and change volume of both audios
I am using this command from ffmpeg to merge audio to video
video.mp4 has
video and audio
, and audio.m4a only hasaudio
ffmpeg -i video.mp4 -i audio.m4a -map 0:v -map 1:a -c copy -shortest output.mp4
I want to merge audio to video but maintain audio from both video and the new audio file
I also want to change the volume of audio file that I want to add from current file to 1.5 times
and change the audio from the video file to 0.5 times
how can we change the volume and still maintain new and old audio in the merged file
-
ffmpeg select stream from adaptive bitrate m3u8
7 février 2020, par Alkitab SuhanoI try to restream hls which is adaptive bitrate. for example m3u8 file
#EXTM3U
#EXT-X-VERSION:3
#EXT-X-STREAM-INF:BANDWIDTH=2042096,RESOLUTION=1280x720,CODECS="avc1.4d4028,mp4a.40.2"
live/stream_hd/chunks.m3u8
#EXT-X-STREAM-INF:BANDWIDTH=1008963,RESOLUTION=852x480,CODECS="avc1.4d401f,mp4a.40.2"
live/stream_sd/chunks.m3u8
#EXT-X-STREAM-INF:BANDWIDTH=756373,RESOLUTION=960x540,CODECS="avc1.4d4029,mp4a.40.2"
live/stream_md/chunks.m3u8ffmpeg always select the last stream for input. I want ffmpeg to select the first stream (1280x720) How can I do.