
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (84)
-
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 (...) -
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (9309)
-
ValueError : No valid stream found in input file. Is -1 of the desired media type ?
20 juin, par Haozhe XieWhile using
torchcodec
with the following code

import torchcodec
file_path = "/path/to/episode_000000.mp4"
x = torchcodec.decoders.VideoDecoder(file_path, seek_mode="approximate")



I got the following error :


[rank0]: File "/home/hzxie/Development/vla/utils/datasets.py", line 202, in _get_video_bytes
[rank0]: x = torchcodec.decoders.VideoDecoder(vbytes)
[rank0]: File "/home/hzxie/Applications/miniconda3/envs/lerobot/lib/python3.10/site-packages/torchcodec/decoders/_video_decoder.py", line 98, in __init__
[rank0]: core.add_video_stream(
[rank0]: File "/home/hzxie/Applications/miniconda3/envs/lerobot/lib/python3.10/site-packages/torch/_ops.py", line 723, in __call__
[rank0]: return self._op(*args, **kwargs)
[rank0]: ValueError: No valid stream found in input file. Is -1 of the desired media type?



How to solve this problem ?


-
Frame extraction disparity between ffmpeg and media player
17 avril 2012, par beanMy goal is to allow frame extraction from a video at a chosen time. Unfortunately I'm only getting the frame I see most of the time !
I am using ffmpeg to extract the frame with the following arguments :
ffmpeg.exe -ss 00:01:13.000 -i INPUT.mp4 -vframes 1 OUT_%d.jpg
Some of the time I will get the frame that I see in the player at that time (players I have tested have been VLC and flowplayer), and some of the time the frame will be at a slightly different point (miliseconds out !).I have also tried to accomplish the same by using mplayer but I was unsuccessful. Any ideas as to why would be appreciated.
-
Trying to merge media files using ffmpeg [closed]
6 octobre 2023, par Mark PampuchI have 4 files I'm trying to merge


1-video.webm
2-audio.mp3
2-img.jpeg
3-video.webm



I'm trying to get an output thats like this


concatenated-video.webm



where the video consists of the video 1 clip, immediately followed by the audio clip with the still image being fit to the screen while the video plays, followed by the last video.


How can I do this ?