Recherche avancée

Médias (91)

Autres articles (111)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Participer à sa documentation

    10 avril 2011

    La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
    Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
    Pour ce faire, vous pouvez vous inscrire sur (...)

Sur d’autres sites (3820)

  • configure : Use pkg-config for fdk-aac

    10 mai 2015, par Luca Barbato
    configure : Use pkg-config for fdk-aac
    

    Makes the life of the people already setting PKG_CONFIG_PATH simpler.

    • [DH] configure
  • ffmpeg : get aspect ratio of input video

    1er janvier 2013, par user732274

    I wrote a shell script which accepts any video file (I mean any kind of dimensions, any sort of rotation, etc.) and it uses ffmpeg to pad that video to 720x576 (resizing it) in order to make it perfectly suitable for a video-dvd without requiring the user to calculate anything. Now : I know I can access the size of the input video by using "iw" and "ih" keywords (in the -vf syntax), but I don't know what's the keyword to access its aspect ratio (of course I don't need to read it in the ffmpeg output : I need to access it in the command line).

  • Request aid to translate from an old avconv code to ffmpeg

    27 septembre 2022, par Azankiew

    I am working on an old script which uses avconv to manipulate some videos. I wanted to ask help to convert the following code into ffmpeg as I aknowledged avconv is not supported anymore.

    


    The code is :

    


    subprocess.call('avconv -i %s -an -filter_complex "select=between(n\,%s\,%s),setpts=PTS-STARTPTS, crop=%s:%s:%s:%s, scale=-2:224" %s'%(
            input_video_folder+clip.video_name,
            clip.start_frame,
            clip.end_frame,
            crop_width,
            crop_height,
            crop_left_distance,
            crop_top_distance,
            video),
                        shell=True)