Recherche avancée

Médias (0)

Mot : - Tags -/flash

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (80)

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

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

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

  • subprocess.check_output fails with CalledProcessError but error is empty string. Command works in terminal

    11 août 2022, par Leonardo the Vinchi

    I want to run the command ffprobe -i test.m4a -show_entries format=duration -v quiet -of csv="p=0". It works in the terminal and returns output code 0, but running it with subprocess, i.e.

    


    subprocess.check_output(['ffprobe', '-i', 'test.m4a', '-show_entries', 'format=duration', '-v', 'quiet', '-of', 'csv="p=0"'])


    


    raises a CalledProcessError - {Command} returned non-zero exit status 1.. I tried running this command in a try-except loop and printing the error details, but it just outputs as an empty byte string b''.

    


  • aspect ratio is changed using ffmpeg sameq and codec copy

    21 mars 2012, par Vishal Parekh

    i am using ffmpeg to extract clip from mp4 video,

    i tried with "-acodec copy -vcodec copy" and "-sameq"

    in both, aspect ration of generated file is changed.

    (
    ffmpeg -sameq -i "input file" "output file"

    ffmpeg -i "input file" -acodec copy -vcodec copy "outputfile"

    )

    source file is of aspect ratio
    sar=4:3
    dar=4:3

    new file is has aspect ratio
    sar=4:3
    dar=1:1

    please help me to solve this problem,

    one weird thing is when i see details in another video tool, it shows me
    sar=4:3
    dar=4:3
    of source video

    but when i use command ffmpeg -i sourcefile, it shows me
    sar=300:400
    dar=1:1

    thanks

  • Option -s is deprecated, use -video_size. Option video_size not found

    5 janvier 2021, par Education 4Fun

    I'm trying to play a video like a preview before rendering :

    



    ffplay test.mp4 -af "volume=8.0,atempo=4.0" -vf "transpose=2,transpose=2,setpts=1/4*PTS" -s 640x480 -aspect 4:2


    


    Without -s its working fine, but when I add -s its outputs error :

    


    Option -s is deprecated, use -video_size.
Option video_size not found.


    


    Let me know the syntax. And some times after converting I don't find the change in the details
enter image description here

    


    ffmpeg -i 21.mp4 -vf "scale=1280*720" 21_edit.mkv