
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (68)
-
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 -
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 (...) -
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 (...)
Sur d’autres sites (7625)
-
How does big companies transcode/encode videos so fast ?
24 avril 2022, par Emir GeçirFor example how does Facebook, YouTube, Reddit and many countless sites encode videos so fast ? Do they all have in-house solutions ? Tools like FFMPEG and Handbrake are alot slower to how they process files.


I had a hard time deciding if this should be posted on the softwareengineering stackexchange then decided stackoverflow seemed more fit for the question.


-
Command for concatenate videos of different bitrate with FFMPEG
20 décembre 2020, par Sanchit SharmaI want to concatenate some videos through FFMPEG, while I am doing this it concatenates without any error, but in the output the video becomes double of its length.


Here is the code that i am using :


ffmpeg -f conacat -i file.txt -c copy output.mp4


I've also used many suggestions from the web, but still i am finding myself nowhere.


-
Merge two videos by ffmpeg hstack and add delay for second video
16 octobre 2017, par venkathaving two videos and two audio files
- starting at 00:00:03 and duration 145 seconds
- starting at 00:00:09 and duration 140 seconds
want to merge two videos side by side and add delay for second video by 6 seconds, for the 6 seconds need to show black color or some empty frame and merge audio files respectively with delay.
using the following command to merge two videos
ffmpeg -i first.mkv -i second.mkv -filter_complex "
[0:v]scale=320:240,pad=325:240,setsar=1[l];[1:v]scale=320:240,setsar=1[r];
[l][r]hstack" -c:v libx264 -preset ultrafast -crf 0 merged.mp4as far now i didn’t use audio in merging.
any suggestions or help ?