
Recherche avancée
Médias (2)
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
Autres articles (48)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
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 (4280)
-
Non monotonically increasing dts to muxer in stream 1 [closed]
12 avril 2013, par Bill HumptonI have an error with 1gb videofile and avconv
Application provided invalid, non monotonically increasing
dts to muxer in stream 1: 177873 >= 177849
av_interleaved_write_frame(): Invalid argumentI use
avconv -i /root/video/112-1.wmv -y -strict experimental -b:v 1800K -ss 00:00:10 -c:v libx264 -c:a libfaac -ar 44100 -ac 1 -b:a 128k -threads 0 -maxrate 1850k -bufsize 1000k -vf "scale=w=1280:h=720, drawtext=fontfile=FreeSans.ttf:text='site.com':fontcolor=white@1.0:fontsize=20:x=1130:y=695" /root/converted/112-1.wmv
Here is my log http://pastebin.com/BwBmVMDs
I tried to suppress b-frames by adding -bf 0 option, but also same error.
How can I avoid this error ?
-
FFmpeg transcode seek gap ?
12 avril 2016, par jjw2015I noticed that if using default settings, the transcoded video (to mp4) has pretty large "seeking gap" : when I want to seek to 10th second, it either goes to 8th second, or goes to 12th second, etc.
After some searching, I noticed that I can modify the value
keyint
to reduce the above "seeking gap", at the cost of larger file size.Just want to know if this is the only option. Comments welcome !
My command :
-i "input.mts" -y -c:v libx264 -vf "yadif=0:-1:0,scale=1280:trunc(ow/a/2)*2" -minrate 3400K -maxrate 3800K -bufsize 1000K -c:a aac -b:a 128k -ar 48000 -ac 2 "output.mp4"
-
Low Latency Desktopstreaming with ffmpeg (p2p)
8 avril 2016, par GringI’m trying to stream my Desktop from one Pc to another with udp. Unfortunately the Latency is pretty high (I already could reduce it from about 15 Seconds to 2 Seconds, in tests where I run client and host on the same PC.
My Hostcommand looks like this :ffmpeg -f dshow -framerate 24 -i video=screen-capture-recorder -vf scale=1280:720 -vcodec libx264 -force_key_frames "expr:gte(t,n_forced*2)" -pix_fmt yuv420p -tune zerolatency -preset ultrafast -f mpegts udp://239.255.1.2:1234
My Clientcommand looks like this :
ffplay -fflags nobuffer -infbuf -fast -framedrop -vf "setpts=(PTS*0.95)" udp://239.255.1.2:1234
Any Ideas, how to get this even faster ?