
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (84)
-
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
Sur d’autres sites (10656)
-
ffmpeg reverse video resolution after compression
30 août 2018, par MehranI’m trying to compress a video to
mp4
format withffmpeg
.With scale filter :
cmd = "-i, "+in+" -vf scale=480:-2,setsar=1:1, "+out;
Or as simple as this :
cmd = "-i, "+in+" "+out;
If I try this command, the outPut will be fine in many players like potPlayer(win) or mxPlayer(android), But in some players like kmPlayer.v3(win) it’s stretched. with or without scale filter.
I tried the same video compression with
Handbrake
so I find out there is nothing wrong with my player.The result is the same with all videos that I compressed with ffmpeg library
And there is another problem which is more annoying, the outPut video resolution gets reversed. for Example :
Input : w1280 h720
Output : w720 h1280
I googled a lot but I found nothing.
-
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