Recherche avancée

Médias (91)

Autres articles (102)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

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

Sur d’autres sites (9434)

  • formula to calculate video dimensions for target aspect ratio

    23 avril 2015, par Nevoxx

    i currently building an application that converts videos to a specific dimension under consideration of the target aspect ration.

    the target resolution must always be 1280x720, i want to fit the uploaded video in this size using black bars.

    can anyone point out a formula to calculate the target video dimensions without changing it’s aspect ratio ? if the target with is smaller then 1280x720 i’ll add the missing pixels as black bars.

    i’m using ffmpeg with the "-vf scale=1280x720,pad=?:?:black" command

    (sorry if my english is not that great)

  • Only trim video without encoding laravel ffmpeg

    1er mai 2021, par gyd128

    I would like to ask if the possibility of using ffmpeg laravel in such a way that when cutting a movie it does not convert it to mp4 a second time ? I'm sending the code as it looks at the moment. There is an option on github to use CopyFormat, use ProtoneMedia \ LaravelFFMpeg \ FFMpeg \ CopyFormat; unfortunately it doesn't work on my example. Maybe someone will be that good and guide me to the answer. Sorry for my English

    


      $ffmpeg = \FFMpeg\FFMpeg::create();
        $video = $ffmpeg->open('../../filmy/'.$path);
        $video->filters()->clip(\FFMpeg\Coordinate\TimeCode::fromSeconds($start), \FFMpeg\Coordinate\TimeCode::fromSeconds($end));
        $video->save(new \FFMpeg\Format\Video\X264('libmp3lame'), '../../filmy/conversion/s.mp4');


    


  • FLV Streaming on iPhone with ffmpeg

    11 février 2014, par Sylter

    Good Morning,
    I am an iOS/Mac Developer.

    I am developing an application that grab flv link from a website : now I want to play this flv file in streaming.

    I find in AppStore BUZZPlayer, an application that can play flv video streaming : http://itunes.apple.com/it/app/buzz-player/id389744738?mt=8

    Searching on Google I find out that exists ffmpeg for iPhone, so, my question is how can I stream a FLV Video with ffmpeg on iPhone ?

    A sample code is very appreciated !

    Thank You.

    P.S. Sorry for my poor English...