
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (94)
-
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 (...) -
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. -
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)
Sur d’autres sites (7682)
-
Some modifications for ffmpeg scripts
21 mars 2021, par FoxFrI wish to modify the following script to put some options, obviously if you can explain ... is better my learning


ffmpeg \
-i /dev/video0 \
-r 1 -stream_loop -1 -f image2 -i "/home/pi/videopi/map/map.jpg" \
-stream_loop -1 -re -i "/home/pi/videopi/bed.mp3" \
-filter_complex "[0][1]overlay=enable='lt(mod(t,20),10)'[v];[v]drawtext=textfile=/home/pi/videopi/gps.txt:reload=1:x=30:y=350:fontfile=/usr/share/fonts/truetype/lato/Lato-Black.ttf:fontsize=30:fontcolor=white[v]" \
-map "[v]" \
-map 2:a \
-c:v libx264 -b:v 4000k -maxrate 4000k -bufsize 8000k -g 50 -c:a aac \
-s 640x480 \
-f flv rtmp://a.rtmp.youtube.com/live2/[google_key_stream]



My desired customization :


- 

- Add an another webcam (-i /dev/video1) : 30" video0 -> 30" video1 -> 10" image2 -> 30" video0 ... (a loop)
- Add a png overlay on the final comp
- how add a transparent png behind the text
- plug an audio input (by jack) to add over the bed.mp3
- save the file in same time of live (-f flv live.mp4 ??)












The part -filter_complex is the most difficult for me to understand


Thanks you very much for you help, it's for finish my personal and important project


-
Trying to download Fragmented MP4 video [closed]
26 janvier 2021, par Aryan Agarwali want to download a course that I have purchased for my personal use because my access will be removed by 28th Jan.


I was trying to download the video from the dev tools network tab and encountered that the video is fragmented in multiple MP4 files and not TS or M4s.


The most peculiar thing is that it is the exact same link for the download but I am not able to download the video.




This is the link if somebody wants to check it out https://d1z78r8i505acl.cloudfront.net/media/Ubr3VhTyJD5NW/7c71af39/video_1630_1080_1372.mp4


-
Auto-Transcode/Compress .mkv to .mp4 on Qnap TS-251+
9 novembre 2020, par DarkDiamondI rip my DVDs with MakeMKV in order to be able to watch them on my TV, as I do not have a DVD-player that supports any output connector that fit into my TV as the TV is relatively new whereas the DVD-player is quite old. (As I only use the rips for my personal entertainment and do not share them there is absolutely no copyright problem).


The problem with the output files is the extreme size as they are the raw data from the disk. Now I would like these files to be compressed into a .mp4 file as soon as they are finished. The problem is that the file is created before everything is in it, so I probably need to write it into a local drive and copy it to its destination later. Then I will copy them to my Qnap NAS TS-251+.


There I want it do be compressed into a much smaller .mp4 file (usually the .mp4s are a sixth of the original size). I found something using ffmpeg, so I just need a script that does this for me. I do not mind to use a Docker machine for it, but I do not know how to do it. I found this :


ffmpeg -i input.mkv -c:v -crf 18 -preset veryslow -c:a copy out.mp4
here.

I also found this video, so I know it is in theory possible, I just do not know how to realise it.


In case you ask why I want to use the Qnap NAS, it allows hardware acceleration, whereas my laptop does not.