
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (70)
-
Emballe Médias : Mettre en ligne simplement des documents
29 octobre 2010, parLe plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...) -
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...) -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)
Sur d’autres sites (10306)
-
How to speed up m3u8 to mp4 conversion using ffmpeg
17 décembre 2022, par Sahil BagdiI am downloading mp4 from m3u8 using ffmpeg


ffmpeg -i "https://92vod-adaptive.akamaized.net/exp=1671307488~acl=%2F48b4b587-13d3-42f9-bfb9-8a0c92876523%2F%2A~hmac=66ce19e1dc862e0b718a3eb73b42f54bf83855db43831e146252adccf0dc6f1a/48b4b587-13d3-42f9-bfb9-8a0c92876523/sep/video/67e2046f,8f9cecb7,b83b6682,0f26a563,3c957583/audio/0b5e7d8c,5f37ccc0,60c393d7/subtitles/59401986-English%20%28auto-generated%29-en-x-autogen-cc/master.m3u8?subcache=1&external-subs=1&subtoken=38c45483ebf2c8238ec8504c20207a588d72f633f79608c00f5950d0300576f3&query_string_ranges=1" -c copy -map p:0 "Testing of Hypothesis.mp4"




but it is taking too long, like my speed is 10 MBps(80 mbps) size is 300MB, should be done in 30 seconds, but it takes upto 5-10 minutes sometimes, now I know it does some converting thing


My question is is there any way to increase its speed ??
I have CPU- AMD Ryzen 5600H and
GPU - NVIDIA RTX 3050


Some help will be really appreciated


I checked some nvidia encoding and decoding things from there official website and tried many things from there but always stuck at some error


-
Video transcoding
12 mai 2020, par avanjvI have successfully implemented video compression commands for android using FFmpeg with following command :



ffmpeg -i input.mp4 -vf "scale=-1:height" -vcodec h264 -b:v 1000k -acodec mp3 output.mp4




It reduces video file size substantially, though after compression video was not playing on some android devices, the issue was resolved by removing codec from the command



ffmpeg -i input.mp4 -vf "scale=-1:height" -b:v 1000k output.mp4




But the processing time is way too longer than expected.
I have found this official linkedin library for video transcoding
https://github.com/linkedin/LiTr



Which can be used for changing resolution and/or bitrate of a video track(s). Has anyone used it ? I am new in this field, I couldn't figure out the methods to be used for scaling and adjusting bitrate of a video file for this lib (Litr). Any help with these methods ?


-
Use ffmpeg on OSX Xcode Project for Mac
21 décembre 2018, par cmarioI am planning to create a new app for personal use on my Mac that uses FFMPEG library, to store a feed from a RTSP IP camera.
Following this official installation procedure from FFMPEG I have manage to successfully achieve the following 2 steps :
To get ffmpeg for OS X, you first have to install Homebrew. If you don’t want to use Homebrew, see the section below.
- ruby -e "$(curl -fsSL
https://raw.githubusercontent.com/Homebrew/install/master/install)"
Then :
- brew install automake fdk-aac git lame libass libtool libvorbis
libvpx \ opus sdl shtool texi2html theora wget x264 xvid yasmQuestion :
My question here because I am confused, is how to import a library into Xcode so I can use it in the application I am about to build for my Mac. I can see plenty of GitHub projects related to FFMPEG with IOS/Android, but none for OSX.All the FFMPEG commands under terminal are working fine, such as converting a video etc.
- ruby -e "$(curl -fsSL