Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (79)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (9287)

  • File input style fixes for old IE ( IE9) versions.

    16 mai 2020, par blueimp
    File input style fixes for old IE (pre>
  • ffmpeg output pipeing to named windows pipe

    23 août 2015, par Lucas

    This question is related to my previous question : Converting raw frames into webm live stream

    I want to pipe a video to ffmpeg and read it back through another pipe, but I cannot pipe the output of ffmpeg.exe to a named pipe on windows.

    My definition of the pipes in C# :

    NamedPipeServerStream p_to_ffmpeg;
    NamedPipeServerStream p_from_ffmpeg;
    p_to_ffmpeg = new NamedPipeServerStream("to_ffmpeg", PipeDirection.Out, 1, PipeTransmissionMode.Byte);
    p_from_ffmpeg = new NamedPipeServerStream("from_ffmpeg", PipeDirection.In, 1, PipeTransmissionMode.Byte);

    And then I start ffmpeg.exe in a separate process with the following options : -f rawvideo -vcodec rawvideo -video_size 656x492 -r 10 -pix_fmt rgb24 -i \\.\pipe\to_ffmpeg  -c:v libvpx  -pass 1 -f webm \\.\pipe\from_ffmpeg

    ffmpeg.exe refuses to write to the pipe with the following error : File '\\.\pipe\from_ffmpeg' already exists. Overwrite ? [y/N]

    When I replace the "output pipe" with a file name, it works like charm : -f rawvideo -vcodec rawvideo -video_size 656x492 -r 10 -pix_fmt rgb24 -i \\.\pipe\to_ffmpeg  -c:v libvpx  -pass 1 -f webm output.webm

    How do I get ffmpeg to write to a named pipe in windows ?

    Edit : When I force to write to the pipe with ffmpeg’s -y option, I get the following error : Could not write header for output file #0 (incorrect codec parameters ?): Error number -32 occurred

  • ffmpeg output pipeing to named windows pipe

    30 juillet 2023, par Lucas

    This question is related to my previous question : Converting raw frames into webm live stream

    



    I want to pipe a video to ffmpeg and read it back through another pipe, but I cannot pipe the output of ffmpeg.exe to a named pipe on windows.

    



    My definition of the pipes in C# :

    



    NamedPipeServerStream p_to_ffmpeg;
NamedPipeServerStream p_from_ffmpeg;
p_to_ffmpeg = new NamedPipeServerStream("to_ffmpeg", PipeDirection.Out, 1, PipeTransmissionMode.Byte);
p_from_ffmpeg = new NamedPipeServerStream("from_ffmpeg", PipeDirection.In, 1, PipeTransmissionMode.Byte);


    



    And then I start ffmpeg.exe in a separate process with the following options : -f rawvideo -vcodec rawvideo -video_size 656x492 -r 10 -pix_fmt rgb24 -i \\.\pipe\to_ffmpeg  -c:v libvpx  -pass 1 -f webm \\.\pipe\from_ffmpeg

    



    ffmpeg.exe refuses to write to the pipe with the following error : File '\\.\pipe\from_ffmpeg' already exists. Overwrite ? [y/N]

    



    When I replace the "output pipe" with a file name, it works like charm : -f rawvideo -vcodec rawvideo -video_size 656x492 -r 10 -pix_fmt rgb24 -i \\.\pipe\to_ffmpeg  -c:v libvpx  -pass 1 -f webm output.webm

    



    How do I get ffmpeg to write to a named pipe in windows ?

    



    Edit : When I force to write to the pipe with ffmpeg's -y option, I get the following error : Could not write header for output file #0 (incorrect codec parameters ?): Error number -32 occurred