
Recherche avancée
Autres articles (60)
-
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 (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
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 (...)
Sur d’autres sites (4643)
-
using gstreamer splitfilesrc to play consecutive .mp4 (H.264) files
13 juin 2014, par user3736170I’m trying to string together and play multiple mp4 files as one file. Each file is about 1 minute in duration, each starting with a pts of zero. Each file plays fine as a single source using gstreamer’s filesrc.
I’m using the following command line with the splitfilesrc :
gst-launch-1.0 splitfilesrc location="test*mp4" ! qtdemux ! h264parse ! avdec_h264 ! videoconvert ! ximagesink
My source files are test1.mp4, test2.mp4, etc
This plays the first file fine and then stops. I turned on debug messages, and I see that the qtdemux filter requests (one minute’s worth of) packets from the splitfilesrc, and then determines that it has reached the end (debug message states "no more moofs", after the qtdemux gets the last fragment from the first file). The pipeline then gets destroyed due to eos.
Is this gstreamer splitfilesrc pipeline possible with mp4/H.264 files ? I’m pretty sure it works with mpeg2 ts files, where the files are produced from a single large file using gstreamer’s own multifilesink. How about these mp4 files, which were produced with ffmpeg ?
Thanks for any insight.
-
Convert GIF to MOV with alpha FFmpeg
20 juillet 2022, par Евгений ГрековI'd like to convert GIF animation file with transparency to MOV with alpha channel.


So I tried


ffmpeg -i input.gif -c:v hevc_videotoolbox -allow_sw 1 -alpha_quality 0.75 -vtag hvc1 output.mov


As a result I get MOV file that plays perfectly (with transparency) in QuickTime, but it's not transparent in browser (Safari, Chrome, mobile and desktop).


How do I fix it ?


Thanks.




-
Can you sync multicast video feed with live feed ?
15 juillet 2022, par Taavi SõerdI am using android studio to stream live video via UDP multicast. my problem is that video feed on the android app plays in "slow motion" so every second real time is played as two seconds in the video feed. My question is that can I sync the video feed in the app to latest UDP packet ? I'm using Java so and I'm very new to UDP and especially multicast, thanks !