
Recherche avancée
Médias (1)
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
Autres articles (97)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.
Sur d’autres sites (9092)
-
Access Android phone camera stream using ffmpeg
14 mars 2016, par Parth DoshiI am developing an application that performs live streaming. Currently, I am able to stream a local video from my SD card to my Wowza streaming server successfully.
This is the command that I fire from my FFMPEG based Android project
ffmpeg -re -i /sdcard/sample.mp4 -c copy -f flv rtmp://192.168.1.34:1936/live/myStream
Now, I want to send my camera stream to my streaming server.
I tried using the below command but it does not work since the /dev/video0 device is denied permission.ffmpeg -re -i /dev/video0 -c copy -f flv rtmp://192.168.1.34:1936/live/myStream
Can anyone tell me the right way to stream the camera feed using ffmpeg on Android
-
How can I send a virtual camera to Genymotion or Android Studio Emulator in Ubuntu ?
4 décembre 2020, par ykasurI created a virtual camera using v4l2loopback and ffmpeg. The command I use for ffmpeg is :
ffmpeg -re -l oop 1 -i vin.png -vf format=yuv420p -f v4l2 /dev/video2


vin.png is the image I want to stream to the webcam and /dev/video2 is the virtual webcam I created with v4l2loopback.
The virtual webcam works and I can see it e.g. with onlinemicetest.com/webcam-test.
I'm using the Genymotion emulator with the newest Android API (I tried 7.0, 8.1 and 10.0) on Ubuntu 20.40.
Genymotion detects the virtual camera but only displays a dummy image :
Wrong dummy Image from Genymotion
I also tried (and would prefer to use) the android studio emulator. But I can only select Webcam0 in the configuration of the device camera and that points to the real integrated camera and not to my virtual webcam.


I don't need to use ffmpeg, but I do need to use a tool that lets me control which image to stream from the command line.


Is there a way to solve this ? Many thanks in advance !


Update 17.11.2020 :
The Genymotion support answered me, that they plan to support virtual cameras in the future. They might be ready to add this in mid 2021.


-
flutter FFMPEG concat not working properly with camera recorded clips
27 février 2024, par ibrahim EltayfeI am using the Flutter camera package to record videos, I record multiple videos and then concatenate them using this command :




"-y -f concat -i $videosPathsTextFilePath -c:a aac -c:v copy $fullVideoOutPath",


videosPathsTextFilePath content is :

file 'record-1709022968582.mp4'

file 'record-1709022976601.mp4'



when I record with one side only like the camera back side and concatenating the clips, it works as expected, but when I change the camera side and then concat the clips, the clip recorded after changing the camera side is shown rotated upside down as -90


I checked the clips from Device Explorer, it is all right, but after the concatenation it shows flipped.


here are the two videos before concatenation :


https://imgur.com/a/MVkEDm3

https://imgur.com/Kit1J8V

and this is the video after concatenating :

https://imgur.com/6CAxN05

Thank you in advance.


I tried to check if the user changed the camera side to track the clips recorded by this side then rotate them and move them to another directory but this command is not working


-noautorotate -display_rotation 90 -i ${videoFile.path} -c:v copy ${destinationPath}