
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 (43)
-
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 (...) -
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
Activation de l’inscription des visiteurs
12 avril 2011, parIl est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)
Sur d’autres sites (5723)
-
Live video broadcasting in android using front and back facing cameras [on hold]
1er décembre 2016, par Jun KimThis is my first time I am posting a question on Stack Overflow.
I am currently developing an android application. My goal is to make an app that captures and records video and broadcasts it to other mobile devices as well as web browsers like
facebook
live.
(Nowadays, famous apps like Youtube, Facebook, Twitch, Periscope has this function)Now, I am just researching what technologies and ways to develop this app.
I have been researching and reading a lot of blogs and documentations for the past five weeks about FFMpeg, different types of streaming technologies, types of web servers etc. I decided to use MPEG-DASH for my app and nginx server (Nginx-rtmp-module).
While searching further, I got stuck and confused about how I can possibly capture & record video using internal camera of Android mobile devices.
I was thinking that I could use MediaRecorder to capture & record (I could hardly find an example using MediaRecorder to record video) and use FFMpeg
to somehow encode with the certain video and audio codecs to make a container format and send it to nginx server to broadcast other devices.
But then.... i am not sure if this is the right way to do it...My questions is... I would like to know the whole process (in detail if it possible) how I can possible record and broadcast to other devices.
The whole process of recording video using internal camera that is in user’s mobile device and send the frame to the server to broadcast to other devices seems difficult to imagine for me... Can anyone elaborate ?
Or any suggestion about how can I reach my goal ?
Every help would be appreciated. -
Introducing Matomo SEO Web Vitals
-
Batch converting multiple video formats in nested directories
1er octobre 2020, par Dave CoffinI'm running Arch/Gnome and am trying to convert a few hundred gigs of family videos from various formats (mov, wmv, mkv, avi mainly, but a few curveballs too) into trusty mp4s.


My scripting knowledge is strictly amateur, so far I have ;


for i in *.avi; do ffmpeg -i "$i" "${i%.*}.mp4"; done


That works fine for one directory. There are hundreds. I'd like to replace that one-liner with something more encompassing that I can just run and go to bed.


Wish list ;


- 

-
run recursively


-
convert from mov, wmv, mkv and avi without having to run separate scripts


-
delete old file upon successful completion


-
keep the same file name


-
if it finds an error, just skip the file and keep going - don't stop the process














Any help with any and/or all of these bits to cobble something together that'll work would be most appreciated.


-