Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (103)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

    18 février 2011, par

    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 mars 2010, par

    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 inscription3 (...)

Sur d’autres sites (9327)

  • Apply batch script to selected video file

    4 mars 2017, par Arete

    I use the following ffmpeg batch file to trim videos

    Trim Video Files.bat

    set /p startposition=Enter the start position:
    set /p endposition=Enter the end position:
    ffmpeg -i in.mp4 -ss %startposition% -t %endposition% cut.mp4
    pause

    This works only if the input file is named ’in.mp4’, however I would like to be able to just select a video file and drag and drop it on the batch script. In other words how can I make this batch file apply to the selected file only ?

  • Inject FFMPEG video converter directly into .NET C# ?

    3 juillet 2021, par Mehdi Daustany

    How to implement FFMPEG in .NET Core C# ?

    


    I'm using FFMPEG as a batch file, I prepared a jobs queue, then Hangfire picks queue rows to sending to the batch file to starting convert by FFMPEG.

    


    I need to inform users by a progress bar, because of using FFMPEG as a CLI third-party, it is unachievable.
Is there any nuget package or any way to inject FFMPEG into .NET ?

    


  • nginx video mp4 streaming - jwplayer seeking

    18 juin 2012, par abrahab

    As you can see nginx streaming solution works and return different content-length when flv requested with start parameter :
    http://www.hotgirlscompany.com/1.flv?start=0
    http://www.hotgirlscompany.com/1.flv?start=300000

    But the problem that jwplayer v5 can not seek this video to any position. Seems (from http sniffer) player request ?start=0 and then ignore any mouse clicks at loading line, and can not go to position I want).

    Of course, I added provider=http to flashVars.
    You can download the video and see that its converted as H.264/AAC. Then maked mp4box -inter 500 1.flv. But still can not steam it :(

    Any suggestions ?
    Maybe example how to property reconvert this video with ffmpeg to make it playable ?