
Recherche avancée
Médias (1)
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (51)
-
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 (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (9064)
-
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


-
Create DVD-Video Menu's with ff-mpeg
28 février 2012, par Bat MastersonIs it possible to create a DVD-Video Menu with ff-mpeg only ?
I may be misunderstanding but I don't think that ff-mpeg alone is capable of creating a dvd menu.
I've found some examples using ff-mpeg and various other tools but nothing solely ff-mpeg. The other tools are all linux and I'm stuck in windows.
If someone would clear that up for me that would be great. Also if you know of a library for creating dvd menus or a command line utility would also help.
Thanks 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.