
Recherche avancée
Médias (1)
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
Autres articles (48)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (8924)
-
Rails Thumbnails for videos being uploaded to S3
20 octobre 2015, par DaniI have a rails application where I need to upload videos to an amazon s3 bucket alongwith their thumbnails. I am using ffmpeg to generate thumbnails and I am using carrierwave to handle video uploads. Here is my video uploader class
class VideoUploader < CarrierWave::Uploader::Base
include CarrierWave::Video
storage :fog
def store_dir
"uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
end
def extension_white_list
%w(mp4 flv)
end
endThe video uploads fine and the column for video url is set in videos table but I want to generate thumbnail and upload it as well. I know I have to use ffmpeg here but don’t exactly know how to do it.
Any help will be appreciated.
-
How to concat multiple sets of 2 videos using ffmpeg and for loop
25 janvier 2020, par Rawr Linux MmmI am trying to batch merge multiple sets of 2 videos.
Clarification : I am trying to merge 2 videos into 1, multiple times, quickly.I have two folders, one full of mp4’s in which I want in the beginning of the output video. Another full of mp4’s in which I want at the end of the output video.
Basically I am trying to merge the first video in folder1 with the first video in folder2, and then the second video in folder1 with the second video in folder2, etc...
Here is what I have, and I was trying to run this script inside the video directory of folder1.
for filename in *.mp4; do
vids2="/path/to/2nd/set/of/videos/${filename%.*}"
out="/path/to/output/folder/$(date +'%Y-%m-%d_%H:%M:%S').mp4"
ffmpeg -i "${vids2}.mp4" -i "${filename%.*}.mp4" -acodec copy -vcodec copy "$out"
doneI also tried this in which I ran from anywhere since I defined all the paths.
for filename in *.mp4; do
vid1="/path/to/folder1/videos/${filename%.mp4}"
vid2="/path/to/folder2/videos/${filename%.mp4}"
out1="/output/folder/$(date +'%Y-%m-%d_%H:%M:%S').mp4"
ffmpeg -i "$vid1" -i "$vid2" -acodec copy -vcodec copy "$out1"
donebut that didn’t work either...
Does anyone know what I am doing wrong ?
-
Displaying multiple videos on Panels locks UI - using Refresh() / Invalidate()
7 mai 2015, par erusluI try to show 32 different videos (
768 * 532 pixels
and25 fps
) on an application as two4x4
displays. Each video is displayed on aPlayer
class which has aPanel
object.
I get the RTP streams from network and converting them to bitmap image usingFFmpeg
and set bitmaps as panel background images and thenRefresh()
the panel.
When the number of displaying videos increases (as 17-18) the UI starts to lock, it is not responding.
Then I useInvalidate()
, this time UI is not locking, it responds any events even for 32 displays but after 17-18 display it can not catch up refreshing rate (25fps
). The videos are displayed by skipping some of the frames.
I am setting background images ofPanel
’s and refreshing them in different threads. Do I need to do one refreshing for all panels. Or use another refreshing method ?
Any help will be appreciated, thank you.