Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (42)

  • 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

  • MediaSPIP Init et Diogène : types de publications de MediaSPIP

    11 novembre 2010, par

    À l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
    Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
    Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (6664)

  • Anomalie #3647 : #INTRODUCTION

    11 janvier 2016, par Franck Dalot

    Hello :-)
    Ivan Lewkowitz faudrait plus d’info pour essayer de reproduire :-(

    Il s’agit d’un spip 3.1 natif ?
    D’un spip 3.0 ou autre, dont tu as fait le passage en 3.1 ?

    Si ce n’était pas un spip 3.1 natif, tu as fait la mise à jour comment ?
    Tu as utiliser spip_loader ou FTP ?
    Tu avais suivi cette méthode ou pas ? http://www.spip.net/fr_article5693.html
    Tu te sers de quoi comme base de données (MySQL, ou autre chose) ?

    Franck

  • PowerShell progress bar won't display

    28 mai 2021, par Brett

    I'm trying to write my first PowerShell GUI. Basically I'm trying to run a ffmpeg command which is fine and works, but I cannot get the progress bar to run. (I'm brand new to this.) Here is my attempt.

    



    cd C:\Users\brett\Documents\convert
$cmd = 'ffmpeg.exe'
$arg0 = '-i'
$arg1 = 'MASH_01.ts'
$arg2 = '-c:v'
$arg3 = '-c:a'
$arg4 = 'MASH_01.mp4'
$cf = 'copy'
$isFile = 'MASH_01.mp4'
if (-not(Test-Path -Path $isFile) -eq $false) {
  echo "Shit Go"
  del $isFile

      & $cmd $arg0 $arg1 $arg2 $cf $arg3 $cf $arg4
    for ($i = 1; $i -le 100; $i++) {
    Start-Sleep -m 100
    Write-Progress -Activity 'Progress Of The Coversion' -Status "$i Percent Complete" -PercentComplete $i;
    }
} else {
& $cmd $arg0 $arg1 $arg2 $cf $arg3 $cf $arg4
    for ($i = 1; $i -le 100; $i++) {
    Start-Sleep -m 100
    Write-Progress -Activity 'Progress Of The Coversion' -Status "$i Percent Complete" -PercentComplete $i;
    }
}


    



    Update : There is no error output I can see, but the progress bar runs after the file has been processed, not during.

    



    here is my latest attempt.. but now i get ffmpeg saying "m" is not a valid switch

    



    cd C:\Users\brett\Documents\convert
$oldVideo = Get-ChildItem -Include @("*.ts")
Write-Host -ForegroundColor Green -Object $ArgumentList;
# Pause the script until user hits enter
$isFile = 'MASH_01.mp4'
if( -not(Test-Path -Path $isFile) -eq $false) {
  echo "Shit Go"
  del $isFile
  }a
  $tool = ffmpeg.exe
$ArgumentList = '`-i'+' '+'MASH_01.ts'+' '+'-c:v'+' '+'copy'+' '+'-c:a'+' '+'copy'+' '+'MASH_01.mp4';
Invoke-Expression $tool $ArgumentList
for($i = 1; $i -le 100; $i++){
    ffmpeg $ArgumentList -m 100

    Write-Progress -Activity 'Progress Of The Coversion' -Status "$i Percent Complete" -PercentComplete $i 
   `-SecondsRemaining $a -CurrentOperation
   "$i% complete" `

    }


    


  • PowerShell progress bar won't display

    23 juillet 2014, par Brett

    I’m trying to write my first PowerShell GUI. Basically I’m trying to run a ffmpeg command which is fine and works, but I cannot get the progress bar to run. (I’m brand new to this.) Here is my attempt.

    cd C:\Users\brett\Documents\convert
    $cmd = 'ffmpeg.exe'
    $arg0 = '-i'
    $arg1 = 'MASH_01.ts'
    $arg2 = '-c:v'
    $arg3 = '-c:a'
    $arg4 = 'MASH_01.mp4'
    $cf = 'copy'
    $isFile = 'MASH_01.mp4'
    if (-not(Test-Path -Path $isFile) -eq $false) {
     echo "Shit Go"
     del $isFile

         & $cmd $arg0 $arg1 $arg2 $cf $arg3 $cf $arg4
       for ($i = 1; $i -le 100; $i++) {
       Start-Sleep -m 100
       Write-Progress -Activity 'Progress Of The Coversion' -Status "$i Percent Complete" -PercentComplete $i;
       }
    } else {
    & $cmd $arg0 $arg1 $arg2 $cf $arg3 $cf $arg4
       for ($i = 1; $i -le 100; $i++) {
       Start-Sleep -m 100
       Write-Progress -Activity 'Progress Of The Coversion' -Status "$i Percent Complete" -PercentComplete $i;
       }
    }

    Update : There is no error output I can see, but the progress bar runs after the file has been processed, not during.

    here is my latest attempt.. but now i get ffmpeg saying "m" is not a valid switch

    cd C:\Users\brett\Documents\convert
    $oldVideo = Get-ChildItem -Include @("*.ts")
    Write-Host -ForegroundColor Green -Object $ArgumentList;
    # Pause the script until user hits enter
    $isFile = 'MASH_01.mp4'
    if( -not(Test-Path -Path $isFile) -eq $false) {
     echo "Shit Go"
     del $isFile
     }a
     $tool = ffmpeg.exe
    $ArgumentList = '`-i'+' '+'MASH_01.ts'+' '+'-c:v'+' '+'copy'+' '+'-c:a'+' '+'copy'+' '+'MASH_01.mp4';
    Invoke-Expression $tool $ArgumentList
    for($i = 1; $i -le 100; $i++){
       ffmpeg $ArgumentList -m 100

       Write-Progress -Activity 'Progress Of The Coversion' -Status "$i Percent Complete" -PercentComplete $i
      `-SecondsRemaining $a -CurrentOperation
      "$i% complete" `

       }