Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (111)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • 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

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

Sur d’autres sites (11985)

  • FFMPEG Invalid Data

    10 mai 2021, par D0n

    I had a python script that runs ffmpeg processes against pre recorded files. My commands worked before but now I am getting an Invalid data error.

    


    Here is my command.

    


    ffmpeg -i black_video.mpeg -vf "blackdetect=d=2:pix_th=0.00" -an -f null -

    


    Here is my Error.

    


    black_video.mpeg: Invalid data found when processing input

    


    I am also running this convert command to the video files.

    


    convert black_video.mpeg -colorspace HSL -channel S -separate -format '%M avg sat=%[fx:int(mean*100)]\n' info:

    


    Nothing I found online was relevant to my issue. The commands were working before but now they aren't which is really odd to me.

    


  • Cross-compile ffmpeg for arm64 on x64 host machine (macOS) ?

    13 juin 2021, par waldenCalms

    I need to cross-compile ffmpeg for arm64 (M1 Macs, to be specific) from my x64 host Mac. I am able to build ffmpeg for my host architecture without issues (i.e. I have a working x64 build script and all the pre-requisites installed), but now need to modify my script to build for arm64.

    


    First of all, is this even possible / supported ? If so, how ?

    


    The official ffmpeg compilation guide doesn't mention anything helpful. I have looked at several code snippets online and tried using the following configure arguments, with no luck :

    


    --enable-cross-compile \
--arch=arm64 \


    


    I get the following error :

    


    libavutil/aarch64/bswap.h:38:13: error: invalid instruction mnemonic 'rev'


    


  • Using ffmpeg ffprobe with Visual C++

    11 juillet 2015, par astracat111

    I have the following command line that gives me the duration of a video file :

    ffprobe.exe -i Video.mp4 show_entries format=duration -v quiet -of csv="p=0"

    When I run this, I get back the duration of my video successfully, running it from a command prompt. Now, I’m kind of a beginner with C++, so I’m not sure how I could get that duration to be put into a float inside of my program. I’ve looked through a lot of articles and question and answer forums online and I’ve found possible answers with...using stdout/stdin to grab the information...? I’m not sure.

    My strategy right now is to use CreateProcess() to run the process, then WaitForSingleObject(), then somehow use some command to grab the output data from the ffprobe process. Perhaps the data I’m looking for can be retrieved through the CreateProcess() function ? I feel like I’m very close, but I’m in serious need of help with this...

    As a side note, since I’m using Visual C++ Express 2010, I do not have access to MFC.

    If anyone could lead me in the right direction to this information it would be greatly appreciated.