
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 (101)
-
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 (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 (16547)
-
How to decode a video at a certain fps using ffmpeg
1er juin 2018, par Mohammed_BEYI am working on video decoding using FFmpeg.
When I try to decode a video which is encoded with h265 at a certain fps (ex : fps=25), the result is a decoded video but at a different fps.
How can I decode a video at exactly fps=25, even if I have a high miss rate or dropped frames ?
I use this command to decode :
ffmpeg -benchmark -i -f null /dev/nullI am running the above command on Odroid-XU3 board that contains 8 cores. The OS is Ubuntu 14.04 LTS.
Please, any help is welcome.
Thank you in advance. -
ffmpeg binary installed but video play and decode error [closed]
27 mars 2022, par irbadI built a website like YouTube but I have some errors that I can't solve. I upload a video with webm. Format, video uploaded successfully but not play. Ffmpeg binary already installed. Video converted to different formats (240p, 360p, 720p, 1080p, 2k) but not play. Please help me to solve this problem.


Thank you 😊 in advance


-
FFMPEG with python : Only audio is playing when trying to replace the audio in video
5 mai 2021, par DannyHey guys I am a noob with ffmpeg and trying to replace the audio with a new audio, I have gone through some SO questions and still having trouble solving the problem. As of now, I am getting only the audio with the specified duration and only able to play it in vlc player. The video is not showing.


Can someone tell me how to properly do it ?


This is the command.


process = subprocess.call([settings.VIDEO_ENCODING_FFMPEG_PATH, 
 "-probesize", "10M", "-i", input_file_path, "-i", input_audio_path, "-crf", "28",
 "-ss", 0, "-t", 50, "-vcodec", "libx264", "-b:v", "4M", "-preset", "medium",
 "-map", '0:v', "-map", "1:a", "-b:a", "64k", output_file_path])



Thanks in advance.