
Recherche avancée
Médias (1)
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (41)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (6367)
-
Using ffmpeg to split the duration of 360 video files [closed]
14 décembre 2022, par bloodstarI run this code to split normal mp4 files into 5 minute chunks however when i execute 360 video files, the videos are then converted into a normal video (360 flat view) after running this code :


@for %%I in (%*) do @ffmpeg.exe -i "%%~I" -c:v copy -c:a aac -segment_time 00:05:00 -f segment -reset_timestamps 1 "%%~nI_%%03d%%~xI" && del "%%~I"



What am i doing wrong ? thanks


-
h264_parser : don’t stop on SPS_EXT in split
31 octobre 2014, par John Stebbins -
Fluent FFMPEG complex filter to split file into multiple outputs
26 octobre 2020, par lowcrawlerIt appears possible to have multiple outputs from a single FFMPEG command : ffmpeg overlay on multiple outputs


I'd like to know how to do this in FFMPEG. I'm specifically using the complexFilter option in an attempt to split the video into 4 different sizes and place an overlay, and then save the 4 resulting files.


The code is my attempt to simply split the video into 4 and save it. I get the
Error: ffmpeg exited with code 1: Filter split:output3 has an unconnected output
error. I'm unsure how to connect the output to a file in fluent-ffmpeg.

let ffmpegCommand = ffmpeg() 
 .addInput(path.join(__dirname, PROCESSING_CACHE_DIRECTORY, "tempImage_%d.jpg"))

 .addOutput(outputPathFull)
 .addOutput(outputPathMed)
 .addOutput(outputPathSmall)
 .addOutput(outputPathThumb)


 .toFormat('mp4')
 .videoCodec('libx264')
 .outputOptions('-pix_fmt yuv420p')
 .complexFilter([
 {
 filter: 'split', options: '4',
 inputs: ['0:v'], outputs: [outputPathFull, outputPathMed, outputPathSmall, outputPathThumb]
 },
 ])



When I flip the outputs and put them below the complexFilter, I get 4 files - one with the appropriate quality (and 4x bigger than expected) and the others in very low quality.