Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (90)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (7671)

  • How to fix error "Encoding Failed" using FFMPEG ?

    17 août 2021, par Irshad Khan

    I am using FFMPEG for converting mp4 to m3u8 format on an Ubuntu local machine. But I am facing an error Encoding Failed.

    


    My controller code is :

    


    FFMpeg::open(public_path()."/uploads/".$filename)
    ->exportForHLS()
    ->addFormat($lowBitrate)
    ->addFormat($midBitrate)
    ->addFormat($highBitrate)
    ->toDisk(env('APP_ENV'))
    ->save(public_path().'/converted/adaptive_steve.m3u8');


    


    The error is :

    


    Error

    


    Config file is

    


    Config file

    


    How can I solve this ? Thanks

    


  • How to fix error FFmpeg "Error during encoding : failed to allocate memory (-4)"

    22 avril 2022, par SCAR101

    I have a problem with FFmpeg encoding. It can write for an hour or two hours or 5 minutes, and then he gives out error : [h264_qsv @ 000001a47094f340] Error during encoding: failed to allocate memory (-4). What am I doing wrong ? Here is the FFmpeg string :

    


    -y -f dshow -video_size 1920x1080 -rtbufsize 702000k -framerate 25 
-i video="Decklink Video Capture":audio="Decklink Audio Capture
-vf "drawtext=fontfile=C\\:\\\\Windows\\\\Fonts\\\\arial.ttf:fontsize=36:fontcolor=red:text='%{localtime}'" 
-s 720x540 -pix_fmt yuv420p -c:v h264_qsv 
-preset veryfast -b:v 512k -acodec libmp3lame 
-b:a 96k -ac 2 -ar 44100 D:\Input_1\2022\4\20\Input_1_20.04.2022_08.16.31.mkv


    


    Computer Specifications : Core I5 11600, 16Gb.

    


  • A ffplay Error :"Failed to set value 'yuv420p' for option 'pix_fmt' : Option not found"

    3 novembre 2023, par DavisTao

    I was trying to play a video by ffplay. Here’s my command :

    


    ffplay -f rawvideo -pix_fmt yuv420p -video_size 640x360 Resources/video.h264

    


    but I got this error :
Failed to set value 'yuv420p’ for option 'pix_fmt: Option not found

    


    So l used another command to make the video playing correctly, and this is the command :

    


    ffplay -f rawvideo -video_size 640x360 Resources/video.h264

    


    I wonder why the first command reported the error, because I used ffplav -pix_fmts and found that yuv420p is supported.

    


    By the way the pixel format of the video file is yuv420p exactly.