
Recherche avancée
Autres articles (59)
-
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 (...) -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (6392)
-
FFProbe not sending custom Headers
3 février 2017, par Aiden901223I am trying to use FFprobe with a custom header that enables me to access the multimedia information such as frame-rate, bit-rates and etc of an URL. Custom Headers (-headers) were set based on the ffmpeg documentation and tutorials examples.
Command snippet :
ffprobe -headers $'X-CloudFront-Secret: A-VALID-TOKEN' -v error -show_format -show_streams -print_format json -i "URL"
It returns a 403 Forbidden message.
cURL-ing the URL with the custom header yields a 200 Response.
Am I setting the ffprobe custom header right ?
Thank you !
-
Nvidia Cuda video decoder- Purpose of CUVIDMPEG4PICPARAMS and CUVIDH264PICPARAMS
27 octobre 2016, par GurralaWhen I am going through the NVIDIA Cuda decoder, the
cuvidDecodePicture
returns a pointer to CUVIDPICPARAMS. However theCUVIDPICPARAMS
contains a union which holds two separate variables forCUVIDMPEG4PICPARAMS
andCUVIDH264PICPARAMS
.When decoding H.264(AVC) video which structure should I use for the post processing ?
-
how to run ffmpeg terminal (mac) command in java
18 avril 2016, par HasanI use FFmpeg codec in order to do the video conversion. This time I have a huge number of videos, so I am trying to do the video conversion automatically.
I am trying to do so like this in java.
Runtime.getRuntime().exec("ffmpeg -video_size 1920x1080 -r 25 -pixel_format yuv422p -i input.yuv -vf yadif output.yuv");
But my java program returns the following error :
Cannot run program "ffmpeg": error=2, No such file or directory
Does anyone has any clue how I can do it in java ?