Recherche avancée

Médias (91)

Autres articles (43)

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

  • ffmpeg not using wildcard properly from batch script

    20 mars 2013, par Paul Green

    What I want to do is actually super simple and is working just fine if executed from within the cmd window, though it does not work when used within a batch script. The following command would normally get all .png files with the pattern anim_xxxx.png (%04d stands for 4 numbers in ffmpeg).

    ffmpeg -f image2 -i anim_%04d.png -vcodec mjpeg -q:v 0 -r 25 foo.avi

    Now the error I get is with the wildcard for my image sequence and I have no clue what the problem is. Using another wildcard like * gives me the same error.

    [image2 @ 000000000033e8c0] Could find no file with with path
    'anim_render.bat4d.png' and index in the range 0-4
    anim_render.bat4d.png : No such file or directory

    does %04d resemble any variable in a batch file that does not exist outside of batch files ? I could not find any similar cases so far.

  • ffmpeg resize video then over lay on top of image using nvidia cuda

    16 mars 2021, par user72261

    i have a bunch of old family videos that are 4:3 SD format i am looking to change them to 16:9 and over lay the video on top of a 720p background

    


    i can do this fine using standard ffmpeg and everything works but it takes for ever with over 10 years of videos to convert

    


    i have a desktop pc i use for work with 2070 super installed so i was looking to use that to speed it up a little i tried adding cuda hardware support and i just hit errors

    


    ffmpeg -y -vsync 0 -hwaccel cuda -hwaccel_output_format cuda -loop 1 -i image.jpg -i video.mp4 -filter_complex "[1]hwupload_cuda,scale=1280:720:force_original_aspect_ratio=decrease[inner];[0][inner]overlay_cuda=x=10:y=10:shortest=1[out]" -map "[out]" -map 1:a -c:a aac -map 0:v -c:v  h264_nvenc -b:v 5M -y output.mp4


    


    the errors i keep getting are

    


    decoder->cvdl->cuvidDecodePicture(decoder->decoder, &ctx->pic_params) failed -> CUDA_ERROR_INVALID_IMAGE: device kernel image is invalid


    


  • django upload and convert and save

    31 août 2015, par hessam zaheri

    I have a form in django that I upload an avi movie and I want to convert to mp4 and save in media root and save path in database record :

    class Content(models.Model):
       content_title_en = models.CharField(max_length=255)
       content_movie = models.FileField(verbose_name='movie')

       def save(self, *args, **kwargs):
           if self.content_movie:
               os.popen("ffmpeg -i C:/new/Wildlife.wmv video.mp4")
           super(Content, self).save(*args, **kwargs)

    and I convert file but I don’t know how save in file and my database record.