
Recherche avancée
Autres articles (61)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 ;
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)
Sur d’autres sites (10914)
-
FFMPEG : Capture and Stream from Android Mobile Camera
18 avril 2023, par Software Development ConsultanI am checking for how we can use ffmpeg command line in android like using WritingMinds ffmpeg compiled for Android or any other Git project.



I am trying to set following command :



-loglevel trace -f android_camera -camera_index 0 -video_size hd720 -framerate 30 -input_queue_size 2 -i discarded -map 0 -vcodec libx264 -y /sdcard/editor_input/out.mp4"



But it gives Unrecognized option 'camera_index'.



There are some project like "https://github.com/CrazyOrr/FFmpegRecorder" which has Recorder App to store MP4 file but they seems uses FFMPEG APIs and code for getting frames and all, I Just want to directly use ffmpeg as commandline like we use in Linux.



Can someone please guide what is best way to capture from android camera and stream MPEGTS stream on UDP ?



Thanks.


-
Video not seeking using ffmpeg android
23 juin 2015, par Arslan AhmadI am using ffmpeg lib, Video was playing fine & seekable when I disabled the pie before android 5.0.
For Android 5.0, I have recreated my ffmpeg through ndk and enabled pie so now video playing fine but not seekable.
Any help ?
How do we enable progressive flag for seeking the video ? -
Advice about older android, VideoView and resolutions
20 avril 2016, par Diogo GarciaI’ve been testing webm and mp4 for videoView and looking around for quite some time and right now the best way for me to play a video in a older android(2.3.3+) is using mp4 AVC-Baseline using the code
"ffmpeg.exe" -i "intro.mp4" -codec:v libx264 -profile:v baseline
-preset slow -b:v 500k -maxrate 500k -bufsize 1000k -vf scale=432:320 -codec:a aac -strict experimental -b:a 96k -f mp4 "intro_result.mp4"By far this is the best solution for my android 2.3.3 device... But this resolution is very low when using it in a bigger device for example it gets blurry, so I tried to increase the resolution but it crashes the video when I try to run in my android 2.3.3 device.
Does anyone has any idea how to be able to view this video no matter the resolution of the device ?
I was thinking about keep a high quality video inside the app and then check if the device has a low resolution and somehow try to resize the hiquality video before injecting it inside the VideoView. But I don’t even know if it is possible...