
Recherche avancée
Médias (91)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (106)
-
Soumettre bugs et patchs
10 avril 2011Un logiciel n’est malheureusement jamais parfait...
Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
Si vous pensez avoir résolu vous même le bug (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (9404)
-
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.


-
ffmpeg, libav : Recording RTSP at reduced frame rate without re-encoding
6 janvier 2021, par synchroniceI'm trying to record a chunk of an RTSP video stream (say 5 minutes) to an mp4 file. The RTSP video stream is H.264 encoded and at 30 FPS. I'd like to record it at 10 FPS by dropping frames, without re-encoding (benefit : uses less CPU, lossless).


- 

- Is this possible ?
- How do I do this ? Examples using the libav libraries are most useful since I'm writing an application, but an ffmpeg command is also helpful.






Thanks in advance.