Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (112)

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

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (9817)

  • Sinch Video calling not working with ffmpeg video cropping

    29 mars 2016, par Mubina Shaikh

    My project having ffmpeg video cropping libs,I have added the sinch files under src/main/jniLibs,what happen is project runs successfully but when initiate the video call of sinch blank white color screen appears.Also try to add this code in .mk files of video cropping libs as there is no .mk file is there for sinch,but it still not working.

    The code added in .mk files to load the sinch lib module.

    include $(CLEAR_VARS)

    LOCAL_MODULE := libsinch-android-rtc

    LOCAL_STATIC_LIBRARIES := sinch-android-rtc-3.9.3

    LOCAL_LDLIBS := -llog

    include $(BUILD_SHARED_LIBRARY)
  • tfds.features.Video Usage for video decoding in tensorflow 2

    20 mai 2020, par Sandeep

    I am trying to decode a video in tensorflow 2 using tfds.features.Video , so that the output is a "tf.Tensor of type tf.uint8 and shape [num_frames, height, width, channels]" using following code :

    



    import numpy as np
import pandas as pd
import tensorflow as tf
import tensorflow_datasets as tfds
df_trains= pd.DataFrame()
df_trains['video_files']= ['aa.mp4']

files_ds = tf.data.Dataset.from_tensor_slices(df_trains.video_files)

video_class = tfds.features.Video(shape=(None, 1080, 1920,3), encoding_format='png', ffmpeg_extra_args=())

a= video_class.decode_example(files_ds)


    



    However it generates following error : 
"AssertionError: Feature Video can only be decoded when defined as top-level feature, through info.features.decode_example()"

    



    I am unable to solve it, please help in this regard.

    


  • ffmpeg creating video with 1 minute empty space at the end of the video

    13 octobre 2022, par David Ruan

    I am using this command to generate a video with a cover page and an audio.

    


    ffmpeg -loop 1 -r 1 -i c :/temp/coverImage.jpeg -i C :/temp/out/input.mp3 -vf "pad=ceil(iw/2)*2:ceil(ih/2)*2" -c:a copy -shortest -c:v libx264 C :/temp/VideoOut/output.mp4

    


    But the generated mp4 file has 1 minute's of empty space after the audio finished.

    


    Actually I have multiple audio files, and after the conversion, every video has that 1 minute empty space.

    


    Any idea how to solve this ? Thanks a lot.