
Recherche avancée
Médias (2)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (70)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (12923)
-
Is this generated in Adobe Premier or After Effects ? [closed]
13 avril 2021, par RyanCan someone please tell me if this JSON file is or can be exported using after effects or premier pro ? I really cant figure this out. This is a JSON file which becomes a part of a template file which is used to render a .mp4 using FFMPEG Lib in an android app.




-
Video (generated with FFMPEG) scrambled after upload to YouTube
12 mai 2023, par user2338826I am generating short videos from screenshots (e.g. 900 screenshots for a 30 seconds clip) with ffmpeg.


It works great and I can play the videos in different video players on Windows without a problem.
When I upload the video to my YouTube channel it still works fine in the small preview under studio.youtube.com. But as soon as I preview the video on YouTube the whole video is "scrambled" (see attached image).


Other YouTube videos uploaded by other users play fine in my Chrome.


I am using Chrome and if I deactivate Hardware Acceleration in Chrome settings the video plays fine on YouTube. But that obviously is not a viable solution. Users should be able to watch the videos on YouTube without changing settings.


The video also plays fine in the Android YouTube app and in Firefox on Windows.


I have tried a lot of settings for ffmpeg - no success.


This is one of the commands I have tried. The parameters are used according to YouTube's best practice requirements :


ffmpeg -r 30 -s 1080x1920 -i storage/screenshot-%03d.jpg -pix_fmt yuv420p -c:v libx264 -profile:v high -preset slow -crf 18 -g 30 -bf 2 storage/testvideo.mp4



Has anybody successfully generated YouTube videos that also run in Chrome ?
Any idea appreciated.




-
FFMPEG and an additional bash statement on the generated files [migrated]
17 mars 2023, par VodekI use FFMPEG instructions to download video and audio from the camera via RTSP protocol to a local hard drive. Here is my manual that I use :


ffmpeg -y -re -rtsp_transport tcp -i "rtsp:/USERNAME:PASSWORD@192.168.1.183/cam/realmonitor?channel=1&subtype=0" -f segment -vcodec copy -af asetrate=22050 -segment_time 120 -strftime 1 -segment_format mp4 "ffmpeg_capture-%Y-%m-%d_%H-%M-%S.mp4"



After each generation of a 120 sec file, I would like to execute a BASH instruction on it and I don't know how to go about it. I'd like to be able to do something with the file after it's created in each iteration of the segment. After starting FFMPEG, the file is created immediately, but it is ready only after 120sec has passed. Can you send some simple bash script to the file generated in FFMPEG ?


I tried to follow the instruction :


ffmpeg -y -re -rtsp_transport tcp -i "rtsp:/USERNAME:PASSWORD@192.168.1.183/cam/realmonitor?channel=1&subtype=0" -f segment -vcodec copy -af asetrate=22050 -segment_time 120 -strftime 1 -segment_format mp4 "ffmpeg_capture-%Y-%m-%d_%H-%M-%S.mp4"



then in a standalone bash script I tried to do something with the files but they weren't finished yet.