
Recherche avancée
Médias (1)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (77)
-
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users.
Sur d’autres sites (5667)
-
adb screenrecord display only screenshot, it does not stream the screen [closed]
28 avril 2024, par hexolsI have an Android TV, I want to stream its screen in my Ubuntu PC.
I used this command :


adb shell screenrecord --output-format=h264 - | ffplay -



and after waiting for a while it displays the screenshot of the TV. But I want to display live stream of the Android TV.
I also used the following command as well but got the same result :


adb exec-out screenrecord --bit-rate=16m --output-format=h264 --size 800x600 - | ffplay -framerate 60 -framedrop -bufsize 16M -



How can I achieve this using this command ?
Or is there a way to achieve it with another way by using VLC/Gstreamer/FFMPEG except using scrcpy/vysor ?


-
How can I create a process that can be multiplied by a variable number ?
18 octobre 2019, par KadenA bit hard to explain this one, but I have an ingest of a variable amount of .mp4 files (sometimes it’s 30, other times it’s 10) and I need to have a
subproccess.call('code', shell=True)
for each of the .mp4 files that are being ingested into that folder. Each file has already been renamed in numeric order (1.mp4, 2.mp4, 3.mp4, etc...) and I can store the number of ingested files into a variablesumlines
using the code
with open(urls.txt", 'r') as file: sumlines = sum(1 for _ in file)
So my question is, is there a way I can use the variablesumlines
to automatically subproccess call the exact number of files needed ?
Find a screenshot here -
Get video duration of file hosted on Amazon S3
10 janvier 2020, par MichiI’m starting a portal which distributes videos. The idea is to upload the videos to Amazon S3 and gather the necessary data using PHP from my server. So far everything works fine... the only thing I could not manage to get is the duration of the video :-( Could anybody give me a hint on how to accomplish it ?
Thanks,
MiguelUPDATE :
I finally opted to do it using FFmpeg. I have already installed FFmpeg on the server and I’m now trying to execute the command in the shell prior to execute it with PHP. I’m passing it the URL from Amazon (I tried both the cloudfront URL and the S3 URL) but it says that there is not such a directory or file. I’ve seen examples on the web using external files so I expected it to work.
The command I’m using is
ffmpeg -i https://s3-eu-west-1.amazonaws.com/path/to/file.m4v
Is there something I need to configure in order to use external URLs ?