Recherche avancée

Médias (5)

Mot : - Tags -/open film making

Autres articles (99)

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

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (4265)

  • how to increase bitrates of video which has been created through FFMPEG library in PHP ? [closed]

    1er octobre 2020, par Raindrops Info-tech

    Its an android application, where we are capturing image through mobile along with audio which then on server side, by using FFMPEG library we used to club them and making them MP4 Video.

    


    So as can see as a final result we are getting mp4 video having bitrates of less than 144 kbps so whenever we are trying to upload this video on twitter or LinkedIn, they guys are refused to create preview because of the smaller bitrate.

    


    Do we have any solution on how to increase Bit rates, actually we have one image along with 60 seconds audio only ? We had explored certain ways but fails to do so.

    


    Looking forward to your kind response.

    


  • ffmpeg : overlaying two videos is deliting audio from one

    27 octobre 2022, par shish

    i'm trying to overlay two videos with ffmpeg, but in the output there is only the audio of the first video.
Using

    


    ffmpeg -i screen.mkv -vf "movie=webcam.mp4, scale=600: -1 [inner]; [in][inner] overlay = main_w - (overlay_w + 10) : main_h - (overlay_h + 10)" output.mp4


    


    from cmd, in the final output i have only the audio from the first video specfied (screen.mkv).
how can i solve ?

    


  • piping in ffmpeg in c#

    6 septembre 2013, par user846281

    I have a directory full of images. I convert these images into a flv file. Then i convert that flv into a mp4 file (i have my reasons to do this). I can achieve this OK using the process method in c#. Currently i call this twice (with different arguments) First call it converts the images to flv and the second call converts that flv to mp4. is there a way to do this in 1 process and not actually write the flv to disk ?

    For example in sudo code :

    ffmpeg -allmyjpgs this.flv | final.mp4