
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (111)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Création définitive du canal
12 mars 2010, parLorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
A la validation, vous recevez un email vous invitant donc à créer votre canal.
Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)
Sur d’autres sites (8123)
-
ffmpeg command to merge file with good quality
21 janvier 2016, par Hemant KumarI am looking for a better command that can merge both audio & video files into one with a better quality.
I found this command from Muaz Khan’s WebRTC APIs.
ffmpeg -i {$audioFile} -i {$videoFile} -map 0:0 -map 1:0 {$mergedFileName}
Later on server i had to add "-strict -2" with this command as on server it says that above command is experimental if I still want to use it you should add "-strict -2" with it.
It is working well but my video file (.webm) with size 2.2MB and audio file (.wav) with size 1.5MB was merged into a new file (.webm) with size 422.5KB. This new video file is having lag.
Also I want the meta information for duration of video is already written on the resulting video file.
Is there any command which can give the merged file without lagging and both video and audio of the new file are of good quality ?
-
good and simple way to record audio and video from logitech webcam with python
21 mars 2021, par dahan razI am looking for a good and simple solution to record both audio and video from my Logitech webcam using python.

I tried using ffmpeg but I can't get it to work well.

also, I am using this on windows so the solution should work on windows.

-
Is there a good list of mp4 supported resolutions and a way to have ffmpeg calculate the width after modifying by set height ratio ?
16 novembre 2016, par NovaAfter finding the resolution was the source of all my webm to mp4 codec conversion errors on my android. I came across another problem. To break down my question :
Is there a good list of mp4 resolutions that are supported on most devices ? I know they go by p from certain height value for them to work. 720p / ???x720 for example.
Also is there an easier way to calculate the width based from the height change while keeping the ratio ?
ffmpeg -i old.webm -t 00:00:03 -s 320x240 new.mp4
I currently use the -s setting perimeter from my testing example. Any help would be appreciated.