
Recherche avancée
Autres articles (68)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 (...)
Sur d’autres sites (7836)
-
avconv/ffmpeg to sync audio in a single file
6 avril 2014, par Jeff ThompsonI have an avi file with duration 1 hour. The audio rate is out of sync and ends about 2 minutes before the end of the video. I used the avconv -async option :
avconv -i unsynced.avi -i unsynced.avi -acodec adpcm_ms -vcodec copy -map 0:0 -map 1:1 -async 1000 synced.avi
But the output audio is still out of sync. Am I using the avconv command correctly to sync the audio with the video in the one input file ?
Thanks,
Jeff
-
Converting avi to mp4 : audio is out of sync
17 octobre 2011, par M.SI'm using ffmpeg to convert a video from avi to mp4.
The audio / video in the output mp4 are out of sync. I researched and found the following link, which suggests that this is an issue with newer builds of ffmpeg :I tried build 18715 as suggested and indeed the a/v is in sync. I thought I'd just use this build, but I then realized that the output file size is much larger (about a third more). Any idea why ? Bandwidth is currently a major concern in my application.
I'm trying to either solve the sync problem with the latest build or figure out how to reduce the size of the file with the older build. Any suggestions ?
EDIT :
The command I use for the conversion :ffmpeg -i test.avi -vb 100k -ab 48k -r 20 test.mp4
This is a very low res and quite static video and the low bitrate is adequate (and isn't a cause for any problem when not using mp4).
-
Start service with start-stop-daemon on Ubuntu 16.04 with timeout
26 février 2018, par TopperI have /etc/init.d/stream proces with start/stop/restart options.
It’s run ffmpeg with daemon options taken from /etc/default/stream DAEMON_OPTIONS.
Start at background (-b) crate pid (/var/run/stream/stream.pid) etc.How could I add timeout 60 seconds to be sure that stream will be forcebly stopped if exceed 60 sek. timeout ?
Can’t run "—exec timeout 60 ffmpeg" because service runs only timeout command.
I’m I missing something or try to use wrong command ?