Recherche avancée

Médias (91)

Autres articles (67)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’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 (...)

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

Sur d’autres sites (8874)

  • Trying to merge media files using ffmpeg [closed]

    6 octobre 2023, par Mark Pampuch

    I 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 ?

    


  • Frame extraction disparity between ffmpeg and media player

    17 avril 2012, par bean

    My 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.

  • ValueError : No valid stream found in input file. Is -1 of the desired media type ?

    20 juin, par Haozhe Xie

    While 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 ?