
Recherche avancée
Médias (2)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (57)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (12333)
-
Value range for AVCodecContex::global_quality, ::compression_level and AVFrame::quality
27 février 2019, par BimI’m trying to compress video using different codecs (WMV, MP4, H264, VP8, VP9) using FFmpeg / libav. I’m unsure on how to set the global and per-frame quality values. Even the range of values is unclear to me. The docs are not helpful.
Currently I’m using :AVCodecContex::global_quality = FF_QP2LAMBDA * quality; // no idea about range, default seems to be 0
AVCodecContex::compression_level = 0; // There is FF_COMPRESSION_DEFAULT (-1), which seems to be the default
AVFrame::quality = FF_LAMBDA_MAX * quality; // docs say range is [1, FF_LAMBDA_MAX], default seems to be 0quality is in the range [0,1], where 0 means best image quality. Only 0 seems to do anything for me and leads to ok-quality videos. All other values produce low-quality output.
Any clarification on how to set these values is welcome. -
Creating 3D animated map video
2 mars 2024, par Bob Stonehttps://docs.mapbox.com/mapbox-gl-js/example/query-terrain-elevation/


I did the same animation in the link using react native. Now I want to export this to a video.


I want user to click a button then everything to be done at backend. For example, send post request to
/api/createMapVideo and request body contains the coordinates of MarkerViews, polyLines etc... and use theese data to create animated map video then store it on cloud and after doing all of that send the url of video in the cloud as response. Like relive app's 3d videos.


How can I achieve this functionality ? I want to create animated map video on backend. Or are there better solutions ?


-
Installed codec not working ffmpeg
25 février 2015, par Chris James ChampeauI have ffmpeg installed on my server, I can trancode mp4 and it works great.
However, I have installed the Theora codec as it explains here, http://cumulusclips.org/docs/install-ffmpeg-x264-on-centos/#Theora_Codec
When I run this code
FFREPORT=file=ffreport.log:level=32 /usr/local/bin/ffmpeg -nostdin -report -i testinput.mp4 -y -b 250k -deinterlace -vcodec libtheora -acodec libvorbis testoutput.ogg
I get the following error
Unknown encoder 'libtheora'
Is there something I missed, any help would be appreciated