Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (76)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (7030)

  • Recorded & uploaded video from iphone device won't play in iphone

    11 juin 2019, par Sohil Chamadia

    I am facing an issue regarding :

    Recording video from iphone and uploading that video on my application(Develop in Wordpress Framework) then the video uploaded won’t play in iphone devices.

    This issue occurs only when I "Record video from iphone and then uploading that video into the application".If I upload existing video from iphone device then video will be played and it’s working fine. So please help to resolve this issue.I have used "FFmpeg library" to reduce the size of video.

    Below is the code which i have used to play video :

    <video preload="auto" width="320" height="240" controls=""><source src="abc.mp4" type="video/mp4">Your browser does not support the video tag.</source></video>

    When i click on video to play it then video is not play and cross sign is shown over the play button.Below i have attached screenshot of it :
    enter image description here

  • Videos don't play in Android Webview after resizing with avconv

    23 juillet 2020, par Verode

    I upload original mp4 video file to the server and it plays in all browsers, including Android webview app.

    &#xA;

    <video class="video" controls="controls" autobuffer="autobuffer">&#xA;<source src="video.mp4" type="video/mp4">&#xA;Your browser does not support the video tag.&#xA;</source></video>&#xA;

    &#xA;

    I have read in Stackoverflow that in some cases adding "controls autobuffer" may help. But it does not help.

    &#xA;

    I tried to access video file by clicking on a link :

    &#xA;

    <a href="http://stackoverflow.com/feeds/tag/video.mp4">Video</a>&#xA;

    &#xA;

    but video does not play.

    &#xA;

    But I need to resize videos to make them smaller.

    &#xA;

    After risizing videos play in all browsers, except Android web view.&#xA;Whats wrong with this ?

    &#xA;

    $resized = exec("avconv -y -i $file -map 0 -c:v libx264 -crf 22 -filter:v scale=\"750:trunc(ow/a/2)*2\" -c:a copy $file2");&#xA;

    &#xA;

    This problem appeared after some Android or Webview update.

    &#xA;

  • Precompiled FFmpeg for android versus building FFmpeg using android NDK

    19 juin 2017, par App Developer

    I am building an android app which does some video processing.

    I am currently using precompiled FFmpeg from https://github.com/writingminds/ffmpeg-android. The other option is to download FFmpeg source code and compile it using Android NDK. The reason I am contemplating option 2 is to enhance performance. My questions are

    1. Is there a difference between the two options mentioned above ?

    2. If yes, what would be the difference. Would it be enhanced performance (or) the result would simply be the same (or) are there some other benefits or drawbacks ?

    3. When they state precompiled FFmpeg, does it mean it was compiled using Android NDK for a specific architecture ?

    Please let me know.

    Thank you in advance !!!