
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (31)
-
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 (4074)
-
Can't access Google Cloud Platform hosted rtsp stream externally
1er novembre 2023, par Nikos DaskalasI have been trying to host a video to rtsp stream on a gcp vm instance.


My steps were :


a) Set up an external ip to my vm, and setup firewall rules to allow traffick.


b)Install mediamtx to my vm and start a server with ./mediamtx


c)install ffmpeg and stream my video with : ffmpeg -i video.mp4 -rtsp_transport tcp -f rtsp rtsp ://externalip:8554/live.stream


The stream runs locally, but when I try to access in with vlc or ffplay rtsp ://externalip:8554/live.stream, I cannot connect. I tried to ping the server from the client side, and it works ok.


What am I missing ? Are there any more configurations I need to do to my project ?


-
ffmpeg : avoid direct access to lowres use av_codec_g/set_lowres()
3 octobre 2013, par Michael Niedermayer -
FFMPEG Android Storage Access Framework
6 juillet 2017, par martisanI’m using FFMPEG on Android to change bitrate etc of videos that weren’t recorded within my app.
The problem I’m facing is that I can’t get the absolute path for a video the user selects from the SD Card.
I’m using the Android Storage Access Framework and currently get the following Uri :
content://com.android.externalstorage.documents/document/9C33-6BBD%3AVideos%2Freaps-driving.mp4
The FFMPEG command I use :
String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());
String[] cmd = {"-y", "-i", mVideoUri.toString(), "-c:v", "libx264", "-preset", "ultrafast", "-strict", "-2", "-s", optimalVideoSize, "-aspect", "16:9", "-b", bitrate, String.format("/storage/emulated/0/Movies/InstaVid/VID_INSTAVID%s.mp4", timeStamp)};
executeFFmpegBinary(cmd, timeStamp);It doesn’t matter if I use
mVideoUri.toString()
ormVideoUri.getPath()
.Is there any way I can get the absolute path ?