
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (42)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Les images
15 mai 2013 -
Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur
8 février 2011, parLa visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
Configuration de la boite multimédia
Dès (...)
Sur d’autres sites (7243)
-
If I kill ffmpeg command its video lenght is 5 seconds shorter then the actual length ?
7 mai 2014, par Sumit JasujaI am using ffmpeg to capture screen. output is in mp4 format. when I kill ffmpeg command its video length is 5 seconds shorter then the actual length.
Process killed using following code :
foreach (Process pr in Process.GetProcessesByName("ffmpeg"))
{
pr.Kill();
} -
ffmpeg modify audio length/size ( stretch or shrink)
24 janvier 2024, par midoI am developing a web app, where people can record videos. I have been able to send chunks of audio n video to server successfully, where I am trying to combine them and return as single proper file.



my problem is if the recording is for one hour, after merging the chunks



video length : 1:00:00 , audio length : 00:59:30,



now, this is not a issue of audio not getting recorded( I have checked that), the problem is, somehow, when i merge the chunks of audio, it shrinks,





I find that it is progressive sync issue where it gets worse and worse as time increases.





I have searched the net for the solution, most places say
async
, I have tried using it, but to no avail, is the below usage correct ?


ffmpeg -i audio.wav -async 1 -i video.webm -y -strict -2 v.mp4



(v.mp4 is the final file that I provide to the users.)


-
ffmpeg modify audio length/size ( stretch or shrink)
14 juin 2016, par midoI am developing a web app, where people can record videos. I have been able to send chunks of audio n video to server successfully, where I am trying to combine them and return as single proper file.
my problem is if the recording is for one hour, after merging the chunks
video length : 1:00:00 , audio length : 00:59:30,
now, this is not a issue of audio not getting recorded( I have checked that), the problem is, somehow, when i merge the chunks of audio, it shrinks,
I find that it is progressive sync issue where it gets worse and worse as time increases.
I have searched the net for the solution, most places say
async
, I have tried using it, but to no avail, is the below usage correct ?ffmpeg -i audio.wav -async 1 -i video.webm -y -strict -2 v.mp4
(v.mp4 is the final file that I provide to the users.)