
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (111)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 -
Soumettre bugs et patchs
10 avril 2011Un logiciel n’est malheureusement jamais parfait...
Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
Si vous pensez avoir résolu vous même le bug (...)
Sur d’autres sites (10930)
-
How to Re-stream SDP as RTSP (at smaller resolution) using ffmpeg
6 avril 2018, par mikeyb976I have an existing rtp stream (720p) via SDP which I would like to restream as RTSP as 360p resolution.
I’ve been able to restream the sdp as rtsp successfully, using the command below :
ffmpeg -protocol_whitelist file,udp,rtp -re -i mike1.sdp -c:v libx264 -s 640x360 -f rtsp -muxdelay 0.1 rtsp ://[username] :[password]@127.0.0.1:1935/live/myStream
and my local wowser streaming server recognises the stream source as rtsp. I can also playback the video using a small c# project that implements vlc.dotnet.wpf player control. I just inject the rtsp url into it, and it loads.
What I don’t know, is How can I create the rtsp stream so that it is at a lower resolution of 360p. (the source is 720p)
Any help is much appreciated
-
using ffmpeg to record highest resolution offered by Facetime cameras (mac)
15 juin 2018, par user1361529I am using the following code successfully to record a video feed from my mac
./ffmpeg -f avfoundation -framerate 30 -i "default" out.mp4
This however seems to be recording video at the lowest resolution of
320x200
My camera supports the following resolutions :
[avfoundation @ 0x7ff7b2800000] Supported modes:
[avfoundation @ 0x7ff7b2800000] 1280x720@[1.000000 30.000000]fps
[avfoundation @ 0x7ff7b2800000] 640x480@[1.000000 30.000000]fps
[avfoundation @ 0x7ff7b2800000] 320x240@[1.000000 30.000000]fpsI tried manually specifying the resolution using both
-s
and-video_size
but that seems to just scale up the low res video.How do I get ffmpeg to pick my
1280x720
resolution ?thanks
-
ffmpeg scale/forcing fixed video resolution issue
31 janvier 2018, par Massimo VantaggioI try to be sure that the
video comes out
with aresolution
of1920 x1080
,
If not the encodingmust force this resolution
.
I need this to create fine adaption set from a video input with standard resolution (HD).Im unable to get always this resolution, for example with a movie of
1920 x 1040 i get 1993 x 1080, below my ffmpeg command line :
ffmpeg -y -i $name -i logo1080.png -c:a aac -b:a 256k -ar 48000 -ac 2 -async 1 -c:v libx264 -x264opts keyint=$GOP:min-keyint=$GOP:no-scenecut -bf 0 -r $FPSC -b:v 2400k -maxrate 2400k -bufsize 1200k -profile:v main -t $FDUR -filter_complex "[0:v][1:v]overlay=main_w-overlay_w-10:10,scale=1920:1080" format1080.mp4
I tried every possibility that the ffmpeg scale page tells, without understand how to fix it.
I think i need some help,
Thanks,
Massimo