Recherche avancée

Médias (91)

Autres articles (28)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (3547)

  • Problem with ffmpeg (saving mp4) AttributeError : 'NoneType' object has no attribute 'dpi' [closed]

    29 avril 2023, par Completenoobie

    Hello when I try to save the following mp4 i get an error message. Code worked on another pc.

    


    AttributeError : 'NoneType' object has no attribute 'dpi'

    


  • FFMPEG Problem : converting gif to mpeg with 29.97 frame rate

    12 mars 2024, par Brad Dennis

    I construct a large gif to have 29.97 frames per second (dvd and blue-ray standard), but it's not possible to set the gif to be a rate that's not an integer number of ms. Is there a way to to tell ffmpeg to correct the frame rate without changing the number of frames ?

    


    The closest frame rate is 33 ms so that's what the gif is set to. This line creates a decent quality video, but it runs way overtime.

    


    ffmpeg -f gif -r 29.97 -i a :\video.gif a :\video.mp4

    


  • problem with executing flutterFFmpeg command

    28 février 2021, par Sadiq Samaila

    the code below is for creating a robot voice with flutterFFmpeg

    


    so here is the code I ran

    


                          String commandToExecute =
                      "-i $aud -filter_complex 'afftfilt=real='hypot(re,im)*sin(0)':imag='hypot(re,im)*cos(0)':win_size=512:overlap=0.75' " +
                          outputPath;
   
                  _flutterFFmpeg.execute(commandToExecute).then((rc) => print(
                      "FFmpeg process exited with rc $rc $appDocumentDir"));


    


    and I got this error

    


    E/mobile-ffmpeg( 5493): [AVFilterGraph @ 0x7ce619159800] No such filter: 'im)*sin(0):imag'
E/mobile-ffmpeg( 5493): Error initializing complex filters.
E/mobile-ffmpeg( 5493): Invalid argument
D/flutter-ffmpeg( 5493): FFmpeg exited with rc: 1


    


    I tried changing all single quote(') to double quote(") in the command but it did not work.