Advanced search

Medias (0)

Tag: - Tags -/upload

No media matches your criterion on the site.

Other articles (88)

  • Amélioration de la version de base

    13 September 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 (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 February 2011, by

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 March 2010, by

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3); le plugin champs extras v2 nécessité par (...)

On other websites (5534)

  • I can't find a good C# Media Transcoding Library [closed]

    11 May 2021, by TheYoungSeth

    I am trying to find a good c# library for media transcoding, primarily video, and I don't seem to find anything good and actually usable. I do not want to use FFMpeg wrappers because I want my program to be user friendly and for public use which I can't do with FFMpeg because of the harsh usage rules that come with it.

    


    Help would be appreciated,
thanks

    


  • getting Unable to find a suitable output format in ffmpeg loop

    20 April 2021, by vivofen578

    I have this command:

    


    Get-ChildItem -Path D:\input -Filter *.mkv |ForEach-Object {
  ./ffmpeg -i $_.FullName -pix_fmt yuv420p10le -preset slow -map 0:v:0 -map 0:a:0 -map 0:a:1 -map 0:s:0 -map 0:s:1 -c:v libx265 -profile:v main10 -crf 15 -c:a copy -c:s copy D:\outpui
}


    


    for use with ffmpeg in powershell on Windows 10. But I am getting an error message of:

    


    Unable to find a suitable output format for 'D:\output'
D:\output: Invalid argument


    


    What am I doing wrong?

    


  • Find the right path to my folder on server to execute cmd php

    12 April 2021, by Meds

    exec("ffmpeg -i $temp_name -r $FPS -vf scale='$resolutionWidth:$resolutionHeight' -b:v $bitrateVideo -bufsize $bitrateAudio videos/$videoURLnameTemp.mp4", $res);

    


    This command works well locally, but once in production, the files are not stored in the video folder which is at the same level as the file in the server. Is there any way to get the output on the exec function to catch an error or something? I tried the output by reference in the method but when I do a var_dump of the result, I get an array(0) {}.

    


    I also tried to put the realpath in the path but it doesn't seem to work. ffmpeg is located at the same level as all files and the videos folder.