Recherche avancée

Médias (91)

Autres articles (54)

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

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

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

Sur d’autres sites (7767)

  • Convert video.ts file into video.mp4 using ffmpeg

    11 juillet 2020, par HorizonBloom

    So I tried to convert a file named video.ts into video.mp4 in Python and am getting the error :

    


    FileNotFoundError: [WinError 2] The system cannot find the file specified

    


    Assuming video.ts is already loaded into the program and subprocess already imported.

    


    This is due to the line :

    


    >>> subprocess.run(['ffmpeg', '-i', 'video.ts', 'video.mp4']) but I don't know what's the problem.

    


    I've opened the video.ts file and it seem to be working fine. Python version (3.8.2)

    


  • How to put watermak on video with FFMPEG,without resizing the watermark becuase of video resolution ?

    27 septembre 2013, par Shahbaz Younis

    Im looking for a way that the watermark picutre does not get resized,if the video resolution is high or less.Right now i have this problem,if i upload a video like 720p the watermak is really small and when i upload a video that is 240p the watermak is really big.I would just like it to be only one size.Can it do that automatically ? So no matter what the resolution is the of the video the image does not resizes and stays where i put it ? here's the code im using right now

    if ($ffmpeg_ver == "old") {
                       $watermark = '-vf "movie='.$tv_logo_path.' [watermark]; [in][watermark] overlay=10:10 [out]" ';
               } else {
                       $watermark = '-i '.$tv_logo_path.' -filter_complex "overlay=10:10" ';
               }
  • how to improve the quality of resultant video when merging audio-video with ffmpeg ?

    6 novembre 2015, par R.S

    When merging an audio and video with ffmpeg, the quality of the resultant video goes down. How to we improve the quality(esp. the audio quality) ?

    The audio quality gets degraded to quite an extent with random screeches in between.
    I’ve tried converting the audio to mp3 and video to mp4 before merging them, tried various audio-video parameters like bitrate, sample-rate, qscale etc but still unsuccessful.
    Any help would be greatly appreciated !